/* Import Satoshi-Regular.ttf */
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GeneralSans";
  src: url("../fonts/GeneralSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --roboto-font: "Roboto", serif;
  --satoshi-font: "Satoshi", sans-serif;
  --generalSans-font: "GeneralSans", sans-serif;
  --font-size-13px: 13px;
  --font-size-14px: 14px;
  --font-size-16px: 16px;
  --font-size-18px: 18px;
  --font-size-20px: 20px;
  --font-size-21px: 21px;
  --font-size-24px: 24px;
  --font-size-28px: 28px;
  --font-size-32px: 32px;
  --font-size-40px: 40px;
  --font-size-45px: 45px;
  --font-size-52px: 52px;
  --font-size-58px: 58px;
  --dark-liver-color: #4d4d4d;
}

/* -------- Padding & Margin Values -------- */
.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-43 {
  margin-bottom: 43px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-117 {
  margin-bottom: 117px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-75 {
  padding-bottom: 75px;
}

.mt-55 {
  margin-top: 55px;
}

/* -------- Color -------- */
.dark-liver-color {
  color: var(--dark-liver-color);
}

/* -------- Header - Nav Bar -------- */
.nav-bg {
  background-color: #fff;
}

.navbar-nav {
  align-items: center;
}

/* .header-logo {
  width: 100%;
  height: 63px;
  object-fit: cover;
} */

.header-logo-padding .header-logo {
  width: 100%;
  height: 63px;
  object-fit: cover;
}

.header-logo-padding {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.header-search-padding {
  padding-left: 2.813rem;
}

.header-cart-padding {
  padding-right: 2.8rem !important;
}

.navbar-nav .nav-item .nav-link {
  font-family: var(--satoshi-font) !important;
  font-size: 14.5px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-item::after {
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  background-color: #ff0000;
  width: 0%;
  height: 3px;
  transition: all 0.5s;
  z-index: 999;
}

.navbar .navbar-nav .nav-item:hover::after {
  width: 100%;
}

.navbar-nav .current-menu-item::after {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background-color: #ff0000;
  width: 100%;
  height: 3px;
  transition: all 0.5s;
  z-index: 999;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
}



.navbar .dropdown:hover .dropdown-menu {
    /*margin-top: 14px;*/
    display: block;
     border: none; 
    border-radius: 0px;
    box-shadow: none;
    padding:25px 15px 15px 15px;
    z-index: 1;
}

.navbar .dropdown .dropdown-menu li .dropdown-item {
    font-family: var(--satoshi-font) !important;
    font-size: 14px !important;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    border-bottom: 0.1rem solid rgb(205, 205, 205);
}

.navbar .dropdown .dropdown-menu li:not(:first-child) .dropdown-item {
  padding-top: 12px;
}

.navbar .dropdown .dropdown-menu li .dropdown-item {
  padding-bottom: 12px;
}

.navbar .dropdown .dropdown-menu li:hover .dropdown-item {
    color: #ff0000;
}

.navbar .dropdown .dropdown-menu .current-menu-item .dropdown-item {
    color: #ff0000;
}


.navbar .dropdown .dropdown-menu .dropdown-item:focus, 
.navbar .dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: transparent;
}

.navbar-nav .dropdown-menu .nav-item::after{
    display:none;
}


.menu-item.dropdown > .nav-link {
  pointer-events: none; /* disables clicks */
  cursor: pointer; /* changes cursor to non-clickable */
}
 

/* -------- Mobile Header -------- */
@media (max-width: 991.98px) {
    
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.655em;
        vertical-align: 0.0em;
        content: "";
        background-image: url(https://plantationvilla.com/wp-content/themes/plantaion-villa/assets/images/Homepage/chevron-down.svg);
        background-position: center;
        background-repeat: no-repeat;
        border: 0;
        height: 12px;
        width: 20px;
        transform: rotate(180deg);
        transition: transform 1s;
    }
    
    .show.dropdown-toggle::after {
    transform: rotate(1deg);
}
    
    .navbar .dropdown:hover .dropdown-menu {
     /*margin-top: 0px; */
     padding: 0px; 
     background-color: transparent;
}

.fullscreen-mobile-nav {
    position: fixed;
    top: 62.5px; /* height of your header */
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    padding: 45px 30px 60px 30px;
    overflow-y: auto; /* scroll if content is taller */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 9999;
}

/* Base chevron */
.mobile-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.655em;
    vertical-align: 0em;
    content: "";
    background-image: url(https://plantationvilla.com/wp-content/themes/plantaion-villa/assets/images/Homepage/chevron-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
    height: 12px;
    width: 20px;
    transform: rotate(0deg); /* default pointing down */
    transition: transform 0.3s ease; /* smooth rotation */
}

/* Rotate when parent li is active */
.mobile-nav .dropdown-toggle.active::after {
    transform: rotate(180deg); /* pointing up */
}

.mobile-nav li.active > .dropdown-toggle::after {
    transform: rotate(380deg); /* pointing up */
}


/* When menu is active */
.fullscreen-mobile-nav.active {
  left: 0;
  opacity: 1;
  pointer-events: auto;
}



.fullscreen-mobile-nav.show {
  left: 0;
  opacity: 1;           
  pointer-events: auto; 
  transform: translateX(0);
}

  .navbar-nav .current-menu-item::after {
    bottom: 5px;
    width: -webkit-fill-available;
    height: 2px;
  }

  .navbar-nav .nav-item::after {
    bottom: 5px;
    height: 2px;
  }

  .navbar .navbar-nav .nav-item:hover::after {
    width: 0%;
  }
  
  .navbar-nav .nav-item .nav-link {
  font-size: 19px !important;
  line-height: 33px !important;
  font-weight: 500 !important;
  }
  
  .navbar .dropdown .dropdown-menu .current-menu-item .dropdown-item {
    color: #ff0000;
    font-weight: 600 !important;
}

.mobile-nav .dropdown-menu {
    display: none;
    position: static;
    margin: 0;
    padding-left: 1rem; /* optional indentation */
}

.mobile-nav .dropdown-menu.show {
    display: block;
}

.mobile-nav .dropdown-menu {
    display: none;
    position: static;
    margin: 0;
    padding-left: 1rem; /* optional */
}

.mobile-nav .dropdown-menu.show {
    display: block;
}


.mobile-nav .dropdown-menu {
    transition: max-height 0.3s ease;
    overflow: hidden;
}




}



.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.custom-toggler .toggler-icon {
  display: inline-block;
  width: 24px;
  height: 18px;
  position: relative;
}

.custom-toggler .toggler-icon span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  left: 0;
  transition: all 0.3s ease;
}

.custom-toggler .toggler-icon span:nth-child(1) {
  top: 0;
}
.custom-toggler .toggler-icon span:nth-child(2) {
  top: 8px;
}
.custom-toggler .toggler-icon span:nth-child(3) {
  top: 16px;
}

.custom-toggler.active .toggler-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.custom-toggler.active .toggler-icon span:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active .toggler-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}




/* -------- Page body -------- */
.header-offset {
  padding-top: calc(4rem + -1rem);
}

.hero-title {
  font-family: var(--roboto-font);
  font-size: var(--font-size-58px);
  font-weight: 500;
  line-height: 60px;
  color: #fff;
}

.heading-primary {
  font-family: var(--roboto-font);
  font-size: var(--font-size-40px);
  font-weight: 400;
  line-height: 50px;
  color: #000;
}

.heading-secondary {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
  color: #4d4d4d;
}

.heading-tertiary {
  font-family: var(--roboto-font);
  font-size: var(--font-size-32px);
  font-weight: 400;
  line-height: 50px;
  color: #000;
}

.heading-quaternary {
  font-family: var(--roboto-font);
  font-size: var(--font-size-28px);
  font-weight: 400;
  color: #000;
}

p {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
  color: #000;
}

.img {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #0f6258; 
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.my-float {
  margin-top: 11px;
}

.custom-container {
  margin-left: 61px;
}

/* -------- Button -------- */
.button-circle-red {
  background-color: #ff0000;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.button-circle-red img,
.button-circle-red-transparent img {
  width: auto !important;
  object-fit: cover;
  border-radius: 0px !important;
  margin-bottom: 0px !important;
}

.button-circle-red:hover,
.button-circle-red:active {
  background-color: #ff0000 !important;
}

.button-circle-red-transparent {
  background-color: transparent;
  border: 1px solid #ff0000;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.button-circle-red-transparent:hover,
.button-circle-red-transparent:active {
  background-color: transparent !important;
  border: 1px solid #ff0000 !important;
}

.button-readmore {
  background-color: transparent;
  border: 1px solid #ff0000;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card:hover .button-readmore:hover,
.button-readmore:active {
  background-color: #ff0000 !important;
  border: 1px solid #ff0000 !important;
}

.card:hover .button-readmore {
  background-color: #ff0000 !important;
  border: 1px solid #ff0000 !important;
}

.without-hover {
  display: block;
}

.with-hover {
  display: none;
}

.card:hover .without-hover {
  display: none;
}

.card:hover .with-hover {
  display: block;
}

a.button-loadmore-red,
.wpcf7-submit {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-20px);
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background-color: #ff0000;
  border: solid 1.5px #ff0000;
  border-radius: 5px;
  min-width: 250px;
  padding: 16.5px;
}

a.button-loadmore-red:hover,
a.button-loadmore-red:active,
.wpcf7-submit:hover,
.wpcf7-submit:active {
  color: #fff !important;
  text-decoration: none;
  background-color: #ff0000 !important;
  border: solid 1.5px #ff0000 !important;
}

/* -------- Common Section -------- */
#home-sec2 .card .overlay,
#inspirational-card .card .overlay,
#news-media-card .card .overlay,
#season-color .card .overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 75%)
  );
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#home-sec2 .card:hover .overlay,
#inspirational-card .card:hover .overlay,
#news-media-card .card:hover .overlay,
#season-color .card:hover .overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 23%),
    rgba(0, 0, 0, 100%)
  );
}

#home-sec2 .card-hover,
#home-sec3 .card-hover,
#home-sec8 .card-hover,
#inspirational-card .card-hover,
#news-media-card .card-hover,
#season-color .card-hover {
  bottom: 0;
  left: 0;
  position: absolute;
  padding: 14px;
  z-index: 1;
}

