@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500&display=swap');
*
{
  margin: 0;
  padding: 0;
}
body
{
  margin: 0;
  padding: 0;
  --theme: #E61945;
  --base: #F36E21;
  --transition: .3s ease-in-out 0s;
  /*background: #F9F9F9 !important;*/
  overflow-x: hidden;
}
.sans 
{
  font-family: 'Dancing Script', cursive;
}
.text
{
  /*font-family: 'Epilogue';*/
  font-family: 'Raleway', sans-serif;
}
.heading 
{
  font-family: 'OtamaW00';
}
@font-face {
    font-family: 'Epilogue';
    src: url('fonts/Epilogue-ExtraBold.woff2') format('woff2'),
        url('fonts/Epilogue-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Epilogue';
    src: url('fonts/Epilogue-Bold.woff2') format('woff2'),
        url('fonts/Epilogue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Epilogue';
    src: url('fonts/Epilogue-Light.woff2') format('woff2'),
        url('fonts/Epilogue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Epilogue';
    src: url('fonts/Epilogue-Medium.woff2') format('woff2'),
        url('fonts/Epilogue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Epilogue';
    src: url('fonts/Epilogue-Regular.woff2') format('woff2'),
        url('fonts/Epilogue-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Epilogue';
    src: url('fonts/Epilogue-SemiBold.woff2') format('woff2'),
        url('fonts/Epilogue-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OtamaTextW00';
    src: url('fonts/OtamaTextW00-Black.woff2') format('woff2'),
        url('fonts/OtamaTextW00-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OtamaDisplayW00';
    src: url('fonts/OtamaDisplayW00-Light.woff2') format('woff2'),
        url('fonts/OtamaDisplayW00-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Otama.ep';
    src: url('fonts/Otama-ep.woff2') format('woff2'),
        url('fonts/Otama-ep.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OtamaW00';
    src: url('fonts/OtamaW00-Bold.woff2') format('woff2'),
        url('fonts/OtamaW00-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OtamaW00';
    src: url('fonts/OtamaW00-Italic.woff2') format('woff2'),
        url('fonts/OtamaW00-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}





.btn {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 1px solid #e1e1e1;
  font: 12px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.1s linear 0.05s;
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  z-index: 1;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.btn::after {
  transition: border 0.1s linear 0.05s;
}
.btn .btn-inner {
  position: relative;
  z-index: 2;
}
.btn:hover {
  color: #373737;
  transition: color 0.1s linear 0s;
}
.btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.btn:hover::after {
  border-color: #373737;
  transition: border 0.1s linear 0s;
}

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  padding: 0 100px;
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: none;
  justify-content: center;
  align-items: center;
}
.slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font: 300 50px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
}
.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.slideshow .slide .btn::before {
  background: #fff;
}
.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 51px;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  display: none;
  text-align: center;
}

.slideshow .pagination .item {
  display: inline-block;
  /*padding: 15px 5px;*/
  position: relative;
  width: 8px;
  height: 8px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
  background: var(--base);
  margin-right: 22px;
  display: inline-block;
  border-radius: 50%;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top:  50%;
  left: 50%;
  width: 23px;
  height: 23px;
  /*background: rgba(255, 255, 255, 0.5);*/
  /*border:  1px solid var(--base);*/
  border:  none;
  transition: background 0.2s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  /*background-color: #fff;*/
  border:  1px solid var(--base);
}
.slideshow .arrows .arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
  background: rgb(255 255 255 / 22%);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  line-height: 48px;
  text-align: center;
  transition: .5s;
}
.slideshow .arrows .prev {
  left: 30px;
}
.slideshow .arrows .prev:hover {
  left: 15px;
  background: linear-gradient(90.69deg, #F36E21 19.29%, #E61945 65.17%);
}
.slideshow .arrows .next {
  right: 30px;
  transition: .5s;
}
.slideshow .arrows .next:hover  {
  right: 15px;
  background: linear-gradient(90.69deg, #F36E21 19.29%, #E61945 65.17%);
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}







/*.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(166, 166, 166, 0.0821739) 31.25%, rgba(196, 196, 196, 0) 47.92%, rgba(142, 142, 142, 0) 56.77%, rgba(168, 168, 168, 0) 81.25%);
  height: 500px;
  z-index: 99;
}*/

.slide
{
  cursor: pointer;
}
.slide::before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(166, 166, 166, 0.0821739) 31.25%, rgba(196, 196, 196, 0) 47.92%, rgba(142, 142, 142, 0) 56.77%, rgba(168, 168, 168, 0) 81.25%);
  height: 500px;
  z-index: 99;
}
{
  width: 50px;
    height: 50px;
    padding: 13px;
    background: rgb(255 255 255 / 21%);
}
/*.navigation
{
  position: relative;
}*/
.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: .3s ease-in-out 0s;
  z-index: 110;
}
.main_menu_wrapper
{
  position: relative;
}
.main_menu_left
{
  float: left;
}
.main_menu_left
{
  position: relative;
  /*display: flex;*/
  /*align-items: center;*/
}
.main_menu_logo
{
  position: relative;
  float: left;
  padding-top: 32px;
  padding-bottom: 31.5px;
  margin-right: 30px;
}
.main_menu_nav
{
  float: left;
  display: block;
  position: relative;
}
@media screen and (min-width: 992px)
{
  .mobile_nav__toggler
  {
    display: none;
  }
  .container
  {
    max-width: 1300px !important;
  }
}
.menu_list
{
  display: flex;
}
ul 
{
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
a 
{
  text-decoration: none !important;
}
.menu_list>li 
{
  padding-top: 34px;
  padding-bottom: 34px;
  position: relative;
}
.menu_list>li+li
{
  margin-left: 25px;
}
.menu_list li a 
{
  color: #fff;
  font-weight: 500;
  display: block;
  align-items: center;
  position: relative;
  transition: all .5s ease;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.menu_list li a i 
{
  padding-left: 7px;
  font-size: 15px;
}
.menu_list li ul.submenu
{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  flex-direction: colum;
  justify-content: flex-start;
  align-items: flex-start;
  transition: .5s ease;
  z-index: 99;
  box-shadow: 0 0 65px 0 rgb(0 0 0 / 10%);
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.menu_list li:hover ul.submenu
{
  opacity: 1;
  visibility: visible;
}
.main_menu_right
{
  position: relative;
  display: flex;
  float: right;
  padding: 33px 0;
  align-items: center;
  justify-content: center;
}
.main_menu_right span.icon_menu 
{
  margin-left: 27px;
}
.menu_list li ul.submenu li  
{
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  transition: .5s ease;
}
.menu_list li ul.submenu li:hover 
{
  background: var(--base);
}
.menu_list li ul.submenu li:hover  a  
{
  color: #fff;
}
.menu_list li.active a 
{
  color: var(--base) !important; 
}
.active_sub
{
  background: #000 !important;
}
.active_sub a 
{
  color: #fff !important;
}
.submenu li.active a 
{
  color: var(--base) !important;
}
.menu_list li a:hover 
{
  color: var(--base) !important;
}
.menu_list li ul.submenu li a
{
  font-size: 16px;
  line-height: 30px;
  display: flex;
  padding: 10px 20px;
  transition: .5s;
  color: #000;
  display: block;
}
.menu_list li ul.submenu li:hover a 
{
  color: #fff !important;
}
.main_menu_logo::after 
{
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  bottom: 14px;
  background: #fff;
  border-radius: 0 0 30px 30px;
  z-index: -1;
}
.main_menu_logo
{
  width: 135px;
  text-align: center;
}
.icon_menu
{
  position: relative;
}
.icon_menu .badge 
{
  height: 15px;
  width: 15px;
  top: -3px;
  border-radius: 0px;
  background: var(--theme);
  font-size: 9px;
  font-weight: 700;
  border-radius: 100%;
  line-height: 7px;
  text-align: center;
  display: block;
  position: absolute;
  right: -5px;
}

.categories
{
  padding: 73px 0 76px;
}
.common_heading h1 
{
  font-size: 37px;
  line-height: 46px;
  padding: 0 26px 11px;
  background: #fff;
  display: inline-block;
}
h1,h2,h3,h4,h5,h6,p
{
  margin-bottom: 0 !important;
}
.common_heading h1
{
  /*position: relative;*/
  padding-bottom: 11px;
}
.common_heading h1::before
{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  left: 0;
  width: 231px;
  height: 2px;
  background: #EEEEEE;
  display: none;
}
.common_heading h1::after
{
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  left: 50%;
  width: 60%;
  height: 1px;
  background: #EEEEEE;
  z-index: -1;
}
.hd_txt
{
  width: 385px;
}
.common_heading p 
{
  font-size: 15px;
  line-height: 15px;
  color: #B1B1B1;
  font-style: italic;
}
.category_box
{
  border-radius: 15px;
  margin-bottom: 22px;
  transition: .5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.category_box:hover img 
{
  transform: scale(1.1);
}
.category_box img
{
  transition: .5s ease-in-out 0s;
}
.category_box::before 
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.27);
  z-index: 9;
  content: '';
}
.category_text
{
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
.category_text p 
{
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  font-size: 25px;
  line-height: 27px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
  height: 100%;
}
.category_row
{
  margin-top: 60px;
}

.about
{
  padding: 70px 0;
  background-size: cover;
  background-attachment: fixed !important; 
  background: url('../images/abt_bg.jpg');
  position: relative;
}
.about::before 
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: .3;
  width: 100%;
  height: 100%;
  /*z-index: 1;*/
}
.about .about_details
{
  width: 900px;
  background: #fff;
  padding: 55px 43px 56px 200px;
  position: relative;
  float: right;
}
.about .about_details::before
 {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 100%;
  background: linear-gradient(180deg, #F36E21 0%, #E61945 100%);
 }
.about .about_details p.tagline
{
  font-weight: 300;
  font-size: 15px;
  line-height: 15px;
  text-transform: capitalize;
  color: var(--base);
  padding-bottom: 5px;
}
.about .about_details h1 
{
  font-size: 48px;
  line-height: 48px;
  text-transform: capitalize;
  color: #000000;
}
.about_heading
{
  padding-bottom: 24px;
}
.about_content p 
{
  font-size: 16px;
  line-height: 28px;
  color: #434343;
}
.readmore_link a 
{
  display: inline-block;
  padding: 14px 30px;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  background: linear-gradient(90.69deg, #F36E21 19.29%, #E61945 65.17%);
  transition: .5s ease-in-out 0s;
  position: relative;
  overflow: hidden;
  /*border: 2px solid var(--base);*/
}
.readmore_link a:hover 
{
  color: #000;
}
.readmore_link a::before
{
  position: absolute;
  content: "";
  z-index: 1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: #fff;
  transform: skewX(45deg) scaleX(0);
  transition: all .5s ease 0s;
}
.readmore_link a:hover 
{
  /*border: 2px solid var(--base);*/
}
.readmore_link a:hover::before
{
   transform: skewX(45deg) scale(1);
}
.text_span
{
  position: relative;
  z-index: 9;
}
.readmore_link 
{
  margin-top: 28px;
}
.readmore_link a i 
{
  padding-left: 10px;
}
.new_Arrival
{
  /*padding: 74px 0 48px;*/
  position: relative;
}
.new_Arrival::before 
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(138.21deg, #F36E21 12.26%, #E61945 76.4%);
  height: 100%;
  width: 601px;
  z-index: -1;
}
.arrival_details .readmore_link a
{ 
  background: #000000;
}
.arrival_left
{
  padding: 173px 53px 222px;
}
.about_heading p 
{
  filter: 15px;
  line-height: 15.5px;
}
.about_heading h1 
{
  font-size: 48px;
  line-height: 54px;
}
.arrival_left p,
.about_heading h1 
{
  color: #fff;
}
.arrival_details p 
{
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #EDEDED;
  text-align: justify;
}
.arrival_details .readmore_link
{
  margin-top: 34px;
}

#new_arrivals
{
  padding: 74px 0 48px;
}
.product_new_box
{
  border-radius: 0 !important;
  border:  none !important;
}
.product_new_box .card-header
{
  overflow: hidden;
  background: red;
}
.product_new_box:hover .card-header img
{
  transform: scale(1.05);
}
.product_new_box .card-header img
{
  transition: .5s;
}
.card-header
{
  border-bottom: 0 !important;
}
.product_new_box
{
  padding: 10px !important;
  cursor: pointer;
}
.prd_body
{
  padding: 30px 0 16px 12px !important;
}
.prd_title
{
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  padding-bottom: 9px;
}
.sub_title
{
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-transform: capitalize;
  padding-bottom: 8px;
  color: #BBBBBB
}
.slick-slide {
      margin: 0 10px;
}
.price
{
  font-weight: 600;
  font-weight: 14px;
  line-height: 18px;
}

.new_Arrival button 
{
  width: 39px;
  height: 39px;
  background: #fff !important;
  border-radius: 50%;
  line-height: 39px;
  border-radius: 50% !important;
  margin-right: 10px;
  transition: .5s;
}
.new_Arrival button:hover
{
  background: #ffffff1a !important;
  color: #fff !important;
}
.new_Arrival .owl-nav
{
  position: absolute;
  left: -46%;
  bottom: 25%;
}
.new_arr_txt
{
  font-size: 98px;
  line-height: 110px;
  font-family: 'OtamaW00';
  color: rgba(255, 255, 255, 0.14);
  left: -255px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  position: absolute;
}
.heading_bold
{
  font-family: 'OtamaW00';
}
.feature_box
{
  display: flex;
  align-items: center;
}
.feat_icon 
{
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background: linear-gradient(180deg, #E61945 0%, #F36E21 100%);
  border-radius: 100px;
  position: relative;
  /*overflow: hidden;*/
}
.feat_icon svg 
{
  position: relative;
  z-index: 9;
}
.feat_icon::after
{
  content: '';  
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #000;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  transition: .5s;
}

.feat_icon::before 
{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75px;
  height: 75px;
  background: rgba(230, 25, 69, 0.11);
  border-radius: 100px;
  transform: translate(-50%, -50%);
}
.feat_icon:hover::before 
{
  animation: pulse1 1s infinite;
}
@-webkit-keyframes pulse1 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(230, 25, 69, 0.11);
    box-shadow: 0 0 0 0 rgba(230, 25, 69, 0.11); 
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(230, 25, 69, 0.11);
    box-shadow: 0 0 0 15px rgba(230, 25, 69, 0.11); 
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(230, 25, 69, 0.11);
    box-shadow: 0 0 0 0 rgba(230, 25, 69, 0.11); 
  } 
}

@keyframes pulse1 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(230, 25, 69, 0.11);
    box-shadow: 0 0 0 0 rgba(230, 25, 69, 0.11); 
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(230, 25, 69, 0.11);
    box-shadow: 0 0 0 15px rgba(230, 25, 69, 0.11); 
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(230, 25, 69, 0.11);
    box-shadow: 0 0 0 0 rgba(230, 25, 69, 0.11); 
  } 
}
.feat_icon:hover::after
{
  transform: translate(-50%, -50%) scale(1);
}
.feat_details
{
  padding-left: 18px;
}
.feat_details h3 
{
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  text-transform: capitalize;
  color: #231F20;
  padding-bottom: 6px;
}
.feat_details p 
{
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  color: #B1B1B1;
}
.features
{
  padding: 78px 0 68px;
}

.brial_image_sec
{
  padding: 175px 0 204px;
  background: url('../images/vas1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 730px;
}
.image2
{
  background: url('../images/image2.png');
  background-size: cover;
}
.image2::before
{
  left: 0;
  background: linear-gradient(90deg, #000000 -4.71%, rgba(0, 0, 0, 0) 68.47%)!important;
} 
.brial_image_sec::before
{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #000000 -4.71%, rgba(0, 0, 0, 0) 68.47%);
  content: '';
} 
.brial_image_fst::before  
{
  display: none;
}
.image_content
{
  position: relative;
  z-index: 9;
  padding-left: 49px;
  padding-right: 78px;
}
.image_content p.tagline
{
  letter-spacing: 0.13em;
  text-transform: capitalize;
  color: #E3E3E3;
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
}
.image_content h1
{
  font-size: 71px;
  color: #E3E3E3;
  line-height: 79px;
  text-transform: capitalize;
  font-family: 'OtamaW00';
}
.image_content h1 .light_txt
{
  font-family: 'OtamaDisplayW00';
  display: block;
}
.image_content .desc_detial
{
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  color: #EDEDED;
  padding-top: 26px;
  font-family: 'Raleway', sans-serif;
}
.image_content .readmore_link a
{
  padding: 20px 40px;
}
.cat_product
{
  padding: 74px 0;
}
.category_item_box
{
  position: relative;
  transition: .5s;
  overflow: hidden;
  cursor: pointer;
}
.category_item_box img
{
  transition: .5s;
}
.category_item_box:hover img
{
  transform: scale(1.1);
}
.category_item_box:hover .cate_overlay
{
  /*display: block;*/
  /*transform: scale(1.1);*/
}
.cate_overlay
{
  /*display: none;*/
   transition: .5s ease-in-out 0s;
   transform: scale(1);
}
.category_item_box::before
{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65.59%, #000000 107.73%);
  z-index: 1;
  width: 100%;
  height: 100%;
}
.category_item_box .cate_details
{
  position: absolute;
  bottom: 53px;
  text-align: center;
  width: 100%;
  z-index: 9;
}
.category_item_box .cate_details h3 
{
  font-size: 36px;
  line-height: 43px;
  color: #fff;
  text-transform: capitalize;
  padding-bottom: 9px;
}
.category_item:hover 
{
  color: var(--base);
}
.category_item_box .cate_details a  
{
  font-weight: 300;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #EEEEEE;
  transition: .5s;
}
.category_item_box .cate_details a:hover 
{
  letter-spacing: 0.46em;
}
.cate_overlay
{
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 8;
  border: 2px solid #FFFFFF;;
}

.recommnded_product
{
  position: relative;
  padding: 77px 0 79px;
  background: #F4F4F4;
}
.color_txt
{
  color: var(--theme);
}
.recommnded_product .heading_sec h1 
{
  font-size: 37px;
  line-height: 28px;
  padding-bottom: 18px;
}
.recommnded_product .heading_sec p  
{
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: #B1B1B1;
  text-transform: capitalize;
}
.product_link
{
  font-size: 14px;
  line-height: 14px;
  color: #000;
  margin-top: 24px;
  display: inline-block;
  transition: .5s;
}
.product_link:hover
{
  font-weight: 600;
  color: var(--base);
}
.product_link i 
{
  font-size: 12px;
  padding-left: 4px;
}
.product_box
{
  border-radius: 0 !important;
  border:  none !important;
  background: transparent !important;
  transition: .5s;
  cursor: pointer;
}
.product_box:hover 
{
  background: #fff !important;
  box-shadow: 0px 4px 4px rgba(227, 227, 227, 0.25);
}
.cart_button a 
{
  border-radius: 8px;
  /*padding: 10px; */
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 37px;
  margin-right: 3px;
  display: inline-block;
  height: 40px;
}
.cart_btn
{
  background: var(--theme);
  padding: 0 17px;
  text-transform: uppercase;
  border: 2px solid var(--theme);
}
/*.txt_btn
{
  display: flex;
  align-items: center;
}*/
.product_box .card-body
{
  padding: 15px 16px 20px 16px;
  border:  none !important;
}
.product_box .card-header 
{
  overflow: hidden;
}
.product_box .card-header img
{
  transition: .5s;
}

.product_box:hover .card-header img
{
  transform: scale(1.1);
}
.wishlist_btn
{
  background: var(--base);
  padding: 0 8px;
  border: 2px solid var(--base);
}
.cart_button a
{
  transition: .3s;
}
.viw_btn:hover 
{
  background: #000;
  border: 2px solid #000;
  box-shadow: 0px 5px 9px 0px rgb(202 202 202);
}
.cart_btn:hover 
{
  background: var(--base);
  color: #fff;
  border: 2px solid var(--base);
  box-shadow: 0px 5px 9px 0px rgb(250 181 147);
}
.wishlist_btn:hover 
{
  background: var(--theme);
  color: #fff;
  border: 2px solid var(--theme);
  box-shadow: 0px 5px 9px 0px rgb(250 181 147);
}
/*.hdn_txt
{
  transition: .5s ease-in-out 0s;
 width: 100px;
}
.cart_btn:hover .hdn_txt
{
  display: block;
}*/
.viw_btn
{
  padding: 0 8px;
  border: 2px solid #DEDBDB;
  color:  #DEDBDB;;
}
.cart_button
{
  margin-top: 14px;
  display: flex;
}
.product_title
{
  font-size: 16px;
  line-height: 21px;
  padding-bottom: 18px;
  font-weight: 500;
}
.price
{
  font-weight: 600;
  font-size: 19px;
  line-height: 25px;
}
.price i 
{
  font-size: 14px;
}
.offer
{
  color: #B7B7B7;
}
.heading_sec
{
  border-bottom: 2px solid #EEEEEE;
  padding-bottom: 18px;
  margin-left: 30px;
  margin-right: 30px;
}
.product_row
{
  padding-top: 56px;
  position: relative;
}
.product_box .card-header
{
  position: relative;
  border-radius: 0 !important;
}
.product_box .card-header .color_plate span
{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
.product_box .card-header .color_plate span.lst_child
{
  margin-right: 0 !important;
}
.color_plate
{
  position: absolute;
  bottom: 18px;
  right: 13px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  padding: 4px;
}
.shape
{
  position: absolute;
  top: 25%;
  left: 0;
}
.insta_post
{
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.insta_post:hover img
{
  transform: scale(1.1);
}
.insta_post img
{
  transition: .5s;
}
.insta_icon a:hover
{
  color: var(--base);
}
.insta_icon
{
  position: absolute;
  bottom: 17px;
  right: 22px;
}
.insta_icon a
{
  color: #fff;
  transition: .5s;
}
.insta_icon a i 
{
  font-size: 22px;
}

.instagram_section
{
  padding-top: 75px;
}
.instagram_post_row
{
  padding-top: 50px;
}
.instagram_section .common_heading h1::before,
.instagram_section .common_heading h1::after
{
  display: none;
}
.subscribe_section
{
  position: relative;
  padding: 42px;
  background: linear-gradient(89.97deg, #F36E21 10.92%, #E61945 60.9%);
}
.subscribe_bg
{
  position: absolute;
  top: 0;
  right: 0;
}
.join_matter
{
  color: #fff;
}
.join_matter .light_txt
{
  display: block;
  font-family: 'OtamaDisplayW00';
}
.join_matter h1 
{
  font-size: 50px;
  line-height: 54px;
  padding-bottom: 18px;
}
.join_matter p 
{
  font-size: 14px;
  line-height: 23px;
  text-transform: capitalize;
  color: #fff;
  font-style: italic;
  max-width: 415px;
}
.sub_inp
{
  height: 66px;
  background: #fff;
  border-radius: 0 !important;
  padding-left: 30px !important; 
}
.input_frm ::placeholder
{
  color: #BDBDBD;
  font-style: italic;
  font-size: 19px;
}
.btn_sub
{
  padding: 24px 40px;
  background: var(--base);
  color: #fff;
  border:  none;
  font-weight: 600;
  font-size: 19px;
  line-height: 19px;
  position: absolute;
  top: 0;
  transition: .5s ease-in-out 0s;
  right: 0;
}
.input_frm 
{
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 9px rgba(219, 0, 10, 0.35);
}
.d_center
{
  display: flex;
  align-items: center;
  width: 100%;
}
.subscribe_frm
{
  width: 100%;
}
.form-control:focus
{
  border-color: transparent !important;
  outline: 0;
  box-shadow: 0 0 0 0 !important;
}
.input_frm
{
  padding-left: 56px;
}
footer 
{
  padding: 53px 0 23px;
  background: #F4F4F4;
}
.top_row
{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_row .top_footer_link ul li
{
  display: inline-block;
}
.top_row .top_footer_link ul li a 
{
  color: #000;
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0 21px;
  border-right: 1px solid #C4C4C4;
}
.top_row .top_footer_link ul li a.last_child
{
  border-right: 0 !important;
}
.top_row
{
  margin-bottom: 44px;
  border-bottom: 2px solid #E3E3E3;
  padding-bottom: 20px;
}
.footer_column p 
{
  font-size: 15px;
  line-height: 29px;
  font-weight: 400;
  text-align: justify;
  padding-right: 56px;
}
.footer_media
{
  margin-top: 38px; 
}
.footer_media ul li 
{
  display: inline-block;
}
.footer_media ul li a
{
  display: block;
  height: 46px;
  width: 46px;
  border: 2px solid var(--theme);
  line-height: 46px;
  border-radius: 50%;
  text-align: center;
  transition: .5s ease-in-out 0s;
  margin-right: 11px;
  color: var(--theme);
  font-size: 18px;
}
.footer_media ul li a:hover
{
  background: var(--theme);
  color: #fff;
}
.payment
{
  margin-top: 29px;
}
.middle_row
{
  padding-bottom: 55px;
  border-bottom: 2px solid #E3E3E3;
}
.footer_col_heading h3 
{
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
}
.footer_menu
{
  display: inline-block;
  width: 48%;
}
.footer_col_heading
{
  padding-bottom: 31px;
}
.footer_menu li
{
  padding-bottom: 18px;
}
.footer_menu li a 
{
  text-decoration: none;
  color: #000;
  padding-left: 17px;
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  transition: .5s;
}
.footer_menu li a:hover
{
  font-weight: 600;
  color: var(--base);
}
.footer_menu li a::before
{
  position: absolute;
  top: 50%;
  left: 0;
  content: '';
  width: 8px;
  height: 8px;
  background: var(--base);
  border-radius: 50%;
  transform: translateY(-50%);
}
.dis_flex
{
  display: flex;
  padding-bottom: 13px;
}
.add_details
{
  padding-right: 80px;
}
.add_details
{
  padding-left: 5px;
  font-size: 16px;
  line-height: 25px;
}
.land_line
{
  padding-right: 26px;
}
.branch_1
{
  padding-bottom: 18px;
  border-bottom: 2px solid #E3E3E3;
}
.branch_2
{
  padding-top: 21px;
}
.bottom_row
{
  padding-top: 24px;
}
.copy 
{
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
}
.design
{
  text-align: right;
}
.design a 
{
  color: var(--theme);
  font-weight: 500;
}
.footer_container
{
  padding: 0 37px;
}


.backtotop {
    right: 15px;
    z-index: 99;
    bottom: 50px;
    display: none;
    position: fixed;
}
.show
{
  display: block;
}
.backtotop .scroll {
    z-index: 1;
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
}
.backtotop .scroll:hover:before {
    opacity: 0;
    transform: scale(0.3);
}
.backtotop .scroll:before, .backtotop .scroll:after {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: '';
    position: absolute;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    /*border: 2px solid #c8c8c8;*/
    background: linear-gradient(to bottom, #E61945, #F36E21);
    -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    -o-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0px 10px 60px 0px rgb(250 181 147);
}
.backtotop .scroll:hover i:nth-child(1) {
    top: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.backtotop .scroll i:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%);
}
.backtotop .scroll i {
    left: 50%;
    z-index: 1;
    font-size: 15px;
    position: absolute;
    color: #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    -o-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.backtotop .scroll:hover i:nth-child(2) {
    top: 50%;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.backtotop .scroll i:nth-child(2) {
    top: 110%;
    opacity: 0;
    visibility: hidden;
} 


.mouse_scroll span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
}
.mouse_scroll span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sdb10 2s infinite;
    animation: sdb10 2s infinite;
    box-sizing: border-box;
}
.mouse_scroll
{
  position: absolute;
    bottom: 75px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font: normal 400 20px/1 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.sticky
{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 5px 20px 0 rgb(23 44 82 / 10%);
}
.sticky .main_menu_logo::after
{
  display: none;

}
.sticky .main_menu_logo
{
  padding-top: 12px;
  padding-bottom: 12px;
}
.sticky .menu_list li a
{
  color: #000;
}
.sticky .icon_menu svg path
{
  fill: var(--theme);
}
.icon_menu
{
  cursor: pointer;
}


.inner_header
{
  padding: 120px 0;
  /*background: linear-gradient(90.69deg, #F36E21 19.29%, #E61945 65.17%);*/
  background: url('../images/banner_inner.jpg');
  background-size: cover;
  background-position: center center;
}
.inner_navigation .main_menu_logo {
    padding-top: 12px;
    padding-bottom: 12px;
}
.inner_navigation li a {
    color: #000;
}
.inner_header h1 
{
  color: #fff;
}
.inner_navigation .icon_menu svg path {
    fill: var(--theme);
}
.inner_navigation
{
  position: relative;
}
.breadcrumbs
{
  padding: 20px 0;
}
.fa-home
{
  font-size: 14px;
}
.breadcrumbs a 
{
  color: #000;
}
.breadcrumbs .active_brd 
{
  color: var(--base);
}
.breadcrumbs li  
{
  font-size: 14px;
}
.product_filters
{
  display: flex;
  flex-direction: column;
  gap:  35px;
  padding: 10px;
  background: #fff;
}
.filter_widget
{
  display: flex;
  flex-direction: column;
  gap:  15px;
}
.filter_widget_title
{
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}
.filter_widget_search
{
  position: relative;
}
.filter_widget_search input 
{
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border:  1px solid #eaebee;
  padding: 0 10px !important;
  outline: none !important;
  font-size: 15px;
}
.filter_widget_search ::placeholder
{
  font-size: 14px !important;
  font-style: normal !important;
}
.filter_widget_search button 
{
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border:  none !important;
}
.category_item
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
}
.category_items,
.category_brands
{
  display: flex;
  flex-direction: column;
  gap:  10px;
} 
input.check-box[type=checkbox]:checked
{
  border:  none;
  background: var(--base);
  color: #fff;
}
input.check-box[type=checkbox]:checked::before
{
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  line-height: 16px;
  font-weight: 900; 
  top: 2px;
  left: 2px;
  font-size: 14px;
}
input.check-box
{
  border:  1px solid #eaebee;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  top: 5px;
  font-size: 15px;
  margin-right: 8px;
  background: #fbfbfb;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.color_collction li
{
  display: inline-block;
  padding-right: 5px;
}
.color_collction li a  
{
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.color_collction li:first-child a  
{
  background: #ff2c69;
}
.color_collction li:nth-child(2) a  
{
  background: #ff729b;
}
.color_collction li:nth-child(3) a  
{
  background: #ffb5ca;
}
.color_collction li:nth-child(4) a  
{
  background: #f3e785;
}
.color_collction li:nth-child(5) a  
{
  background: #ff7e4e;
}
.color_collction li:nth-child(6) a  
{
  background: #000;
}

.filter-price {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
}

.price-title {
  position: relative;
  color: #646464;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 400;
}

.price-field {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 21px;
}

.price-field input[type=range] {
  position: absolute;
}

/* Reset style for input range */
.price-field input[type=range] {
  pointer-events: none;
  -webkit-appearance: none;
}

.price-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.price-field input[type=range]:active,
.price-field input[type=range]:focus {
  outline: 0;
}

/* 2 cái nút tròn và các trình duyệt hỗ trợ */
.price-field input[type=range]::-webkit-slider-thumb {
  /* WebKit/Blink */
  position: relative;
  -webkit-appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  margin-top: -5px;
  background-color: #95bc39;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

.price-field input[type=range]::-moz-range-thumb {
  /* Firefox */
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  margin-top: -5px;
  background-color: #95bc39;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

.price-field input[type=range]::-ms-thumb {
  /* IE */
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  margin-top: -5px;
  background-color: #95bc39;
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

/* thanh trượt kéo */
.price-field input[type=range]::-webkit-slider-runnable-track {
  /* WebKit/Blink */
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #95bc39;
  border-radius: 5px;
}

.price-field input[type=range]::-moz-range-track {
  /* Firefox */
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #95bc39;
  border-radius: 5px;
}

.price-field input[type=range]::-ms-track {
  /* IE */
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #95bc39;
  border-radius: 5px;
}

/* bảng lọc giá trị hiển thị */
.price-wrap {
  display: inline-flex;
  color: #646464;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 400;
  float: left;
  padding-top: 11px;
}

.two_sidebar button {
  float: right;
  font-size: 12px;
  color: white;
  background: #222222;
  border: none;
  padding: 11px 15px 11px 22px;
  font-weight: bold;
}
.two_sidebar button:focus {
  outline: none;
}

.price-wrap_line {
  margin: 0px 7px;
}

.price-wrap #one,
.price-wrap #two {
  width: 35px;
  text-align: right;
  margin: 0;
  padding: 0;
  background: 0;
  border: 0;
  outline: 0;
  color: #646464;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 400;
}

.price-wrap label {
  text-align: right;
}

/* Style for active state input */
.price-field input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #fff;
  transition-duration: 0.3s;
}

.price-field input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #fff;
  transition-duration: 0.3s;
}

/* filter price */
.sidebar_categorie_grid .two_sidebar h3 {
  font-size: 13px;
  color: #424242;
  margin: 0;
  font-weight: bold;
  padding-bottom: 21px;
}
.mb-110
{
  margin-bottom: 110px;
}
.sidebar_widget
{
  position: sticky;
  top: 90px;
}
.category_tag
{
  padding: 0 5px;
  flex-grow: 1;
  max-width: 110px;
  color: #000;
  font-size: 14px;
}
.category_tags
{
  display: inline-block;
}
.product_top
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:  10px;
  flex-wrap: wrap;
  font-size: 14px;
}
.sort_items
{
  display: flex;
  align-items: center;
  gap:  15px;
}
.nice-select
{
  min-width: 150px;
  max-width: 150px;
}
.showing_list p span 
{
  color: var(--theme);
}

.product_lisiting
{
  margin-top: 20px;
  margin-bottom: 45px;
}
.wrapper .product_box
{
  margin-bottom: 30px;
}
.special-price
{
      right: -5px;
    position: absolute;
    top: 2%;
    background-image: url(../images/price-off.png);
    background-repeat: no-repeat;
    color: #fff;
    display: block;
    font-size: 15px;
    font-weight: bold;
    height: 35px;
    line-height: 38px;
    text-align: center;
    width: 76px;
    z-index: 9;
}
.special-price span
{
  font-size: 14px;
}

.product_inner_left
{
    position: sticky;
    top: 90px;
}
.mb-100
{
  margin-bottom: 100px;
}
.product_imag_grid
{
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}
.product_imag_grid a .thumbnail_image_container img 
{
  width: 100%;
}
.product_imag_grid a
{
  flex: 0 0 50%;
  padding: 4px;
  -webkit-box-flex: 0;
}
.product_inner_right h1 
{
  font-size: 30px;
  font-weight: 600;
}
.submenu li a 
{
  color: #000 !important;
}
.tootltip_label
{
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -38px;
  bottom: auto;
  left: 50%;
  background: var(--base);
  color: #ffffff;
  border-radius: 3px;
  padding: 2px 6px;
  white-space: nowrap;
  font-size: 10px;
  line-height: 1.5;
  transform: translateX(-50%);
  text-transform: uppercase;
  text-align: center;
  z-index: 2;
  -ms-transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.tootltip_label::before
{
  content: "";
  border: 5px solid transparent;
  border-top: 5px solid var(--base);
  position: absolute;
  bottom: -9px;
  left: 50%;
  margin-left: -5px;
}
.size_switch_sec li:hover .tootltip_label
{
  top: -26px;
  visibility: visible;
  opacity: 1;
}
.size_switch_sec li  
{
  position: relative;
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}
.size_label
{
  color: #333;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  min-width: 50px;
  height: 50px;
  line-height: 47px;
  overflow: hidden;
  text-align: center;
  /*background-color: #f5f5f5;*/
  padding: 0 10px;
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  border-radius: 100%;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  -ms-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.size_label:hover
{
  background: var(--base);
  border: 1px solid var(--base) !important;
  box-shadow: 0 0 0 1px var(--base);
  color: #fff;
}
.guid
{
  color: var(--base);
  padding-left: 15px;
}
.prd_inner_titl
{
  padding: 0 0 20px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
}
.prdd_inner_item_details p.sm_det
{
  color: #6e6e6e;
  /*font-size: 35px;*/
}
.tax 
{
  display: block;
  font-size: 13px;
  color: #03a685;
  padding-top: 5px;
  line-height: 13px;
}
.prdd_inner_item_details .price
{
  padding: 25px 0;
}
.prdd_inner_item_details .mrp
{
  font-size: 25px;
}
.deet_title
{
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 16px;
}
.size
{
  padding: 10px 0;
}
.product_btn
{
  display: flex;
  flex-wrap: wrap;
  gap:  10px;
  padding: 25px 0;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  margin-top: 25px;
}
.product_btn .quantity button,
.align_middle .quantity button   
{
   padding: 4px 12px;
  background: transparent;
  outline: none;
  border:  none;
  color: #000;
}
.align_middle .quantity button 
{
  padding: 0px !important;
}
.feat_point
{
  padding-top: 10px;
  font-size: 14px;
}
.feat_point p
{
  padding-bottom: 3px;
  color: #6e6e6e;
  font-style: italic;

}
.product_btn .sub
{
  border-right:  1px solid #ccc !important;
}
.product_btn .add
{
  border-left:  1px solid #ccc !important;
}
.product_btn .quantity input,
.align_middle .quantity input
{
  border: none;
  outline: none;
  text-align: center;
}
.field
{
  border:  1px solid #ccc;
  padding: 7px;
}
.btn_prd
{
  padding: 0 35px;
  transition: .5s ease-in-out 0s;
}
.btn_prd svg 
{
 margin-left: 8px;
}
.buy_now:hover 
{
  /*border: 1px solid var(--base);
  background: var(--base);*/
  animation-name: btn-hover-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@-webkit-keyframes btn-hover-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes btn-hover-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.btn_add_cart:hover 
{
  border: 1px solid var(--theme);
  background: var(--theme);
  animation-name: btn-hover-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.buy_now
{
  border: 1px solid var(--theme);
  background: var(--theme);
  color: #fff;
  position: relative;
}
/*.buy_now::before
{
  position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    width: 51%;
    content: "";
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-color: #000;
}
.btn_prd span 
{
  position: relative;
  z-index: 1;
}
.buy_now::after
{
  position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    width: 51%;
    content: "";
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-color: #ff324d;
}
.buy_now:hover::after
{
  right: 0;
  left: auto;
}
.buy_now:hover::before
{
    width: 0;
}*/
.btn_add_cart
{
  border: 1px solid var(--base);
  background: var(--base);
  color: #fff;
  position: relative;
}
.btn_prd svg 
{
  fill: #fff;
}
.product_inner_right
{
  padding-left: 30px;
}

.share .pr_social
{
  padding: 0 25px;
}
.share .pr_social a 
{
  color: #000;
}
.share
{
  padding: 25px 0;
}
.product_tabs_container ul.nav
{
  justify-content: center;
}
.product_tabs_container ul.nav button 
{
  color:  #000;
}
.nav-pills .nav-link.active
{
  background: transparent !important;
  border-radius: 0 !important;
  color: var(--theme) !important;
  font-weight: 500;
  border-bottom: 1px solid var(--base);
}
.product_tabs_container .tab-pane p 
{
  font-size: 14px;
  line-height: 26px;
}
.product_tabs_container 
{
  margin-top: 50px;
}
.product_tabs_container .tab-pane
{
  margin-top: 30px;
}
.product_tabs_container .table td,
.product_tabs_container .table th
{
  border-bottom: 0;
}
.product_tabs_container tr 
{
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
}
.related_product
{
  padding-top: 30px;
  border-top: 1px solid #f1f1f1;
  margin-top: 50px;
}
.sticky
{
  position: fixed;
}

.cart
{
  position: relative;
}
.cart_dropdown
{
    width: 430px;
  height: auto;
  background: #fff;
  position: absolute;
  top: 100%;
  padding: 30px;
  right: 0;
  box-shadow: 0 5px 20px 0 rgb(23 44 82 / 10%);
  display: none;
}
.cart_drp_img
{
  width: 80px;
}
.cart_drp_img img
{
  width: 100%;
}
.cart_drp_content a 
{
  color: #000;
  transition: .3s;
}
.cart_drp_content a:hover 
{
  color: #000;
}
.cart_drp_content a h3 
{
  font-size: 14px;
  /*font-weight: 400;*/
  padding-bottom: 5px;
}
.cart_drp_item

{
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 15px;
}
.cart_drp_content
{
  padding-left: 15px;
}
.cart_drp_content .price
{
  font-size: 15px;
}
.rem
{
  position: absolute;
  top: 0;
  right: 0;
}
.mb-15
{
  margin-bottom: 15px;
}
.mt-15
{
  margin-top: 15px;
}
.rem i 
{
  color: #ccc;
  font-size: 14px;
}
.overflow
{
  overflow-y:  scroll;
  padding: 0 15px 0 0;
}
.sub_total
{
  padding: 25px 0;
  border-top: 1px solid #f1f1f1;
  font-size: 14px;
  font-weight: 600;
}
.sub_tot_price
{
  float: right;
  /*font-weight: 400;*/
}
.cart_drp_btn
{
  border: 2px solid #292929;
  padding: 16px 65px;
  width: 100%;
}
.cart_drp_btn:hover
{
  animation-name: btn-hover-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.checkout_btn
{
  background: #292929;
  color: #fff;
  margin-bottom: 15px;
}
.viewcart_btn
{
  background: transparent;
  border-color:#dddddd;
}

.product_box:hover .viw_img_btn{
  right: 10px;
}
.viw_img_btn
{
  position: absolute;
  top: 10px;
  right: -100px;
  z-index: 9;
  background: #fff;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  transition: .5s;
  border-radius: 50%;
}
.viw_img_btn i 
{
  color: var(--base);
  font-size: 14px;
}

.account svg 
{
  fill: #fff !important;
}
.sticky .account svg 
{
   fill: var(--theme) !important;
}
.modal-content
{
  border-radius: 0 !important;
}
.login_container h3 
{
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px !important;
}
.cmn_inp
{
  border-radius: 10px !important;
  height: 45px;
  margin-bottom: 10px;
}
.login_container
{
  /*padding: 60px 30px 80px;*/
  max-width: 1100px;
  margin: auto;
      display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.login_container ::placeholder
{
  font-size: 14px;
}
.login_form label 
{
  margin-bottom: 8px;
}
.btn-close
{
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 12px;
}
.form-row span 
{
  font-size: 14px;
}
.forgot
{
  float: right;
  color: #000;
}
.forgot a 
{
  color: #000;
}
.login_btn
{
  border: none;
  padding: 12px 65px;
  width: 100%;
  color: #fff;
  background: linear-gradient(90.69deg, #F36E21 19.29%, #E61945 65.17%);
  margin: 15px 0;
  border-radius: 10px;
  transition: .3s;
}
.signup_link
{
  text-align: center;
  font-size: 14px;
}
.signup_link a 
{
  color: #000;
}
.signup_link a:hover 
{
  color: var(--theme);
}

.search_bar
{
  position: fixed;
  width: 100%;
  background: #ffffff;
  top: 0;
  padding: 65px 50px;
  transition: .5s;
  z-index: 1000;
  visibility: hidden;
    opacity: 0;
    transform: scale(.5);
    min-height: 330px;
}
.close_search
{
  visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.max_1000
{
  margin: auto;
  max-width: 1000px;
}
.search_bar h3 
{
  font-weight: 600;
  text-align: center;
  font-size: 25px;
  padding: 15px 0 40px;
}
.fa-magnifying-glass
{
  position: absolute;
  top: 11px;
  right: 0;
}
.overlay_search
{
  background-color: rgba(0,0,0,.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.opened_overlay
{
  visibility: visible;
  opacity: 1;
}
.search_close
{
  text-align: center;
  margin: auto;
  padding: 10px 0;
  cursor: pointer;
}
.fa-xmark
{
  /*position: absolute;*/
  /*top: 11px;*/
  /*right: 0;*/
  font-size: 25px;
  font-weight: 400;
}
.search_inp
{
  position: relative;
}
.search_inp input
{
  background: transparent !important;
  border-radius: 0 !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  padding-left: 30px;
  height: 40px;
}
.text-left
{
  text-align: left;
}
.align_middle thead th 
{
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
}
.align_middle
{
  border: 1px solid #e7e7e7;
  border-collapse: inherit;
}
.car_qty_wrapper .quantity
{
  width: 85px;
  margin: auto;
}
.money i  
{
  padding-right: 3px;
  font-size: 13px;
}
.cart_image_wrapper 
{
  width: 100px;
}
.cart_meta_text
{
  font-size: 13px;
  font-style: italic;
}
.list_item_title
{
  font-size: 15px;
  font-weight: 500;
}
.cart_row td  {
  padding: 13px 5px !important;
  vertical-align: middle;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}
#progressbar .active {
    color: var(--base);
}
#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400;
    text-align: center;
}
#progressbar #account:before {
    font-family: FontAwesome;
    content: "\f13e";
}
#progressbar li.active:before, #progressbar li.active:after {
    background: var(--base);
}
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}
#progressbar #payment:before {
     font-family: "Font Awesome 6.1.1 Free"; 
     font-weight: 900;
    content: "\f290";
}
#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c";
}
#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007";
}
.calculate_details label 
{
  display: block;
}
.cmn_btn
{
  border: none;
  padding: 12px 65px;
  width: 100%;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(90.69deg, #F36E21 19.29%, #E61945 65.17%);
  transition: .5s;
  /*margin: 25px 0;*/
}
.cmn_btn:hover 
{
  background: #292929;
}
.cmn_cart_sub
{
  padding-bottom: 22px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}
.cart_cols {
    padding: 35px 25px;
    background: #f1f1f175;
    margin-bottom: 20px;
}

.or::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    width: 44%;
    background: #aea5a53b;
    transform: translateY(-50%);
}
.or::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 2px;
    width: 44%;
    background: #aea5a53b;
    transform: translateY(-50%);
}
.or {
    position: relative;
    margin-bottom: 15px;
}

.product_detail_row {
    margin-bottom: 12px;
    padding-bottom: 12px;
    line-height: 16px;
    border-bottom: 1px dashed #ccc;
}
.prd_base_price {
    float: right;
}
.total_title {
    font-weight: 700;
}
.product_detail_total .prd_base_price {
    font-weight: 700;
}
.order_summery i 
{
  font-size: 13px;
  padding-right: 3px;
}
.order_summery
{
  background: transparent !important;
}
.mt-45
{
  padding-top: 40px;
}
.steps 
{
  margin-top: 30px !important;
}
.item_section
{
  display: block;
  text-align: center;
  align-items: center;

}
.item_section svg,
.item_section path
{
  width: 30px;
  fill: var(--base);
}
.item_detail 
{
  font-size: 16px;
  font-weight: 500;
}
.item_disply
{
  padding-bottom: 10px;
}
.payment_trust .row 
{
  border-top: 1px solid #f1f1f1;
  padding: 20px 0;
}
.payment_trust .row .col-md-3 
{
  border-right: 1px solid #f1f1f1;
}
.forgot a:hover 
{
  color: var(--base);
}
.payment_sec
{
  padding: 0 25px;
  background: transparent;
}

.login_wrappeer
{
  height: 100vh;
}

.bg_clr
{
  background: #f36e2114;
}
.login_form 
{
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  margin: 0 55px;
  box-shadow: 0px 9px 15px #ffeade;
}
.d_flex
{
      display: flex;
    align-items: center;
}
.form_heading h3 
{
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
}
.form_heading p 
{
  text-align: center;
  line-height: 18px;
  font-size: 13px;
  padding-bottom: 10px;
}

.login_or::before,
.login_or::after
{
  width: 31%;
}
.login_or
{
  font-size: 14px;
}
.social_log
{
  text-align: center;
}
.social_log a 
{
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #000;
  font-size: 13px;
  margin-right: 5px;
  display: inline-block;
  transition: .3s;
}
.social_log a:hover 
{
  background: #292929;
  color: #fff;
}
.social_log a i 
{
  font-size: 14px;
  padding-right: 5px;
}
.signup_link
{
  margin-top: 20px;
}
.login_form label
{
  font-size: 14px;
}
.log_header
{
  position: absolute;
  top: 0;
  width: 100%;
}
.log_header_flex
{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.signup_btn
{
  border-radius: 8px;
  padding: 8px 15px;
  border:  none;
  background: var(--theme);
  color: #fff;
  font-weight: 600;
  transition: .3s;
  /*text-transform: uppercase;*/
  font-size: 14px;
  /*letter-spacing: 1px;*/
}
.signup_btn:hover 
{
  background: #292929;
}
.login_btn:hover 
{
  background: #292929;
}
.cmn_inp:focus 
{
  border-bottom: 1px solid var(--theme) !important;
  border-radius: 0 !important;
}
.wishlist .car_qty_wrapper .quantity
{
  width: 110px;
}
.stock_st
{
  color: var(--theme);
}
/*.close_search
{
  display: none !important;
}*/

.contact_form_sect .heading_sec
{
  margin-left: 0 !important;
  padding-bottom: 20px;
  margin-bottom: 45px;
}
.contact_wrapper
{
  padding: 50px 0;
}
.contact_form_sect .form-row
{
  margin-bottom: 10px;
}
.contact_form_sect .form-row label 
{
  padding-bottom: 8px;
}
.contact_form_sect .form-row textarea 
{
  height: 155px;
}
.submit_link
{
  padding: 14px 60px !important;
  text-transform: uppercase;
}
.adddress_items {
    /*display: flex;*/
    position: relative;
    margin-bottom: 25px;
}
.add_icons
{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f36e2136;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.add_details_sec
{
  padding-left: 60px;
}
.add_details_sec h4 
{
  font-size: 18px;
  padding-bottom: 5px;
  font-weight: 600;
}
.cont_page_heading h3 
{
  font-size: 25px;
  font-weight: 600;
}
.cont_page_heading
{
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.add_icons svg path 
{
  fill: var(--theme);
}

.contact_page_address 
{
  padding: 45px;
  background: #ff779412;
}

.map iframe
{
  width: 100%;
  height: 500px;
}

.big_title
{
  padding: 80px 0;
  text-align: center;
}
.big_title h1 
{
  font-size: 48px;
}

.about_cont_details p 
{
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  color: #434343;
}
.about_column h1 
{
  font-size: 38px;
  line-height: 42px;
  padding-bottom: 25px;
}
.about_image
{
  padding: 0 15px;
}
.our_story
{
  padding: 40px 0 60px;
}
.cmn_img_box
{
  padding-bottom: 30px;
}
.cmn_box_details 
{
  padding-right: 20px;
}
.cmn_box_details .cmn_box_head
{
  padding-bottom: 15px;
}
.cmn_box_details .cmn_box_head h2 
{
  color: var(--base);
}
.cmn_box_details h5 
{
  font-size: 17px;
  line-height: 28px;
  padding-bottom: 12px;
}
.cmn_box_details p
{
      font-size: 16px;
    line-height: 28px;
    text-align: justify;
    color: #434343;
}
.about_bnr
{
  background: #f5f5f5;
}
.row-text 
{
  padding: 15px 45px;
    margin: 0 auto;
    max-width: 90%;
    width: 100%;
}
.about_info h3 
{
  font-weight: 700;
  padding-bottom: 25px;
}
.about_info .tagline 
{
  text-transform: uppercase;
}
.info_para p  
{
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  color: #434343;
}
.about_bnr
{
  margin-top: 60px;
}

.counter_box
{
  text-align: center;

}
.counter_section
{
  padding-top: 30px;
}
.about_image img:hover 
{
  animation: animate .5s linear forwards;
  cursor: pointer;
}
@keyframes animate 
{
  0%
  {
    transform: scale(1);
  }
  50%
  {
    transform: scale(1.05);
  }
  100%
  {
    transform: scale(1);
  }
}
.slide_search 
{
  display: block !important;
}


.home_about
{
  padding-top: 45px;
}
.about_column h5 
{
  font-size: 18px;
  color: var(--base);
  margin-bottom: 10px !important;
  font-weight: 400;
  font-style: italic;
  padding-left: 7%;
  position: relative;
}
.about_column h5::before
{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 5%;
  height: 2px;
  background: var(--base);
  transform: translateY(-50%);
}
.home_about .our_story 
{
  padding-bottom: 0;
}
.latest_news .common_heading h1::before,
.latest_news .common_heading h1::after
{
  display: none !important;
}

.blog_post .card-body
{
 /* position: relative;*/
 padding: 30px 20px 30px;
}
.blog_post .card-body h4 
{
  font-weight: 600;
  padding-bottom: 15px;
}
.blog_post .card-body p
{
  font-size: 16px;
  line-height: 28px;
  color: #434343;
}
.blog_date 
{
  position: absolute;
  top: 0;
  right: 0;
  background: var(--theme);
  text-align: center;
  display: inline-block;
  padding: 10px 20px;
}
.blog_post
{
  border-radius: none !important;
  border: none !important;
  cursor: pointer;
}
.blog_post .card-header
{
  border-radius: 0 !important;
  border: none !important;
  overflow: hidden;
   position: relative;
}
.blog_post .card-header img 
{
  transition: .5s;
  width: 100%;
}
.blog_post:hover .card-header img 
{
  transform: scale(1.1);
}
.blog_date h2,
.blog_date p
{
  color: #fff;
}
.blog_date h2
{
  font-weight: 700;
}
.blog_date p
{
  font-size: 15px;
}

.readmore_flex
{
  display: flex;
  justify-content: space-between;
}
.readmore_flex svg  
{
  width: 25px;
  height: 25px;
}
.arrow_right:hover svg 
{
  fill: #fff;
}
.arrow_right
{
  transition: .5s;
  border-left: 5px solid #fff;
}
.arrow_right:hover
{
  background: var(--base);
}
.blog_readmore
{
  background: #f1f1f1;
  margin-top: 20px;
  /*padding: 10px;*/
}
.blog_row
{
  padding: 35px 0;
}
.readmore_flex a 
{
  font-weight: 600;
  color: var(--base);
  transition: .3s;
}
.readmore_flex p,.arrow_right
{
  padding: 12px;
}
.readmore_flex a:hover 
{
  color: #000;
}
.common_heading 
{
  position: relative;
}

.chairman_image {
    width: 300px;
    height: 300px;
    background: var(--base);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}
.chairman_image::before
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%; 
  border: 8px solid transparent;
  background: linear-gradient(to bottom,#F36E21,#E61945) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.ambasdor_content p 
{
      font-size: 16px;
    line-height: 28px;
    color: #434343;
    text-align: center;
    padding: 0 50px;
}
.amb_heading
{
  padding-bottom: 24px;
}
.ambasdor {
    padding: 73px 0 76px;
}
.ambasdor_content
{
  padding: 15px 0;
  text-align: center;
}
.s_title 
{
  font-size: 50px;
  background: -webkit-linear-gradient(#F36E21 , #E61945);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}


.abt_container {
    position: relative;
    width: 100%;
}
@media (min-width: 1200px)
{
  .abt_container img {
      width: 76% !important;
      position: relative;
  }
}

.abt_content {
    padding: 60px 60px 60px 40px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0%;
    width: 50%;
    /* max-width: 360px; */
    -webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 5%);
    box-shadow: 0 2px 4px rgb(0 0 0 / 5%);
    background: #fff;
}

.abt_content::before {
    /*content: "";*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0%;
    border: 8px solid transparent;
    background: linear-gradient(to bottom,#F36E21,#E61945) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}

.shape2
{
  width: 100px;
  height: 100px;
  /*background: #ccc;*/
  position: absolute;
  top: 45px;
  left: 45px;
}
.shape2::before 
{
  position: absolute;
  top: 0;
  left: -25px;
  width: 100%;
  height: 2px;
  background: var(--base);
  content: '';

}
.shape2::after 
{
  position: absolute;
  top: -25px;
  left: 0;
  width: 2.5px;
  height: 100%;
  background: var(--theme);
  content: '';
  
}

.shape1
{
  width: 100px;
  height: 100px;
  /*background: #ccc;*/
  position: absolute;
  bottom: 45px;
  right: 45px;
}
.shape1::before 
{
  position: absolute;
  bottom: 0;
  right: -25px;
  width: 100%;
  height: 2px;
  background: var(--base);
  content: '';

}
.shape1::after 
{
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 2.5px;
  height: 100%;
  background: var(--theme);
  content: '';
  
}
.chairman
{
  padding: 70px 0;
}
.ceo_author
{
  display: flex;
  align-items: center;
  gap: 15px;
}
.author_sign img  
{
  width: 160px;
}

.ceo_description p 
{
  font-size: 16px;
  line-height: 28px;
  color: #434343;
}
.ceo_main_message h1
{
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 30px !important;
}
.ceo_main_message p
{
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px !important;
  padding-right: 50px;
}
.ceo_message
{
  padding: 0px 30px 0px 30px;
}
.ceo_main_message h1 span
{
    background: -webkit-linear-gradient(#F36E21 , #E61945);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.author_details p 
{
  color: #ccc;
  font-style: italic;
}
.ceo_author
{
  margin-top: 18px;
}
.director_message
{
  /*text-align: right;*/
}
.director_message .ceo_main_message p
{
  padding-right: 0;
  padding-left: 50px;
}
.ceo_description p
{
  text-align: right;
}
.director_message .ceo_author
{
  justify-content: right;
  padding-top: 15px;
}




.ncs_groups
{
  padding: 60px 0;
}
.group_column h3 
{
  color: var(--theme);
  font-weight: 600;
}
.group_column p {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    color: #434343;
    padding-top: 15px;
}
.group_column
{
  margin-top: 25px;
  padding: 25px;
  border:  1px solid #EEEEEE;
  border-radius: 15px;
  transition: .5s;
  cursor: pointer;
}
.group_column:hover 
{
  background: var(--base);
}
.group_column:hover h3,
.group_column:hover p
{
  color: #fff;
}


.ceo_message_section
{
  /*padding: 40px 0;*/
  position: relative;
 
}

.ceo_image_colms
{
  /*background: url(../images/ceo_img.jpg);*/
}
/*.ceo_message_section
{
      max-width: 500px;
    margin: 100px 0px 90px 80px;
}*/

.ceo_dir
{
   background: url(../images/bg.jpg);
   padding: 60px 0;
   position: relative;
}
.ceo_dir::before 
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: var(--base);
}
.ceo_image_box
{
  width: 300px;
  height: 420px;
  margin: auto;
  border: 10px solid #fff;
  float: right;
}
.ceo_image_box img 
{
  height: 100%;
  object-fit: cover;
}
.ceo_image_box
{
  position: relative;
  z-index: 9;
}
.ceo_dir .ceo_main_message h1
{
  color: #fff;
  font-size: 36px;
  line-height: 36px;
}
.ceo_dir .ceo_description p
{
  color: #ccc;
  text-align: left;
}
.ceo_dir .author_details h3 
{
  color: var(--base);
}
.ceo_dir .ceo_main_message p
{
  color: #ccc;
  font-weight: 500;
}
/*.ceo_dir::before
{
  content: url(../images/bg.jpg);
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 720px;
    background-size: cover;
    background-position: center;
}*/

.dir_image 
{
  width: 250px;
  height: 250px;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 25px;
}
.dir_msg_content h4 
{
  color: #fff;
  padding-bottom: 15px;
}
.dir_msg_content p 
{
  color: #ccc;
}

.client_box
{
  position: relative;
  padding: 50px 100px;
  background: #fff;
  box-shadow: -1px 13px 20px 20px #f1f1f154;
  text-align: center;
}
.client_box .quote 
{
  position: absolute;
  top: 20px;
  left: 25px;
}
.client_box .quote svg
{
  width: 180px;
  height: 180px;
}
.client_box .quote svg path
{
  fill: rgb(0 0 0 / 2%);
}
.client_details p 
{
  font-size: 16px;
  line-height: 28px;
  color: #434343;
  text-align: center;
  padding: 0 50px;
}
.client_details
{
  padding: 0 50px;
}
.client_details p  
{
  padding: 25px 0;
}
.client_details .client_author h3 
{
  font-weight: 600;
  font-size: 24px;
  color: var(--theme);
}

.client_image
{
  width: 90px;
  height: 90px;
  background: #ccc;
  border-radius: 50%;
  margin: auto;
  overflow: hidden;
}
.client_section
{
  max-width: 950px;
  margin: auto;
}
.client_box
{
  margin-top: 50px;
}

.blog_det_heading p 
{
  color: #afadad;
  padding-bottom: 10px;
}
.blog_det_heading h1 
{
  font-weight: 700;
}
.blog_sm_desc
{
  padding: 15px 0;
  text-align: center;
}
.blog_det_heading
{
  text-align: center;
}
.blog_image
{
  padding: 15px 0 25px;
}
.blog_page_details,
.blog_share_container
{
  max-width: 950px;
  margin: auto;
  padding: 0 60px;
}
.blog_page_details p.strong_txt  
{
  padding-bottom: 30px;
  font-size: 20px;
  line-height: 32px;
}
.blog_page_details p
{
  font-size: 16px;
  line-height: 28px;
  color: #434343;
  text-align: justify;
}
.blog_details
{
  padding: 60px 0 80px;
}
.pb-25
{
  padding-bottom: 30px;
}
.blog_share_container
{
  border-top: 1px solid #ccc;
  margin-top: 20px;
}
.share
{
  text-align: center;
}
.share a 
{
  display: inline-block;
  height: 46px;
  width: 46px;
  line-height: 46px;
  border-radius: 50%;
  text-align: center;
  transition: .5s ease-in-out 0s;
  margin-right: 11px;
  color: var(--theme);
  font-size: 18px;
  background: #f1f1f1;
}
.share a:hover
{
  background: var(--theme);
  color: #fff;
}
.blog_subcontent h4 
{
  font-weight: 600;
  font-size: 22px;
  padding-bottom: 15px;
  padding-top: 25px;
}
.gallery_images::before {
    position: absolute;
    content: '';
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    /*width: 100%;*/
    /*height: 100%;*/
    background: linear-gradient(90.69deg, #F36E21 19.29%, #E61945 65.17%);
    transition: .5s ease-in-out 0s;
    transform: scale(0) !important;
    z-index: 9;
}
.gallery_overlay .gallery_icon {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    position: relative;
    transition: .5s;
    transform: scale(0);
}
.gallery_overlay .gallery_icon svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}
.gallery_images {
    position: relative;
}
.gallery_images {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery_images:hover::before {
    transform: scale(1) !important;
    background: linear-gradient(90.69deg, #F36E21 19.29%, #E61945 65.17%);
}
.gallery_images:hover img {
    transform: scale(1.1);
}
.gallery_images:hover .gallery_icon {
    transform: scale(1.0);
}
.gallery_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}
.gallery_images img {
    width: 100%;
    transition: .5s ease-in-out 0s;
}

.gallery_rapper
{
  padding: 40px 0;
}


.dir_flex
{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 55px;
}
.m-width
{
  max-width: 1000px;
  margin: auto !important;
}
.dir_content p {
    font-size: 16px;
    line-height: 28px;
    color: #434343;
    text-align: justify;
}
.dir_content
{
  padding-left: 25px;
}
.author_text
{
  padding-top: 30px;
}
.director_image
{
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.director_image::before 
{
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.director_image::after 
{
  content: '';
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.director_message
{
  padding: 60px 0;
  background: #;
}
.author_text
{
  text-align: right;
}
.author_text h3
{
  font-size: 20px;
  color: var(--theme);
  font-weight: 600;
  text-transform: uppercase;
}
.author_text p 
{
  text-align: right;
}

.product_carousel .main img
{
  width: 100%;
}
.product_carousel  .slick-slide
{
  padding: 6px;
    margin: 0;
}
.product_carousel .slick-slider
{
  margin-bottom: 0;
}
.product_carousel .slick-next {
    right: 25px;
}
.product_carousel .slick-prev {
    left: 25px;
}
.slick-next, .slick-prev
{
  z-index: 999;
}
.slick-next:before, .slick-prev:before
{
  font-size: 28px !important;
}
.ptop
{
  padding-top: 35px;
}
.prd_dtl_wrapper
{
  padding: 40px 0 50px;
}