@font-face {
  font-family: "TahomaCustom";
  src: url("../fonts/tahoma.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root{
    --blue: #0066b1;
    --bg: #f6f6f6;

}
* {
  font-family: "TahomaCustom", Arial, sans-serif !important;
}
body{
  background-color: #16171a
}
html{
  scroll-behavior: smooth;
}
 #menu_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.501);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 998;
}
#open_menu{
  display: none;
}
#menu_overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile__menu.is-open {
  transform: translateX(0);
}

#close_menu {
  align-self: flex-end;
  cursor: pointer;
   opacity: .6;
  transition: .3s;
}


#close_menu:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.mobile__menu .header__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile__menu .menu__link {
  display: flex;
  padding: 16px 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2px;
  border-radius: 10px;
  background: #f5f6f8;
}


.mobile__menu .menu__link:hover {
  color: var(--blue) !important;
}


.mobile__menu .mobile-phone a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.mobile__menu .social__icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile__menu .social__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile__menu .social__icons img,
.mobile__menu .social__icons svg {
  width: 28px;
  height: 28px;
}

.mobile__menu .telegram__business {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}


.mobile__menu .header__bottom-right a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.mobile__menu .header__bottom-right svg {
  width: 18px;
  height: 18px;
}

.mobile__menu .modalBtn {
  padding: 12px;
  border: 1px solid var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: .3s;
}

.mobile__menu .modalBtn:hover {
  background: var(--blue);
  color: #fff !important;
}
 #about,
  #reviews,
  #advantages,
  #contact,
  #faq,
  #services{
      scroll-margin-top: 200px; 
  }
.btn-open-modal {
  padding: 12px 26px;
  border: 1px solid #333;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.btn-open-modal:hover {
  background: #333;
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}
.modal-form button{
  border: 1px solid #333;
  background-color: var(--blue);
  color: #fff;
  width: 100%;
}
.custom-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 100%;
  max-width: 520px;
  padding: 40px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}

.custom-modal.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Text */
.modal-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.modal-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5e5e5e;
  margin-bottom: 28px;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.2);
  background: #fff;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

textarea {
  resize: none;
}

/* Action */
.modal-action {
  margin-top: 10px;
  padding: 14px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}
.modal-action:hover {
  background-color: #fff;
  border-color: var(--blue);
  color: var(--blue);
}



/* Close */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.modal-close:hover {
  color: var(--blue);
}
section{
    padding: 50px 0
}
.section__title{
    margin-bottom: 40px;
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    color: #fff
}
.container{
    max-width: 1400px;
    padding: 0 20px;
    margin: auto;
}
a{
    text-decoration: none;
    color: #333
}
header{
    background-color: #fff;
    position: fixed;
    width: 100%;
    margin: auto;
    z-index: 2;
    transition: all 300ms ease;
}
header.scrolled{
     position: fixed;
    box-shadow: 10px -6px 15px black;
    transition: all 0.4s ease;
    animation: smoothScroll 1s;
    border-top: none;
    z-index: 222;
}
nav{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}
.logo__img{
    width: 200px;
}
.logo__img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
nav svg{
    width: 18px;
    height: 18px;
}
.menu__items{
    display: flex;
    gap: 20px;
    align-items: center
}
.menu__items a, .menu__link{
    font-size: 14px;
    text-transform: uppercase;
    transition: .4s ease;
}
.menu__items a:hover{
    color: var(--blue)
}

.social__icons{
    display: flex;
    align-items: center;
    gap: 15px;
}
.social__icons a{
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    color: var(--blue)
}
.social__icons a:last-child{
    margin-left: 10px;
}
.header__bottom{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
}
.header__bottom a{
    transition: .4s ease;
}
.header__bottom a:hover{
    color: var(--blue)
}
.header__bottom-right{
    display: flex;
    gap: 30px;
    align-items: center
}
.header__bottom-right a{
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .4s ease;
}

.header__bottom-right svg{
    width: 18px;
    height: 18px;
}
#hero {
  width: 100%;
  overflow: hidden;
}