#home-sec2 .card-text-hover,
#home-sec3 .card-text-hover,
#home-sec8 .card-text-hover,
#inspirational-card .card-text-hover,
#news-media-card .card-text-hover,
#season-color .card-text-hover {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-24px);
  font-weight: 500;
  color: #fff;
}

#home-sec2 .card-sub-text,
#home-sec8 .card-sub-text,
#inspirational-card .card-sub-text,
#news-media-card .card-sub-text,
#season-color .card-sub-text {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
  color: #fff;
}

#home-sec2 .card:hover .card-text,
#home-sec3 .card:hover .card-text,
#home-sec8 .card:hover .card-text,
#inspirational-card .card:hover .card-text,
#news-media-card .card:hover .card-text,
#season-color .card:hover .card-text {
  display: none;
}

#home-sec2 .card .card-hover,
#home-sec3 .card .card-hover,
#home-sec8 .card .card-hover,
#inspirational-card .card .card-hover,
#news-media-card .card .card-hover,
#season-color .card .card-hover {
  display: none;
}

#home-sec2 .card:hover .card-hover,
#home-sec3 .card:hover .card-hover,
#home-sec8 .card:hover .card-hover,
#inspirational-card .card:hover .card-hover,
#news-media-card .card:hover .card-hover,
#season-color .card:hover .card-hover {
  display: block;
}

