@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /* Typography */
  --font-body--family: "Poppins", sans-serif;
  --font-body--style: normal;
  --font-body--weight: 400;

  --font-heading--family: "Poppins", sans-serif;
  --font-heading--style: normal;
  --font-heading--weight: 600;

  --font-button--family: "Poppins", sans-serif;
  --font-button--style: normal;
  --font-button--weight: 600;

  /* h1-h6 */
  --font-h1--size: 60px;
  --font-h2--size: 48px;
  --font-h3--size: 36px;
  --font-h4--size: 24px;
  --font-h5--size: 20px;
  --font-h6--size: 16px;

  /* header nav */
  --font-nav-main: 16px;

  /* Colors */
  --color-background: rgba(255, 255, 255, 1);
  --color-foreground: rgba(28, 37, 57, 1);
  --color-foreground-heading: rgba(28, 37, 57, 1);
  --color-foreground-subheading: rgba(93, 102, 111, 1);
  --color-background-subheading: rgba(255, 255, 255, 0.1);
  --color-border-subheading-bg: rgba(32, 40, 45, 0.1);
  --color-primary: rgba(28, 37, 57, 1);
  --color-primary-background: rgba(28, 37, 57, 1);
  --color-primary-hover: rgba(28, 37, 57, 1);
  --color-primary-background-hover: rgba(28, 37, 57, 1);
  --color-border: rgba(255, 255, 255, 0.3);
  --color-border-hover: rgba(93, 102, 111, 0.5);
  --color-shadow: rgba(0, 0, 0, 1);
  --color-overlay: rgba(28, 37, 57, 0.6);

  /* Buttons */
  --font-button-size: 16px;
  --font-button-size-mobile: 16px;
  --style-button-height: 56px;
  --style-button-height-mobile: 48px;
  --style-button-slim-height: 52px;
  --style-button-slim-height-mobile: 40px;
  --style-cta-underline-offset: 5px;
  --style-cta-underline-thickness: 1px;

  /* Colors - Primary Button */
  --color-primary-button-text: rgba(255, 255, 255, 1);
  --color-primary-button-background: rgba(28, 37, 57, 1);
  --color-primary-button-border: rgba(32, 40, 45, 1);
  --color-primary-button-icon: rgba(28, 37, 57, 1);
  --color-primary-button-icon-background: rgba(255, 255, 255, 1);

  --color-primary-button-hover-text: rgba(32, 40, 45, 1);
  --color-primary-button-hover-background: rgba(255, 255, 255, 1);
  --color-primary-button-hover-border: rgba(32, 40, 45, 1);
  --color-primary-button-hover-icon: rgba(255, 255, 255, 1);
  --color-primary-button-hover-icon-background: rgba(28, 37, 57, 1);

  /* Colors - Secondary Button */
  --color-secondary-button-text: rgba(32, 40, 45, 1);
  --color-secondary-button-background: rgba(255, 255, 255, 1);
  --color-secondary-button-border: rgba(255, 255, 255, 1);
  --color-secondary-button-icon: rgba(255, 255, 255, 1);
  --color-secondary-button-icon-background: rgba(32, 40, 45, 1);

  --color-secondary-button-hover-text: rgba(255, 255, 255, 1);
  --color-secondary-button-hover-background: rgba(32, 40, 45, 1);
  --color-secondary-button-hover-border: rgba(32, 40, 45, 1);
  --color-secondary-button-hover-icon: rgba(28, 37, 57, 1);
  --color-secondary-button-hover-icon-background: rgba(255, 255, 255, 1);

  /* Colors - Input */
  --color-input-background: rgba(255, 255, 255, 1);
  --color-input-text: rgba(93, 102, 111, 1);
  --color-input-border: rgba(93, 102, 111, 0.2);
  --color-input-hover-background: rgba(255, 255, 255, 1);
  --color-input-hover-text: rgba(93, 102, 111, 1);
  --color-input-hover-border: rgba(93, 102, 111, 0.2);

  /* Borders */
  --style-border-width-buttons-primary: 1px;
  --style-border-width-buttons-secondary: 1px;
  --style-border-radius-buttons-primary: 40px;
  --style-border-radius-buttons-secondary: 40px;

  --style-border-width-inputs: 1px;
  --style-border-radius-inputs: 8px;
  --style-border-width: 1px;

  /* Focus */
  --focus-outline-width: 1px;
  --focus-outline-offset: 3px;

  /* Pagination */
  --style-pagination-border-width: 1px;
  --pagination-item-foreground: rgba(28, 37, 57, 1);
  --pagination-item-background: rgba(242, 242, 242, 1);
  --pagination-item-border: rgba(242, 242, 242, 1);
  --pagination-item-active-foreground: rgba(255, 255, 255, 1);
  --pagination-item-active-background: rgba(28, 37, 57, 1);
  --pagination-item-active-border: rgba(28, 37, 57, 1);

  /* Swiper */
  --swiper-navigation-size: 16px;
  --swiper-navigation-color: rgba(255, 255, 255, 1);
  --swiper-navigation-background-color: transparent;
  --swiper-navsgation-hover-color: rgba(255, 255, 255, 1);
  --swiper-navigation-hover-background-color: rgba(255, 255, 255, 0.15);
  --swiper-pagination-bullet-inactive-color: rgba(242, 242, 242);
  --swiper-pagination-color: rgba(28, 37, 57, 1);
  --swiper-pagination-bullet-inactive-opacity: 1;
}