.hero__slider {
  position: relative;
}

.hero__slide {
  width: 100%;
  height: calc(100vh - 60px);
  display: flex;
  align-items: center;         
  justify-content: flex-start;         
  position: relative;
  overflow: hidden;

}
.hero__slide::after{
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.50);
    width: 100%;
    height: 100%;
    z-index: 2;
}
.hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__controls {
    position: absolute;
    left: 40px;
    bottom: 40px;
    display: flex;
    align-items: center;
    z-index: 5;
    color: #fff;
    background-color: black;
    width: 157px;
    border-radius: 5px;
    padding: 20px 0px;
}

.hero__arrow {
  background: transparent;
  cursor: pointer;
  border: none
}
.hero__content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 60%;
    padding-left: 40px;
    color: #fff;
    position: relative;
    z-index: 3;   
}
.hero__content h2{
    font-size: 40px;
    font-weight: bold;
    line-height: 48px;
}
.hero__content p{
    font-size: 20px;
    line-height: 25px;
}
.main__button{
    background-color: #fff;
    color: #333;
    width: max-content;
    padding: 15px 70px;
    font-size: 16px;
    font-weight: bold;
}
.hero__arrow svg {
  width: 23px;
  height: 23px;
  opacity: .7;
  transition: .3 ease;
}
.hero__arrow svg:hover{
    opacity: 1;
}
.hero__prev svg{
    transform: rotate(-180deg);
}
.hero__counter {
  font-size: 20px;
  min-width: 80px;
  text-align: center;
}

.hero__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.25);
  z-index: 5;
  overflow: hidden;
}

.hero__progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
}
#about .container{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-direction: column;
     position: relative;
}
#about .section__title{
    border-bottom: 2px solid #fff;
    padding-bottom: 40px;
}
.about__texts{
    width: 40%;

}
.about__texts p{
    line-height: 24px;
    font-size: 16px;
    color: #fff
}
.second__button{
    background: var(--blue);
    padding: 16px 20px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
    font-weight: 700;
    text-align: center;
    color: #fff;
    width: fit-content;
    letter-spacing: 1px;
}
.second__button:hover{
    background: #0066b1c7
}
.second__button:hover svg{
    transform: translateX(10px);
}
.second__button svg{
    margin-left: 8px;
    transition: .3s ease;
}

.about__img{
    max-width: 750px;
    width: 59%;
    position: absolute;
    top: 0;
    right: 0;
    height: 90%;
    z-index: -1;
}
.about__img img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.about__card{
    display: flex;
    align-items: flex-start;
}
.about__contact{
    margin-right: 44px;
    padding-bottom: 40px ;
    border-bottom: 2px solid #fff;
    width: 220px;
}
.about__card-text{
    padding: 60px;
    max-width: 1000px;
    background-color: #F0F2F3;
}
.about__card-text h4{
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--blue);
    font-size: 26px;
    line-height: 30px;
}
.about__card-text h3{
    font-size: 36px;
    line-height: 47px;
    font-weight: 600;
}
#advantages{
    position: relative;
}
#advantages .section__title{
    margin-bottom: 80px;
}
.advantages__content{
    display: grid;
    gap: 60px;
    grid-template-columns: 35% 1fr;
    position: relative;
}
.advantages__imgs{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.advantages__imgs img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.advantages__img-box{
  position: relative;
  height: 100%;
}

.advantages__img-box:last-child::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 8px;
  background-color: var(--blue);
}
.advantages__cards{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.advantages__card{
    color: #666666;
    line-height: 24px;
    width: 80%;
}
.advantages__card p{
    color: #666666;
    line-height: 24px;
    border-bottom: 1px solid #000000;
    padding-bottom: 18px;
    min-height: 163px;
}
#advantages::after{
  content: "";
  position: absolute;
  top: 140px;
  right: 0;
  width: 100%;
  height: 80%;
  background-image: url("../img/advantagesbg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}
.advantages__num{
  display: block;
  font-size: 42px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  line-height: 1;
}
.faq-logo {
    max-width: 90%;
    object-fit: contain;
    height: 100%;
}

.faq-hidden {
   max-height: 0;
   height: 0;
}

.link,.resources .f66 {
    position: relative
}

.explore-btn:hover::before {
    left: 0;
    transform: scale(1.5)
}

.resources-item,.service-btn {
    color: #000;
    text-decoration: none
}


.flex {
    display: flex;
    gap: 30px;
}

.resources .f33 {
    padding-right: .75rem
}

.f33 {
    flex: 1 1 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
    position: sticky;
    top: 160px;
    height: 100%;
}

.resources-desc {
    padding: 40px;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    background-color: #000000;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff
}

.resources-desc .desc {
    margin-block:20px;
    letter-spacing: -.72px;
}

.faq-right {
  /*max-height: 350px;*/
  overflow-y: auto;
  padding: 0 30px 0 0;
}

.faq-item {
  transition: all 0.4s ease;
  overflow: hidden;
  margin-bottom: 20px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  border-radius: 8px;
  background: #000000;
}

.faq-header h3 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;

  margin: 0;
  transition: color 0.3s ease;
}

.faq-arrow {
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 0 24px;
  transform: translateY(-5px);
  transition: all 0.6s ease;
}

.faq-content p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  padding: 18px 0;
}