.hero-section {
  width: 100%;
}

.hero-section img {
  object-fit: cover;
  max-height: 500px;
  width: 100%;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 30%),
    rgba(0, 0, 0, 30%),
    rgba(0, 0, 0, 30%)
  );
  z-index: 1;
}

.hero-section-content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-sec-title {
  font-family: var(--roboto-font);
  font-size: var(--font-size-58px);
  font-weight: 500;
  line-height: 75px;
  color: #fff;
  max-width: 715px;
}

.bottom-banner-img-overlay img {
  width: 100%;
  height: 825px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.bottom-banner-img-overlay {
  position: relative;
  width: 100%;
  height: 825px;
}

.bottom-banner-img-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 53%),
    rgba(0, 0, 0, 85%)
  );
  z-index: 1;
}

.bottom-banner-txtsection {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

a.bottom-banner-btn {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-20px);
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border: solid 1.5px white;
  border-radius: 5px;
  min-width: 250px;
  padding: 16.5px;
}

a.bottom-banner-btn:hover,
a.bottom-banner-btn:active {
  color: #fff !important;
  text-decoration: none;
  border: solid 1.5px white !important;
}

.card {
  border: none;
}

.card-text {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-24px);
  font-weight: 500;
  color: #fff;
  bottom: 0;
  left: 0;
  position: absolute;
  padding: 14px;
  z-index: 1;
}

.view-more-text {
  font-family: var(--roboto-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
  text-decoration: underline;
  color: #000;
}

/* -------- Home Page -------- */
.home-banner-hero-title {
  font-family: var(--roboto-font);
  font-size: var(--font-size-58px);
  font-weight: 400;
  color: #fff;
  line-height: 70px;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.home-banner-subtitle {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-16px);
  font-weight: 400;
  color: #fff;
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 32px;
}

.home-banne-txtsection {
  position: relative;
  z-index: 1;
  text-align: center;
}

.home-banner-search .form-control {
  max-width: 425px;
  height: 63px;
  border-radius: 32px;
  margin: 0 auto;
  border: none;
  font-family: var(--satoshi-font);
  font-size: var(--font-size-20px);
  font-weight: 500;
  color: #000000 !important;
}

.home-banner-search .form-control::placeholder {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-20px);
  font-weight: 500;
  color: #000000 !important;
}

.home-banner-search .form-control:hover::-webkit-search-cancel-button {
  display: none !important;
}

.home-banner-search .form-control:focus::-webkit-search-cancel-button {
  display: none !important;
}

.home-banner-search .form-control:focus {
  box-shadow: none;
}

.home-banner-search #searchicon {
  background-image: url("../images/search-line.svg");
  background-repeat: no-repeat;
  background-position: 22px center;
  background-size: 22px 22px;
  padding-left: 55px;
}

.brand-img {
  object-fit: cover;
  height: 95px;
  width: 100%;
}

#home-sec2 .card img {
  object-fit: cover;
  width: 100%;
  height: 370px;
}

#home-sec3 .card img {
  object-fit: cover;
  width: 100%;
  height: 445px;
}

#home-sec3 .card .overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 70%)
  );
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#home-sec3 .card:hover .overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 23%),
    rgba(0, 0, 0, 100%)
  );
}

#home-sec5 .card img {
  object-fit: cover;
  width: 100%;
  height: 670px;
}

#home-sec5 .card .overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 35%),
    rgba(0, 0, 0, 100%)
  );
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#home-sec5 .card-hover {
  bottom: 0;
  left: 0;
  position: absolute;
  padding: 32px;
  z-index: 1;
}

.btn-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.checkbox-img {
  width: 43px !important;
  height: 43px !important;
}

.priority-text {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-32px);
  font-weight: 400;
}

#home-sec8 img {
  object-fit: cover;
  width: 100%;
  height: 590px;
}

#home-sec8 .card .overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 75%)
  );
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#home-sec8 .card:hover .overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 100%)
  );
}

/* -------- About Us Page -------- */
.count-num {
  font-family: var(--roboto-font);
  font-size: var(--font-size-52px);
  font-weight: 500;
  line-height: 50px;
  color: #ff0000;
}