@media (max-width: 767px) {
  :root {
    --font-h1--size: 48px;
    --font-h2--size: 40px;
    --font-h3--size: 28px;
    --font-h4--size: 20px;
    --font-h5--size: 18px;
  }
}


body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
button,
input,
textarea {
  font-family: var(--font-heading--family);
}



.hero-slider .button:hover {
  background-color: var(--color-primary-button-background);
}


.counter-up {
  position: relative;
  background: url('../img/sep.webp') no-repeat center center;
  padding: 80px 0;
  border: none;
  background-attachment: fixed;
  background-size: cover;
}

.counter-up::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.counter-up>* {
  position: relative;
  z-index: 2;
}


@supports (-webkit-overflow-scrolling: touch) {
  .counter-up {
    background-attachment: scroll;
  }
}


.multicolumn-card .card-arrow {
  margin-top: 20px;
  display: flex;
  /* justify-content: center; */
}


.multicolumn-card .card-arrow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--primary-color, #000);
  font-size: 16px;
  color: var(--primary-color, #000);
  transition: all 0.3s ease;
}

/* Hover effect */
.multicolumn-card:hover .card-arrow i {
  transform: translateY(5px);
  background-color: var(--color-primary-button-text);
  color: var(--color-primary-button-background);
  border-color: var(--color-primary-button-background);
}

.testi-slider {
  background-color: #f6f6f6;
}

.section-contact-form2 {
  background-color: white;
}

.product-grid2 {
  background-color: white;
}

.section-contact-form .contact-form-wrap,
.section-contact-form2 .contact-form-wrap {
  background-color: var(--color-primary-button-background);
}

.form .button:hover {
  background-color: var(--color-primary-button-background);
}

.svg-wrapper rect {
  background-color: var(--color-primary-button-background);
}

.svg-wrapper {
  background-color: var(--color-primary-button-background);
}

.counter-item {
  gap: 15px;
}

.counter-item .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color, #f1f1f1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.counter-item .icon-wrap i {
  font-size: 28px;
  color: var(--primary-color, #000);
  transition: color 0.3s ease;
}

/* Hover animation */
/* .counter-item:hover .icon-wrap {
  background: var(--accent-color, #007bff);
} */

/* .counter-item:hover .icon-wrap i {
  color: #fff;
} */

.counter-up-box {
  background: none;
  border: none;
  color: white;
}

.counter-item h2,
.counter-item .text {
  color: white;
}

.button--secondary .svg-wrapper {
  background-color: var(--color-primary-button-background);
}

/* .button--secondary:hover{
    background-color: var(--color-primary-button-background);
} */

#about .heading {
  font-size: 40px;
}

.about-text {
  font-size: 18px;
  color: var(--color-foreground-subheading);
  line-height: 1.8;
}

.text-lists .text-item {
  line-height: 1.1;
}