.faq-item.active .faq-header h3 {
  color: var(--blue);
  /* question turns red */
}

.faq-item.active .faq-content {
  max-height: 100%;
  opacity: 1;
  transform: translateY(0);
  background: #000000;
  color: #fff
  /* only answer is white */
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

/* Hover animation */
.faq-item:hover .faq-arrow {
  transform: rotate(45deg);
}

.faq-header:hover h3 {
  color: var(--blue);
}

.f66 {
    flex: 1 1 66.66666%;
    width: 66.66666%
}

#faq .btn-default-yellow{
    width: fit-content;
    margin: auto;
    color: #333;
    font-weight: bold;
}
#reviews .swiper-wrapper{
    padding: 10px;
}
.review-slide{
    padding: 24px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-height: 300px;
    background-color: #F0F2F3
}
.review-top{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}
.review-top img{
    width:40px;
    height: 40px;
}
.review-top h3{
    color: #000000;
    font-weight: 600;
    line-height: 24px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
}
.review-slide>p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    color: #989898;
}
.review-top span{
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.1px;
    color: #989898;
}
.testimonial-card {
  background: #fff;
  padding: 30px;
  border: 1px solid #d5d8dc;
  text-align: left;
  margin: auto;
  height: auto;
}
.main-page__section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 20px;
}
.main-page__section-grid .product-card {
  display: block;
  height: 22.5rem;
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.xfieldimagegallery.gallery-product{
    display: none;
}
.product-card{
  position: relative;
  height: 100%;
  overflow: hidden;
}

.product-card__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-card__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.674) 0%,
    rgba(0, 0, 0, 0.574) 40%,
    rgba(0,0,0,0.65) 100%
  );
  transition: opacity 0.4s ease;
}
.product-card:hover .product-card__bg::after{
  opacity: 0.85;
}

.product-card__container{
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 2.5rem;
  background: transparent;
}