.count-text {
  font-family: var(--roboto-font);
  font-size: var(--font-size-20px);
  font-weight: 400;
  color: #ff0000;
}

.about-sec4-heder {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 500;
  color: #ff0000;
}

.about-sec4-content {
  font-family: var(--roboto-font);
  /*font-size: var(--font-size-45px);*/
  font-size: 32px;
  font-weight: 400;
  color: #000;
  margin: 0 auto;
  max-width: 870px;
}

.about-sec4-mission-txt p {
  font-family: var(--roboto-font);
  /*font-size: var(--font-size-45px);*/
  font-size: 32px;
  font-weight: 400;
  color: #000;
  margin: 0 auto;
  max-width: 870px;
}

.about-sec4-mission-txt h5 {
  /*font-family: var(--roboto-font);*/
  /*font-size: var(--font-size-45px);*/
  font-family: var(--satoshi-font);
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0 auto;
  max-width: 870px;
  line-height: unset;
  margin-bottom: 16px;
}

.about-sec4-mission-txt h6 {
  font-family: var(--roboto-font);
  /*font-size: var(--font-size-45px);*/
  font-size: 21px;
  font-weight: 400;
  color: #000;
  margin: 0 auto;
  max-width: 870px;
  line-height: unset;
}

.timeline {
  position: relative;
  margin: 0px auto;
  width: 1250px;
  box-sizing: border-box;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #4d4d4d;
}

.timeline ul {
  padding: 0;
  margin: 0;
}

.timeline ul li {
  list-style: none;
  position: relative;
  width: 50%;
  padding: 20px 72px;
  box-sizing: border-box;
  margin-bottom: 135px;
}

/*.timeline ul li:last-child {*/
/*  margin-bottom: 0 !important;*/
/*}*/

.timeline ul li:nth-child(odd) {
  float: left;
  text-align: left;
  clear: both;
}

.timeline ul li:nth-child(even) {
  float: right;
  text-align: left;
  clear: both;
}

.timeline ul li:nth-child(odd):before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  top: 24px;
  right: -14px;
  background: #ff0000;
  border-radius: 50%;
}

.timeline ul li:nth-child(even):before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  top: 24px;
  left: -14px;
  background: #ff0000;
  border-radius: 50%;
}

.timeline ul li .title {
  font-family: var(--roboto-font);
  font-size: var(--font-size-28px);
  color: #000;
  line-height: normal;
  padding-bottom: 34px;
}

.timeline ul li p {
  padding: 0;
}

.timeline ul li .time img:nth-child(odd) {
  float: left;
  text-align: left;
  clear: both;
}

.timeline ul li:nth-child(odd) .time {
  position: absolute;
  top: 12px;
  right: -553px;
}

.timeline ul li:nth-child(even) .time {
  position: absolute;
  top: 12px;
  left: -553px;
}

#testermonial .card {
  border: 0.5px solid rgba(0, 0, 0, 0.2) !important;
  padding: 32px 28px;
  height: 330px;
  border-radius: 8px;
}

#testermonial .feedback {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
  line-height: 27px;
  color: #000;
}

#testermonial .client-name {
  font-family: var(--roboto-font);
  font-size: var(--font-size-18px);
  font-weight: 600;
  line-height: 27px;
  color: #000;
}

#testermonial .clirnt-position {
  font-family: var(--roboto-font);
  font-size: var(--font-size-16px);
  font-weight: 400;
  line-height: 27px;
  color: #ff0000;
}

.sec-impact li::marker {
  font-size: 38px;
  color: #ff0000;
}

.impact-text {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-32px);
  font-weight: 400;
}

/* -------- Inspirational Ideas Page -------- */
#inspirational-card .card img {
  object-fit: cover;
  width: 100%;
  height: 480px;
}

/* -------- News & Media Hub Page -------- */
#news-media-card .card img {
  object-fit: cover;
  width: 100%;
  height: 395px;
}

#news-media-card .news-media-middle-img {
  height: 807px !important;
}

#news-media-card .card-text span,
#news-media-card .card-text-hover span {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-16px);
  color: white;
  font-weight: normal !important;
  line-height: 40px;
}

.news-page #inspirational-card .card-text span,
.news-page #inspirational-card .card-text-hover span {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-16px);
  color: white;
  font-weight: normal !important;
  line-height: 40px;
}

/* -------- CSR and Sustainability Page -------- */
.csr-sec2-img {
  height: 655px;
}

#csr-card .card,
#sus-card .card {
  height: 570px;
}

#csr-card .card img,
#sus-card .card img {
  height: 300px;
}

#csr-card .card-title,
#sus-card .card-title {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-24px);
  font-weight: 500;
  color: #000;
}

#csr-card .card-content,
#sus-card .card-content {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-14px);
  font-weight: 400;
  color: #000;
  max-height: 120px; /* Adjust value as needed */
  overflow: hidden;
}

/* -------- Blog Page -------- */
a.button-blog-red {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 500;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  border: solid 1px #888585;
  border-radius: 8px;
  min-width: 200px;
  padding: 16.5px;
}

a.button-blog-red:hover,
a.button-blog-red:active {
  color: #fff !important;
  text-decoration: none;
  background-color: #ff0000 !important;
  border: solid 1px #ff0000 !important;
}

#blog .card {
  border: 0.5px solid rgba(0, 0, 0, 0.2) !important;
  padding: 18px;
  border-radius: 8px;
}