.multicolumn .multicolumn-card {
  padding: 36px;
  --color-background: #ececec;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.multicolumn .multicolumn-card:focus,
.multicolumn .multicolumn-card:hover {
  --color-background: rgba(32, 40, 45, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
}

#recent .heading {
  font-size: 35px;
}

.text-image-sticky .image-text-card {
  position: -webkit-sticky;
  position: sticky;
  padding: 60px 40px;
  background-color: var(--color-primary-background-hover);
}

.text-image-sticky .image-text-card {
  --position: calc(var(--header-height) + var(--top, 40px));
  background-color: var(--color-primary-background-hover);
  top: var(--position);
}

.text-image-sticky .image-text-card:nth-child(1) {
  background-color: var(--color-primary-background-hover);
  color: white;

}

.text-image-sticky .image-text-card:nth-child(2) {
  background-color: var(--color-primary-background-hover);
  color: white;

}

.text-image-sticky .image-text-card:nth-child(3) {
  background-color: var(--color-primary-background-hover);
  color: white;

}

.text-image-sticky .image-text-card:nth-child(4) {
  background-color: var(--color-primary-background-hover);
  color: white;

}

.text-image-sticky .image-text-card:nth-child(5) {
  background-color: var(--color-primary-background-hover);
  color: white;

}

.text-image-sticky .image-text-card:nth-child(6) {
  background-color: var(--color-primary-background-hover);
  color: white;

}

.text-image-sticky .image-text-card:nth-child(7) {
  background-color: var(--color-primary-background-hover);
  color: white;

}

.image-text-card {
  color: white;
}

.image-text-card h2,
.image-text-card .text,
.image-text-card .heading1 {
  color: white;
}

.image-text-card .button--primary {
  background-color: white;
  color: #1c2539;
  border-color: white;
}

.image-text-card .button--primary .svg-wrapper {
  background-color: #1c2539;
  color: white;
}

.card-testimonial {
  background-color: white;
}

.banner {
  position: relative;
  background-image: url('../img/contact-us-banner.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  height: 300px;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner .row {
  position: relative;
  align-items: center;
}

.banner .social-icons {
  justify-content: end;
  gap: 20px;
}

.social-icons a {
  color: black;
  background-color: white;
  font-size: 1.5rem;
  border: 1px solid white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: var(--color-primary-button-background);
}

.social-icons a:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: auto;
    padding: 60px 20px;
  }

  .social-icons {
    margin-top: 20px;
  }
}

footer .card-icon-text .svg-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-button-background);
}

footer .card-icon-text .svg-wrapper svg {
  width: 70%;
  height: 70%;
  border-radius: 50%;
}

footer .card-icon-text .svg-wrapper svg rect {
  fill: var(--color-primary-button-background);
}



.icon-quote svg {
  width: 35px;
  height: 35px;
}

.header-1 .button--secondary:focus,
.header-1 .button--secondary:hover {
  background-color: white;
  color: var(--color-primary-button-background);
}

.header-1 .button--secondary:focus .svg-wrapper,
.header-1 .button--secondary:hover .svg-wrapper {
  color: white;
  background-color: var(--color-primary-button-background);
}

.svg-wrapper {
  background: none;
}

#about .media-wrap img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50px;
}

.slider-content {
  margin-top: 50px;
}

@media (max-width: 569px) {
  .banner .social-icons {
    justify-content: center;
  }

  .banner .row {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .svg-wrapper {
    background: none;
  }

  #about .media-wrap img {
    height: 400px;
  }

  .header-logo {
    max-width: 150px;
  }

  .slider-content .heading {
    font-size: 30px;
  }

  .hero-slider {
    height: 100vh;
  }

  .section-padding {
    padding: 80px 0;
  }

  #about .image-text .content {
    padding: 0;
  }

  #about .media-wrap {
    padding: 50px 0 0;
  }

  .banner .social-icons {
    justify-content: center;
  }

  .col-contact-form {
    padding-top: 20px;
  }

  .content.section-headings {
    padding: 0;
  }

  .hero-slider .subheading span {
    line-height: 1.2;
  }

  footer .card-icon-text .svg-wrapper {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 991px) {
  .header-nav {
    background-color: var(--color-primary-button-background);
  }

  .header-menu>.nav-item .menu-link-main {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }

  .header-menu>.nav-item .menu-link-main,
  .header-nav-headings .svg-wrapper {
    color: white;
  }
}