.product-card__column{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-card__button{
  display: flex;
  align-items: center;
}

.product-card__bot{
  position: relative;
}

.product-card__content{
  transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.35s;
}

.product-card:hover .product-card__content{
  transform: translateY(-10px);
  opacity: 0;
  transition-delay: 0s;
}

.product-card__hidden{
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.product-card:hover .product-card__hidden{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.product-card__title{
  margin-bottom: 1rem;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.product-card__text,
.product-card__caption{
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 500;
  max-width: 32rem;
}

.product-card__content .product-card__text{
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card .product-card__title,
.product-card .product-card__text,
.product-card .product-card__caption,
.product-card .word-span,
.product-card .word-span span{
  color: #fff !important;
}

.product-card__button-svg{
  width: 1.875rem;
  height: 1.875rem;
}

.product-card__button-svg path{
  fill: #fff;
  transition: 0.4s ease;
}

.product-card:hover .product-card__button-svg path{
  fill: #fff;
}
.contact-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.mobile__contact{
    display: none;
}
.contact-card {
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.contact-card.dark {
  background: linear-gradient(135deg, #333, #000000cc);
}

.contact-card.green {
  background: linear-gradient(135deg, var(--blue),#000000c2);
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-value {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #ffffff4a;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.contact-note {
  font-size: 13px;
  opacity: 0.8;
}

.contact-link {
  font-size: 14px;
  color: #b5ffeb;
}

.contact-bottom {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 20px;
}

.contact-form {
  background: #000000;
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  border: none;
  background: var(--bg);
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.policy {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #fff;
}

.btn-green {
  margin-top: 10px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
}

.btn-green svg {
  background: #fff;
  color: var(--blue);
  width: 35px;
  height: 35px;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  transition: 0.4s ease;
}
.btn-green:hover svg {
  transform: rotate(0deg);
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  height: 400px;
}

footer {
  background: #f6f6f6;
}
.footer_head {
  padding-top: 30px; /* pt-[30px] */
  display: flex;
  flex-direction: column; /* flex-col */
  gap: 14px; /* gap-y-[14px] */
  align-items: flex-start; /* items-center */
}
.footer_head_one {
  position: relative; /* relative */
  flex-shrink: 0; /* flex-shrink-0 */
  order: 1; /* order-1 */
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}
.footer_head_one a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.footer_head_one span {
  font-size: 12.6px;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #22212a;
  white-space: nowrap;
}
.footer_head_one img {
       width: 210px;
    height: auto;
    flex-shrink: 0;
    margin-bottom: 20px;
}
.footer_head_two {
  display: flex;
  justify-content: start; /* justify-center */
  align-items: center; /* items-center */
  max-width: 100%; /* max-w-full */
  width: 100%; /* w-full */
  flex-shrink: 0; /* flex-shrink-0 */
  order: 4; /* order-4 */
}
.footer_head_two span.icon {
  display: block;
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  min-width: 0.5rem;
  min-height: 0.5rem;
  background: var(--blue);
}
.footer_head_two article {
  font-size: 12px; /* text-[12px] */
  line-height: 1.5; /* leading-[1.5] */
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  font-weight: 500; /* font-medium */
  color: #22212a; /* text-[#22212A] */
  margin-left: 7px; /* ml-[10px] */
  margin-right: 7px; /* mr-[14px] */
}
.footer_head_two article b {
  font-weight: 700;
}
.footer_head_two ul {
  display: flex;
  column-gap: 5px;
  align-items: flex-start;
}
.footer_head_two ul li a {
  display: block;
  width: fit-content;
  height: fit-content;
}
.footer_head_two ul li a img {
  width: 26px;
  height: 26px;
}
.footer_head_three {
  display: flex;
  flex-direction: column; /* flex-col */
  align-items: flex-start; /* items-center */
  justify-content: center; /* justify-center */
  width: 100%; /* w-full */
  flex-shrink: 0; /* flex-shrink-0 */
  gap: 0.25rem; /* space-y-1 */
  order: 2; /* order-2 */
}
.footer_head_three a.tel {
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  font-weight: bold; /* font-bold */
  font-size: 1rem; /* text-base */
  color: #22212a; /* text-[#22212A] */
  line-height: 1.5rem; /* xl:leading-[22px] */
}
.footer_head_three a.email {
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  font-weight: 500; /* font-medium */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.375rem; /* leading-[22px] */
  color: #999999; /* text-[#999999] */
  text-align: left; /* text-start */
}
.footer_head_four {
  display: block; /* lg:block */
  max-width: 100%; /* max-w-full */
  width: 100%; /* w-full */
  flex-shrink: 0; /* flex-shrink-0 */
  order: 3; /* order-3 */
}
.modalBtn {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100% !important ; /* w-full */
  height: 49px !important ; /* h-[49px] */
  background-color: transparent; /* bg-transparent */
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  font-weight: 600; /* font-semibold */
  font-size: 0.875rem; /* text-sm */
  line-height: 17px; /* leading-[17px] */
  color: var(--green); /* text-[#731982] */
  border: 2px solid var(--blue); /* border-2 border-[#731982] */
  transition: background-color 0.3s ease, color 0.3s ease; /* transition-custom */
  cursor: pointer;
}
 .modalBtn:hover {
  background-color: var(--blue); /* hover:bg-[#731982] */
  color: white; /* hover:text-white */
}

.footer_center {
  padding-top: 30px; /* py-[30px] */
  padding-bottom: 30px; /* py-[30px] */
  display: flex;
  align-items: flex-start; /* items-start */
  justify-content: space-between; /* justify-between */
  flex-direction: column; /* flex-col */
  gap: 30px; /* gap-y-[30px] */
}
.footer_center h3 {
  font-size: 0.875rem; /* text-sm */
  line-height: 17px; /* leading-[17px] */
  color: #22212a; /* text-[#22212A] */
  font-weight: bold; /* font-bold */
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  margin-bottom: 17px; /* mb-[17px] */
}
.footer_center_one {
  max-width: 250px; /* max-w-[250px] */
  width: 100%; /* w-full */
  flex-shrink: 0; /* flex-shrink-0 */
  order: 3; /* order-3 */
  margin-right: auto; /* mx-auto */
}
.footer_center_one h3 {
  text-align: left;
}
.footer_center_one ul {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
.footer_center_one ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px; /* gap-x-2.5 */
  font-size: 0.875rem; /* text-sm */
  line-height: 17px; /* leading-[17px] */
  color: #22212a; /* text-[#22212A] */
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  font-weight: 500; /* font-medium */
}

.footer_center_two {
  max-width: 200px; /* max-w-[200px] */
  width: 100%; /* w-full */
  flex-shrink: 0; /* flex-shrink-0 */
  margin-right: auto; /* mx-auto */
}
.footer_center_two ul {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
.footer_center_two ul li a {
  font-size: 0.875rem; /* text-sm */
  line-height: 17px; /* leading-[17px] */
  color: #22212a; /* text-[#22212A] */
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  font-weight: 500; /* font-medium */
  transition: all 0.3s ease; /* transition-custom */
}
.footer_center_two ul li a:hover {
  color: var(--blue); /* hover:text-[#59DF3F] */
}

.footer_center_three {
  max-width: 188px; /* max-w-[188px] */
  width: 100%; /* w-full */
  flex-shrink: 0; /* flex-shrink-0 */
  position: relative; /* relative */
  height: 100%; /* h-full */
  order: 2;
}
.footer_center_three .hour {
  display: flex; /* flex */
  align-items: flex-start; /* items-center */
  gap: 2.5px; /* gap-x-2.5 */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.0625rem; /* leading-[17px] */
  color: #22212a; /* text-[#22212A] */
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  font-weight: 500; /* font-medium */
}
.footer_center_three_addition {
  margin-top: 100px;
  display: none;
}

.footer_center_three_addition article {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}
.footer_center_three_addition article ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2px;
  gap: 6px;
}
.footer_center_three_addition article ul li svg {
  width: 18px;
  height: 18px;
}
.footer_center_three_addition article p {
  font-size: 12px;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  color: #22212a; /* text-[#22212A] */
  font-weight: 500; /* font-medium */
}

.footer_center_three_addition article p b {
  color: #000;
  font-weight: bold;
}
.footer_center_four {
  display: block; /* lg:block */
  max-width: 100%; /* max-w-full */
  width: 100%; /* w-full */
  flex-shrink: 0; /* flex-shrink-0 */
  order: 4; /* order-4 */
}
.footer_center_four ul {
  display: flex;
  align-items: flex-start; /* items-center */
  gap: 10px; /* gap-x-2.5 */
  justify-content: start; /* justify-center */
}
.footer_center_four ul li {
  width: 67px; /* w-[67px] */
  height: 36px; /* h-[36px] */
  background-color: white; /* bg-white */
  display: flex; /* flex */
  align-items: center; /* items-center */
  justify-content: center; /* justify-center */
}
form a{
    width: 100%;
}
.footer_center_fifth {
  display: flex; /* flex */
  width: 100%; /* w-full */
  justify-content: start; /* justify-center */
  align-items: center; /* items-center */
  gap: 0.5rem; /* gap-x-2 */
  order: 5; /* order-5 */
}

.footer_center_fifth a {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}
.footer_center_fifth a ul {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  column-gap: 2px;
}
.footer_center_fifth a ul li svg {
  width: 18px;
  height: 18px;
}
.footer_center_fifth a p {
  font-size: 12px;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  color: #22212a;
  font-weight: 500;
}
.footer_center_fifth a p b {
  font-weight: bold;
}
.footer_center_six {
  width: 100%; /* w-full */
  display: flex; /* flex */
  justify-content: start; /* justify-center */
  order: 6; /* order-6 */
}
.footer_center_six span {
  max-width: 141px; /* max-w-[141px] */
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  font-size: 0.875rem; /* text-sm */
  line-height: 17px; /* leading-[17px] */
  color: #999999; /* text-[#999999] */
  font-weight: 500; /* font-medium */
}
/* footer bottom */


@media (min-width: 640px) {
  .footer_head_three {
    justify-content: flex-start; /* sm:justify-normal */
  }
  .footer_head_four {
    max-width: 256px; /* sm:max-w-[256px] */
  }
  .footer_center_one {
    max-width: 196px; /* sm:max-w-[196px] */
  }
}
@media (min-width: 1024px) {
  .footer_head {
    flex-direction: row; /* lg:flex-row */
    justify-content: space-between; /* lg:justify-between */
  }
  .footer_head_two {
    justify-content: space-between; /* lg:justify-normal */
    max-width: 200px; /* lg:max-w-[200px] */
    order: 2; /* lg:order-2 */
  }
  .footer_head_three {
    order: 3; /* lg:order-3 */
    max-width: 188px; /* sm:max-w-[188px] */
  }
  .footer_head_four {
    order: 4; /* lg:order-4 */
  }
  .footer_center {
    padding-top: 27px; /* lg:py-[27px] */
    padding-bottom: 27px; /* lg:py-[27px] */
    flex-direction: row; /* lg:flex-row */
  }
  .footer_center_one {
    order: 1; /* lg:order-1 */
    margin: 0;
  }
  .footer_center_one h3 {
    text-align: start; /* lg:text-start */
  }
  .footer_center_two {
    max-width: 200px; /* xl:max-w-[218px] */
    text-align: left; /* lg:text-start */
    margin: 0;
    order: 2;
  }
  .footer_center_three {
    text-align: start; /* lg:text-start */
    margin: 0; /* lg:mx-0 */
    order: 3; /* lg:order-3 */
  }
  .footer_center_three_addition {
    display: flex;
    align-items: center;
    column-gap: 8px;
  }
  .footer_center_four {
    text-align: start; /* lg:text-start */
    max-width: 256px; /* lg:max-w-[256px] */
  }
  .footer_center_four ul {
    justify-content: normal;
  }
  .footer_center_fifth {
    display: none;
  }
  .footer_center_six {
    display: none; /* lg:hidden */
  }
}

@media(max-width: 1200px){
  .social__icons {
    gap: 5px;
  }
  .menu__items a {
    font-size: 13px;
  }
  .logo__img {
    width: 156px;
}
.advantages__card p {
    min-height: 234px;
}
.advantages__cards{
  row-gap: 20px;
}
.menu__items {
    gap: 15px;
}
.about__card-text h3 {
    font-size: 30px;
    line-height: 39px;
    font-weight: 600;
}
.about__card-text {
    padding: 40px;
    max-width: 1000px;
    background-color: #F0F2F3;
}
.product-card__text, .product-card__caption {
  font-size: 16px;
}
.faq-header h3 {
    font-size: 17px;
  }
  .faq-content {
    font-size: 16px;
  }
  .desc{
    font-size: 16px;
  }
  .second__button{
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .contact-top {

  grid-template-columns: repeat(2, 1fr);
  
}
   .f33 {
    width: 100%;
    max-width: 100%;
  }
  .f66 {
    width: 100%;
    max-width: 100%;
  }
  .about__img {
    max-width: 750px;
    width: 54%;
    position: absolute;
    top: 0;
    right: 0;
    height: 90%;
    z-index: -1;
}
.advantages__content {
  gap: 40px;
}
    .about__card-text h3 {
        font-size: 25px;
        line-height: 30px;
        font-weight: 600;
    }
    .about__texts {
    width: 43%;
}

.contact-top{
  gap: 15px;
}
.contact-bottom {
    display: grid;
    grid-template-columns: 36% 1fr;
    gap: 20px;
}
.contact-form {
  padding: 15px;
}
.btn-green {
  width: 100%;
}

#open_menu{
    display: block;
  }
  .menu__items{
    display: none;
  }
  .social__icons{
    display: none;
  }
      .logo__img {
        width: 180px;
    }
   .hero__content{
    max-width: 80%;
   }
   .hero__content p {
    font-size: 16px;
    line-height: 21px;
}
.hero__content h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 27px;
}
.main__button {
    background-color: #fff;
    color: #333;
    width: fit-content;
    padding: 10px 50px;
    font-size: 16px;
    font-weight: bold;
}
.hero__counter {
    font-size: 16px;
    min-width: 60px;
    text-align: center;
}
.hero__controls {
    width: inherit;
    padding: 13px 5px;
}

.product-card__container {
  padding: 20px;
}
.flex{
    gap: 0;
  }
  .resources-desc {
    padding: 25px;
  }
  .faq-content p{
    font-size: 16px;
  }
}

@media (max-width: 768px) {
    .container{
        padding: 0 10px;
    }
  .custom-modal {
    max-width: 320px;
    padding: 25px;
  }
  .mobile__contact{
      display: flex;
      width: 100%;
      background: linear-gradient(135deg, var(--blue), #000000c2);
      text-align: center;
      align-items: center;
      justify-content: center;
  }
  .hero__content{
    padding: 0 10px;
    max-width: 100%;
  }
  .flex{
    flex-direction: column-reverse;
    gap: 20px;
  }
  .faq-logo {
    width: 350px;
    object-fit: contain;
    height: 100%;
}
.resources-desc {
    padding: 40px;
  }
  
  .advantages__content{
    grid-template-columns: 1fr;
  }
  .advantages__img-box:first-child{
    display: none;
  }
  .advantages__cards{
    grid-template-columns: 1fr;
  }
  .advantages__card p{
    min-height: inherit;
  }
  #advantages::after {
    height: 90%;
  }
  .faq-header h3 {
    font-size: 14px;
    line-height: 19px;
  }
  .faq-right {
    padding: 0 10px 0 0;
  }
  .faq-content p {
    font-size: 14px;
  }
.section__title {
    font-size: 29px !important;
  line-height: 35px; }
  .container{
    padding: 0 10px;
  }
  .contact-top,.contact-bottom{
    grid-template-columns: 1fr;

  }
  .btn-green{
    gap: 10px;
    width: max-content;
  }
      .about__texts {
        width: 100%;
    }
    .about__card {
    flex-direction: column-reverse;
    gap: 15px;
}
#about .container {
  gap: 20px;
}
.about__card-text {
        padding: 25px;
        max-width: 1000px;
        background-color: #F0F2F3;
    }
        .about__card-text h3 {
        font-size: 18px;
        line-height: 25px;
        font-weight: 600;
    }
    section {
    padding: 40px 0;
}
.about__img{
  position: relative;
}
.about__img {
    max-width: 750px;
    width: 100%;
    top: 0;
    right: 0;
    height: 250px;
    z-index: -1;
}
.main-page__section-grid{
  grid-template-columns: 1fr;
}
.product-card__container {
  padding: 17px;
}
.product-card__title {
    margin-bottom: 1rem;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}
}