/* .blog-card .card {
  max-height: 625px !important;
} */

#blog a {
  text-decoration: none;
}

#blog .img {
  height: 450px;
}

#blog .title {
  font-family: var(--generalSans-font);
  font-size: var(--font-size-32px);
  font-weight: normal;
  line-height: normal;
  color: #000;
}

#blog .date,
#blog .para {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: normal;
  color: #000;
}

#blog-inner-img p img {
    display: block;
    margin: 0 auto;
    object-fit: contain;
    width: 100%;
    height: 400px;
    border-radius: 8px;
}


#blog-category-filter .btn.active {
  background-color: #ff0000;
  color: white;
}

/* -------- Export Page -------- */
.reach .num {
  font-family: var(--roboto-font);
  font-size: var(--font-size-52px);
  font-weight: 500;
  line-height: 50px;
  color: #ff0000;
}

.reach .text {
  font-family: var(--roboto-font);
  font-size: var(--font-size-20px);
  font-weight: 400;
  color: #ff0000;
}

.reach .para {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-16px);
  font-weight: 400;
  line-height: 20px;
  max-width: 265px;
}

/* -------- Product Page -------- */
#product-filter .card {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 22px;
}

#product-filter .filter-text {
  font-family: var(--roboto-font);
  font-size: var(--font-size-32px);
  font-weight: 400;
  line-height: 50px;
}

#product-filter .clear-filter-btn {
  padding: 0px;
  text-decoration: underline;
  font-family: var(--roboto-font);
  font-size: var(--font-size-16px);
  font-weight: 400;
  line-height: 50px;
}

#product-filter .clear-filter-btn:active {
  border: none;
}

#product-filter .accordion-button {
  padding: 0px;
  background-color: transparent;
  font-family: var(--satoshi-font);
  font-size: var(--font-size-24px);
  font-weight: bold;
  line-height: 50px;
  color: #000;
}

#product-filter .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

#product-filter .accordion-button:focus {
  box-shadow: none;
}

#product-filter .accordion-item {
  background-color: transparent;
  border: none;
}

#product-filter .accordion-header {
  padding-bottom: 8px;
}

#product-filter .accordion-body {
  padding: 0px;
}

#product-filter .form-check-label {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
  line-height: 40px;
  color: #000;
}

#product-filter .checkbox-only {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  margin-bottom: 6px;
}

#product-filter .checkbox-only .form-check-input {
  margin-left: auto;
}

#product-filter .form-check-input {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

#product-filter .checkbox-only .form-check-input[type="checkbox"] {
  border-radius: 0px;
}

#product-filter .form-check-input:focus {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: none;
}

#product-filter .checkbox-only .form-check-input:checked {
  background-color: transparent;
  border-color: none;
}

#product-filter .form-check-input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#product-filter .form-check-input:checked[type="checkbox"] {
  background-image: url("../images/rec-correct.svg");
  background-color: transparent;
  border: none;
}

#product-filter .radio-only .form-check-input:checked {
  background-color: #ffffff;
  border-color: none;
}

#product-filter .form-check-input[type="radio"] {
  appearance: none;
}

#product-filter .form-check-input:checked[type="radio"] {
  background-image: url("../images/red-circle-icon.svg");
  border: none;
  background-size: 12px 12px;
}

#product-filter .color-box {
  border-radius: 2px;
  height: 38px;
  width: 38px;
  border: 1px solid #00000012;
}

#product-accordion .card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  /*height: 450px;*/
  height: 420px;
  padding: 50px 12px 15px;
}

#product-accordion .paint-bucket {
  object-fit: contain;
  width: 100%;
  height: 165px;
}

#product-accordion .product-name {
  font-family: var(--roboto-font);
  font-size: var(--font-size-18px);
  font-weight: bold;
  color: #000;
  line-height: normal;
}

#product-accordion .product-description {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-14px);
  font-weight: 400;
  color: #000;
  padding-bottom: 4px;
}

#product-accordion .accordion-item {
  border: none;
}

#product-accordion .accordion-button {
  padding: 0px;
  font-family: var(--roboto-font);
  font-size: var(--font-size-32px);
  font-weight: normal;
  color: #000;
}

#product-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

#product-accordion .accordion-button:focus {
  box-shadow: none;
}

/* -------- Colour Page -------- */
.main-color-box {
  width: 100%;
  padding: 0px;
  color: black;
  background-color: transparent;
  font-family: var(--roboto-font);
  font-size: var(--font-size-28px);
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.sub-color-box,
.sub-color-box:hover,
.sub-color-box:active {
  height: 168px;
  width: 160px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.sub-color-box:hover {
  border: 1px solid #ff0000;
}

.colorof-year {
  height: 360px;
}

.colorof-year-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-190%);
  width: 345px;
  margin: 25px;
}

.color-code-text {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-24px);
  font-weight: 500;
  color: #ffffff;
  /*max-width: 195px;*/
}

#season-color .card img {
  object-fit: cover;
  width: 100%;
  height: 345px;
}

#colorpage-filter .form-select {
  border: 1px slid black;
  padding: 23px;
  padding-left: 80px;
  border-radius: 8px;
}

#colorpage-filter .form-select:focus {
  border: 1px slid black;
  border-color: #999;
  box-shadow: none;
}

