*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    
}

body{
    background-color: #F4F4F4;
    font-size: 18px;
    line-height: 24px;
    font-family: 'SF-Pro-Display', sans-serif;
}

a{
    text-decoration: none;
}

button{
    border: none;
    outline: none;
    background-color: transparent;
}


@font-face {
  font-family: 'SF-Pro-Display';
  src: url('../fonts/SF-Pro-Display-Regular.otf') format('otf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF-Pro-Display';
  src: url('../fonts/SF-Pro-Display-Medium.otf') format('otf');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF-Pro-Display';
  src: url('../fonts/SF-Pro-Display-Semibold.otf') format('otf');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF-Pro-Display';
  src: url('../fonts/SF-Pro-Display-Bold.otf') format('otf');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.d-flex{
    display: flex;
}
.g-30{
    gap: 30px;
}
.g-15{
    gap: 15px;
}
.g-10{
    gap: 10px;
}

.jc-sb{
    justify-content: space-between;
}
.jc-c{
    justify-content: center;
}

.al-c{
    align-items: center;
}
h1{
    font-size: 40px;
    line-height: 44px;
    font-weight: 700;
    height: 132px;
    span{
          font-size: 40px;
            line-height: 44px;
            font-weight: 700;
    }
}
h2{
    font-weight: 700;
}
img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.font-12{
    font-size: 12px;
    line-height: 16px;
}
.font-14, .font-14 span{
    font-size: 14px;
    line-height: 18px;
}
.font-18, .font-18 span{
    font-size: 18px;
    line-height: 24px;
}

.font-20 , .font-20 span{
    font-size: 20px;
    line-height: 28px;
}
.font-24, .font-124 span {
    font-size: 24px;
    line-height: 30px;
}
.font-32, .font-32 span,
h2, h2 span{
    font-size: 32px;
    line-height: 38px;
}
.font-700{
    font-weight: 700;
}
.font-600{
    font-weight: 600;
}
.font-500{
    font-weight: 500;
}
.font-green{
    color: #0D9918;
}
.font-gray{
    color: #6E6E73;
}
.font-undline{
    text-decoration: underline;
}
.back-green{
    background-color: #0D9918;
    color: white;
}
.back-white{
    background-color: white;
}
.back-lgreen{
    background-color: #DEECDF;
}
.border-green{
    border: 1px solid #0D9918;
}
.border-r16{
    border-radius: 16px;
}
.border-r24{
    border-radius: 24px;
}
.border-r32{
    border-radius: 32px;
}
.border-r123{
    border-radius: 123px;
}
.mt-100{
    margin-top: 100px;
}
.mt-60{
    margin-top: 60px;
}
.mt-50{
    margin-top: 50px;
}
.mt-30{
    margin-top: 30px;
}
.mt-20{
    margin-top: 20px;
}
.mt-15{
    margin-top: 15px;
}
.mt-10{
    margin-top: 10px;
}

.pad-30{
    padding: 30px;
}
.pad-15{
    padding: 15px;
}
.pad-10{
    padding: 10px;
}
.pad-4-8{
    padding: 4px 8px;
}
.pad-tb-50{
    padding: 50px 15px
}
:where(.container){
    padding: 0 15px;
}
header{
    display: flex;
    padding: 15px;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    height: 70px;
    z-index: 5;
    box-shadow: 0px 4px 16px 0px #3230701A;
    transition: top ease-in-out .5s;
}
header.hidden{
    top: -70px;
}
.menu{
    position: fixed;
    top: 70px;
    left: 100%;
    width: 100%;
    background-color: white;
    z-index: 5;
    height: 100%;
    transition: left ease-in-out .5s;
    a{
        color: black
    }
    span{ color: white;}
}

.menu.active{
    left: 0;
}
:where(.btn){
  display: block;
}
.btn{
    padding: 17px 15px;
    border-radius: 123123px;
    width: 100%;
    text-align: center;
  
}

.menu-btn{
    display: flex;
    gap: 8px;
}

.burger {
  width: 24px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #0D9918;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}



.burger span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.burger span:nth-child(2) {
  top: 9px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.burger span:nth-child(3) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.burger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 0px;
}

.burger.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.burger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 17px;
  left: 0px;    
}

main{
    /* padding-top: 70px */
}
:where(.hero *){
    color: white
}
.hero{
    background-color: black;
    padding-bottom: 50px;
}
.hero li:not(:first-child){
    margin-top: 8px;
}
.hero ul{
    padding-left: 18px;
}
.caret{
    animation: infinite .7s hideCaret;
}

@keyframes hideCaret {

    50%{
        opacity: 0;
    }
}
.ell, #ai {
	fill: none;
    
}

.tarif{
    margin-right: -15px;
}
.discount{
    padding: 8px 12px;
    border-radius: 123px;
}

.price-old{
    color: #6E6E73;
    text-decoration: line-through;
}

.tags{
    margin-right: -15px;
    padding-right: 15px;
    overflow-x: scroll;
    padding-bottom: 10px;
    div{
        white-space: nowrap;
        padding: 8px 12px;
        border-radius: 8px;
    }
}

::-webkit-scrollbar {
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #DEECDF; 
  border-radius: 123px
}
::-webkit-scrollbar-thumb {
  background: #0D9918; 
    border-radius: 123px
}

.labels .swiper-slide{
    /* min-width: 200px;
    max-width: 200px; */
    height: 100px;
    display: grid;
    place-items: center;
    background-color: white;
    /* position: relative; */
     /* &::after {
        content: "";
        position: absolute;
        top: -8px;
        right: 30px;
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='16' height='16' rx='8' fill='%230D9918'/%3E%3Cpath d='M10.9402 5.01562L6.86414 8.79706L5.14031 6.95745L4 8.026L6.78491 10.998L12 6.16437L10.9402 5.01562Z' fill='white'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
  } */
}

.quest{
    overflow: hidden;
    transition: max-height ease-in-out .5s;
    padding: 20px;
}
.quest button{
    flex: 1 1 100%;
    max-width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 82px;
    border: 1.33px #C9C9C9 solid;
    background-color: white;
    transition: all ease-in-out .5s;
    svg{
        transition: transform ease-in-out .5s;
    }
    path{
        transition: fill ease-in-out .5s;
    }
}

.quest.active button{
    background-color: #0D9918;
    border: 1.33px #0D9918 solid;
    svg{
        transform: rotate(180deg);
    }

    path{
        fill: #FFFFFF;
    }
}

footer p{ text-align: center;}
footer p:first-child{margin-bottom: 5px;}



.tags {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* скрыть скролл в Firefox */
}
.tags::-webkit-scrollbar {
  display: none; /* скрыть скролл в Chrome */
}

.tab {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.tab.back-lgreen {
  background: #c3ffc3; /* активная кнопка */
}