.colorpage-img,
.popup-color-box {
  height: 230px !important;
}

#colorpage-popup .card {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 38px 26px;
}

#colorpage-popup .product-img {
  height: 125px;
  object-fit: cover;
}

.color-modal .modal-dialog {
  max-width: fit-content !important;
}

#colorpage-popup .color-name {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-32px);
  font-weight: bolder;
}

#colorpage-popup .color-code {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-24px);
  font-weight: 400;
  line-height: 27px;
}

#colorpage-popup .btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}

/* -------- Career Page -------- */
#job .accordion-button {
  padding: 0px;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  /* padding-right: 30px; */
  border: none;
  font-family: var(--roboto-font);
  font-size: var(--font-size-24px);
  font-weight: bold;
  color: black;
}

#job .accordion-button:focus {
  box-shadow: none;
}

#job .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

#job .accordion-body {
  padding: 0px;
}

#job .accordion-item {
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 45%);
  border-radius: 0px !important;
  background-color: transparent;
}

#job hr {
  margin: 0px;
  color: rgb(0 0 0 / 45%);
}

#job .accordion-button .btn-inner-text {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
  color: #000;
  padding-left: 12px;
}

#job .accordion-button .btn-inner-img {
  height: 24px;
  width: 24px;
}

#job .accordion-body .inner-content {
  padding-top: 30px;
  padding-bottom: 30px;
}

#job .inner-content .text {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-24px);
  color: #000;
  font-weight: bolder;
  line-height: 25px;
  padding-bottom: 25px;
}

#job .inner-content ol li,
#job .inner-content .qualifications p {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
  color: #000;
  line-height: 27px;
  margin: 0px;
}

#job .accordion-button::after {
  flex-shrink: 0;
  width: 56.3px;
  height: 56.3px;
  margin-left: auto;
  content: "";
  background-image: url(../images/career-red.svg);
  background-repeat: no-repeat;
  background-size: auto;
  transition: var(--bs-accordion-btn-icon-transition);
}

#job .accordion-button:not(.collapsed)::after {
  background-image: url(../images/career-white.svg);
  transform: var(--bs-accordion-btn-icon-transform);
}

.careers-model-style .modal-body-content {
  padding: 40px;
}

#careers-model-job-details .job-details-box {
  border: 1px solid #2e2e2e !important;
  border-radius: 8px;
  padding: 10px;
}

#careers-model-job-details .job-details-box-inner {
  padding: 15px 15px 25px 15px;
}

/* -------- Contact Us Page -------- */
.map-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 495px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.vr {
  border-right: 0.5px solid #cccccc57;
  height: 100%;
}

#contact-us label {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-14px);
  font-weight: 400;
  line-height: 25px;
  color: #4d4d4d;
}

#contact-us .form-control,
#contact-us .form-select {
  height: 55px;
  border-color: black;
  border-radius: 8px;
}

#contact-us .form-control:focus,
#contact-us .form-select:focus {
  box-shadow: none;
}

#contact-us input,
#contact-us select {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
}

#cont-sec2 .text {
  font-family: var(--satoshi-font);
  font-weight: 500;
  font-size: var(--font-size-24px);
  color: #000;
}

#cont-sec2 .sub-text a,
#cont-sec2 .sub-text,
#cont-sec2 .sub-text p {
  text-decoration: none;
  font-family: var(--satoshi-font);
  font-weight: 400;
  font-size: var(--font-size-14px);
  color: #000;
}

#contact-us .choices__inner {
  background-color: transparent;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-color: black;
  border-radius: 8px;
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
  height: 55px;
}

/* -------- Product Inner Page -------- */
.product-inner-rowcard .col {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  padding-top: 45px;
  padding-bottom: 45px;
}

.product-inner-rowcard .rowcard-1,
.product-inner-rowcard .rowcard-3 {
  border-top: none !important;
  border-left: none !important;
}

.product-inner-rowcard .rowcard-2,
.product-inner-rowcard .rowcard-4 {
  border-top: none !important;
  border-right: none !important;
}

.product-inner-rowcard .rowcard-3,
.product-inner-rowcard .rowcard-4 {
  border-bottom: none;
}

.product-inner-rowcard .text {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-28px);
  font-weight: 400;
}

#product-inner-tab .nav-tabs {
  border: none;
}

#product-inner-tab .nav-tabs .nav-link.active {
  color: black;
  background-color: transparent;
  border-color: transparent;
  border-bottom: 3px solid #ff0000 !important;
  font-weight: bolder;
}

#product-inner-tab .tab-content {
  padding-top: 55px;
}

#product-inner-tab .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent;
}

#product-inner-tab .nav-tabs .nav-link {
  font-family: var(--roboto-font);
  font-size: var(--font-size-28px);
  color: rgba(0, 0, 0, 0.4);
}

.sixe-text {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-24px);
  font-weight: bold;
  line-height: 27px;
}

#product-inner-topcard .card {
  height: 165px;
  width: 100%;
  border-radius: 8px;
  max-width: 165px;
  border: 1px solid #00000012;
}

#product-inner-topcard img {
  max-height: 250px;
  object-fit: contain;
}

.product-inner-rowcard .rowcard-1 {
  border: 1px solid #ddd;
}

.product-inner-rowcard .rowcard-1:nth-child(1) {
  border-top: none;
  border-left: none;
}

.product-inner-rowcard .rowcard-1:nth-child(2) {
  border-top: none;
  border-right: none;
}

.product-inner-rowcard .rowcard-1:nth-child(3) {
  border-bottom: none;
  border-left: none;
}

.product-inner-rowcard .rowcard-1:nth-child(4) {
  border-bottom: none;
  border-right: none;
}

/* -------- FAQ Page -------- */
.faq-search .form-control {
  width: 425px;
  height: 63px;
  border-radius: 40px;
  margin: 0 auto;
  border: 1px solid black;
  font-family: var(--satoshi-font);
  font-size: var(--font-size-20px);
  font-weight: 500;
  color: #000000 !important;
}

.faq-search .form-control::placeholder {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-20px);
  font-weight: 500;
  color: #000000 !important;
}

.faq-search .form-control:hover::-webkit-search-cancel-button {
  display: none !important;
}

.faq-search .form-control:focus::-webkit-search-cancel-button {
  display: none !important;
}

.faq-search .form-control:focus {
  box-shadow: none;
}

.faq-search #searchicon {
  background-image: url("../images/search-line.svg");
  background-repeat: no-repeat;
  background-position: 22px center;
  background-size: 22px 22px;
  padding-left: 55px;
}

#faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url(../images/faq-minus.svg);
  transform: var(--bs-accordion-btn-icon-transform);
}

#faq-accordion .accordion-button::after {
  flex-shrink: 0;
  width: 56.3px;
  height: 56.3px;
  margin-left: auto;
  content: "";
  background-image: url(../images/faq-plus.svg);
  background-repeat: no-repeat;
  background-size: auto;
  transition: var(--bs-accordion-btn-icon-transition);
}

#faq-accordion .accordion-item {
  border: 1px solid #888585 !important;
  border-radius: 8px;
}

#faq-accordion .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

#faq-accordion .accordion-button:not(.collapsed) {
  color: black;
  background-color: transparent;
  box-shadow: none;
}

/* #faq-accordion .accordion-body p {
  max-width: 1050px;
} */

#faq-accordion .accordion-button {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-32px);
  font-weight: 400;
  line-height: 35px;
  color: #000;
}

.accordion {
  --bs-accordion-bg: auto !important;
}

/* -------- Award Page -------- */
.scroll-spacer {
  height: calc(50% * 10); /* 6 items */
}

.fixed-timeline {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.timeline-container {
  position: relative;
  height: 70vh; /* More consistent across screen sizes */
}

.timeline-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.year {
  font-family: var(--roboto-font);
  font-size: var(--font-size-16px);
  line-height: 20px;
  color: #000000;
  transition: color 0.3s ease, transform 0.3s ease;
}

.timeline-item.active .year {
  font-family: var(--roboto-font);
  font-size: var(--font-size-16px);
  line-height: 20px;
  color: #000000;
}

.content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.vertical-progress-bar {
  position: absolute;
  left: 7%;
  top: 0;
  height: 100%;
  width: 3px;
  background: #e9ecef;
  transform: translateX(-50%);
  z-index: 0;
}

.progress-fill {
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  background: #ff0000;
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-img {
  object-fit: contain;
  width: 100%;
  height: 250px !important;
}

.award-color {
  font-family: var(--satoshi-font);
  font-size: 16px;
  font-weight: 400;
  color: #ff0000;
}

.award-title {
  font-family: var(--generalSans-font);
  font-size: var(--font-size-18px);
  font-weight: bold;
  color: #000;
  line-height: normal;
  max-width: 260px;
}

.award-description p {
  font-family: var(--satoshi-font);
  font-size: 12px;
  font-weight: 400;
  color: #000;
  max-width: 260px;
}

/* -------- Before & After Page -------- */
.bafg-slider-title {
  margin: 24px 0 16px 0;
  font-family: var(--roboto-font);
  font-size: 28px;
  font-weight: 400;
  color: #000;
  padding: 0;
}

.bafg-slider-description {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 400;
  color: #000;
  line-height: 27px;
}

/* -------- Locate Us Page -------- */
#branches-tab .nav-link {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-18px);
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

#branches-tab .nav-link.active {
  color: #ff0000;
}

#branches-tab .nav-link:hover {
  border-color: transparent;
}

#branches-tab .nav-link.active:hover {
  border-top-color: rgb(237, 240, 242);
  border-right-color: rgb(237, 240, 242);
  border-bottom-color: rgba(222, 226, 230, 0);
  border-left-color: rgb(237, 240, 242);
}

#branches-tab .nav-tabs .nav-link.active {
  border-bottom: none !important;
}

#branches-tab .card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

#branches-tab .card .map-container {
  height: 250px;
}

#branches-tab .card .card-container {
  margin: 30px 15px;
}

#branches-tab .branch-name {
  font-family: var(--roboto-font);
  font-size: var(--font-size-18px);
  font-weight: 500;
  color: #000;
  line-height: normal;
  padding: 16.5px;
  text-align: center;
}

#branches-tab .inner-detail {
  text-decoration: none;
  font-family: var(--satoshi-font);
  font-weight: 400;
  font-size: var(--font-size-16px);
  color: #000;
}

/* -------- Footer -------- */
footer .logo {
  height: 63px;
  object-fit: cover;
}

footer .main-text {
  font-family: var(--roboto-font);
  font-size: var(--font-size-24px);
  font-weight: 400;
  line-height: 50px;
  color: #000;
}

footer .main-text span {
  font-weight: 500 !important;
  font-style: italic !important;
}

.vertical-line {
  height: 100%;
  border-right: 0.5px solid #cccccc57;
}

footer .sub-text {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-16px);
  font-weight: 400;
  color: #000;
}

footer .sub-text1 {
  font-family: var(--roboto-font);
  font-size: var(--font-size-21px);
  font-weight: 500 !important;
  color: #000;
}

footer .sub-text2 {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-16px);
  font-weight: 400;
  color: #000;
}

footer .sub-text3 {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-14px);
  font-weight: 400;
  color: #888585;
}

footer .sub-text4 {
  font-family: var(--roboto-font);
  font-size: var(--font-size-16px);
  font-weight: 500;
  color: #000;
  padding-bottom: 14px;
}

footer ul {
  padding-left: 0rem;
}

footer ul li {
  list-style: none;
  padding-bottom: 16px;
}

footer ul li a {
  font-family: var(--satoshi-font);
  font-size: var(--font-size-16px);
  font-weight: 400;
  color: #000;
  text-decoration: none;
}

/* -------------------------------- */

.calendly-inline-widget {
  height: 800px !important;
}

.inspirational-term-p p {
  font-family: var(--roboto-font);
  font-size: var(--font-size-40px);
  font-weight: 400;
  line-height: 50px;
  color: #000;
}

#blogFilterDropdown {
  transition: 0.4s ease, opacity 0.4s ease;
}

#contact-us p {
  margin-bottom: 0px;
}



/*.mobile-nav .menu-item-has-children:hover > .dropdown-menu {*/
/*  display: block;*/
/*}*/



/*.d-lg-none .menu-item-has-children > .dropdown-menu {*/
/*    display: none;*/
/*}*/

.d-lg-none .menu-item-has-children.show > .dropdown-menu {
    display: block;
}

.mobile-nav .dropdown-menu {
    border: none;
}

.mobile-nav .navbar-nav .current-menu-item::after {
    display: contents;
}


.header-search-modal .modal-dialog,
.modal-dialog {
            margin-top: 85px !important;
        }
        
.header-search-modal h5{
    font-family: var(--roboto-font);
    font-size: 22px;
    font-weight: 500;
    line-height: 5px;
    color: #000;
}

.header-search-modal .modal-content {
    border: 2px solid black;
    border-radius: 8px;
}

.header-search-modal .form-control {
    height: 55px;
    border-color: black;
    border-radius: 8px;
}

.header-search-modal input {
    font-family: var(--satoshi-font);
    font-size: var(--font-size-18px);
    font-weight: 400;
}

.btn-close:focus {
    box-shadow: none;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: black;
    outline: 0;
    box-shadow: none;
}

.header-search-modal .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
     border-top-right-radius: 8px; 
     border-bottom-right-radius: 8px; 
}

.header-search-modal .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border: none;
}

.header-search-modal .btn {
    --bs-btn-font-size: 1.5rem;
    --bs-btn-font-weight: 500;
}

.header-search-modal .btn:hover {
    color: black;
    background-color: transparent;
    border-color: transparent;
}


.search-result-style strong{
    color: #000 !important;
    font-family: var(--roboto-font);
    font-weight: 500;
}

.search-result-style small {
    font-family: var(--satoshi-font);
    font-size: var(--font-size-14px);
    font-weight: 400;
    color: #000;
}

.search-result-style .text-primary {
    color: #000 !important;
    font-family: var(--satoshi-font) !important;
    font-size: 15px !important;
}


 
.inspirational-section2-swiper .video-card .yt-embed .banner-img{
    object-fit: cover;
    height: 400px !important;
}





/*.fcp_icon_7:before {*/
    content: ""; /* remove the font-glyph */
/*    display: inline-block;*/
    width: 26px; /* adjust size as needed */
/*    height: 23px;*/
/*    background: url('https://multilac.wearedesigners.net/multilac/wp-content/uploads/2025/08/shopping-cart.webp') no-repeat center center;*/
/*    background-size: contain;*/
/*}*/



/*._iiDwDq8a4e3_DhY4dXQ.DLQ84SKZZD4kiT6AFmOk {*/
/*    position: absolute;*/
/*    top: 17px;*/
/*    left: 0px !important;*/
/*}*/







input[type="file"]::file-selector-button {
  /* Background and border */
  background-color: transparent; /* Makes the background transparent */
  border: 2px solid #ff4d4f; /* Sets a red border */

  /* Padding and border-radius */
  padding: 0.5em 1em;
  border-radius: 0.3em;
  
  /* Text styling */
  color: #ff4d4f; /* Sets the text color to red */
  font-size: 1em;
  font-weight: bold;
  
  /* Cursor and transition for hover effect */
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover effect */
input[type="file"]::file-selector-button:hover {
  background-color: #ffe6e6; /* Changes background to a lighter red on hover */
  border-color: #ff4d4f; /* Keeps the border color the same */
}


#product-filter .color-box.active{
    border: 1px solid #ff0000 !important;
}

#product-accordion-swiper .card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    /* height: 450px; */
    height: 380px !important;
    padding: 45px 12px 15px !important;
}






