@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Montserrat: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,800;1,900&display=swap');

*, *::before, *::after{
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    
    font-family: 'Montserrat';
    scroll-behavior: smooth;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

body._hidden{
    overflow: hidden;
}

a{
    text-decoration: none;
    cursor: pointer;
}

ul{
    padding: 0;
    margin: 0;
}

li{
    list-style-type: none;
}

img{
    display: block;
    max-width: 100%;
}

textarea{
    height: auto;
    resize: none;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}

.section-title{
    margin-bottom: 55px;
}

.section-title h2{
    color: #A1DB4C;
    text-align: center;
    font-size: 40px;
    line-height: 42px;
    font-family: 'Inter';
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-align: center;
}

@media (min-width: 992px){
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px){
    .container {
        width: 1170px;
    }
}

@media (min-width: 1400px){
    .container {
        width: 1280px;
    }
}

/*section{
    padding: 70px 0px;
    border-top: 1px solid #A1DB4C;
}*/

.section-main{
    padding: 70px 0px;
    border-top: 1px solid #A1DB4C;
}

/*Header*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background 0.4s ease, top 0.4s ease, border-bottom 0.4s ease;
    z-index: 2000;
}

header.scroll{
    background: white;
    top: -44px;
    border-bottom: 1px solid #A1DB4C;
}

.header-top{
    padding: 12px 0px;
    background: #F5F5F5;
}

.header-top-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-contacts{
    display: flex;
    align-items: center;
}

.header-contacts a{
    display: flex;
    align-items: center;
    color: #000;
    font-size: 16px;
    margin-right: 30px;
}

.header-contacts a svg{
    margin-right: 5px;
}

.header-bottom-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
}

.header__logo{
    cursor: pointer;
}

.header__logo img{
    height: 46px;
}

.header__links{
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__links ul{
    border-radius: 15px;
    background: #A1DB4C;
    padding: 15px 13px;
    width: fit-content;
}

.header__links ul{
    display: flex;
    align-items: center;
}

.header__links ul li{
    margin: 0px 26.5px;
}

.header__links ul li:first-child{
    margin-left: 0;
}

.header__links ul li a{
    position: relative;
    color: #FCFFFC ;
    font-size: 18px;
    font-family: 'Inter';
    font-weight: 400;
}

.header__links ul li a::after{
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.header__links ul li a:hover::after{
    opacity: 1;
}

.header__links ul li:last-child{
    margin-right: 0px;
}

.header__user{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header__user a{
    display: flex;
    align-items: center;
    color: #000;
}

.header__user a img{
    margin-left: 10px;
    width: 20px;
}

.burger-menu{
    display: none;
}

.burger-menu span{
    position: absolute;
    display: block;
    background: #A1DB4C;
    width: 100%;
    height: 1px;
    left: 0;
}

.burger-menu span:first-child, .burger-menu span:last-child{
    -webkit-transition: top 0.4s ease, -webkit-transform 0.4s ease;
    transition: top 0.4s ease, -webkit-transform 0.4s ease;
    -o-transition: top 0.4s ease, transform 0.4s ease;
    transition: top 0.4s ease, transform 0.4s ease;
    transition: top 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.burger-menu span:first-child{
    top: 0;
}

.burger-menu span:nth-child(2){
    top: 8px;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.burger-menu span:last-child{
    top: 100%;
}

.burger-menu._active span:first-child{
    top: 8px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.burger-menu._active span:nth-child(2){
    -webkit-transform: translateY(-50%) scale(0);
        -ms-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
}

.burger-menu._active span:last-child{
    top: 8px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.mobile{
    display: none;
}


@media screen and (max-width: 992px){
    header{
        border-bottom: 1px solid #A1DB4C;
    }
    
    header.scroll{
        top: 0;
    }

    .header-bottom:before{
        position: absolute;
        display: block;
        content: "";
        width: 100%;
        height: 100%;
        background: white;
        z-index: 100;
    }

    .header__logo{
        position: relative;
        z-index: 200;
    }

    .header-bottom{
        position: relative;
        z-index: 200;
    }

    .burger-menu{
        position: relative;
        display: block;
        width: 33px;
        height: 16px;
        z-index: 3000;
    }

    .header__links{
        position: absolute;
        top: -700%;
        left: 0;
        width: 100%;
        transition: top 0.4s ease;
        z-index: 0;
    }

    .header__links._active{
        top: 77px;
    }

    .header__links ul{
        display: flex;
        flex-direction: column;
        padding: 20px;
        width: 100%;
        border-radius: 0px;
    }

    .header__links ul li{
        margin-bottom: 10px;
        margin-left: 0;
        margin-right: 0;
    }

    .header__links ul li a, .header__links a:not([href]):not([class]), .header__links a:not([href]):not([class]):hover{
        font-size: 20px;
        color: white;
    }

    .header-top{
        display: none;
    }

    .header__links{
        display: none;
    }

    .header__links.mobile{
        display: block;
        border-bottom: 1px solid #1E4B2A;
        border-top: 1px solid #1E4B2A;
    }

    .header__user svg{
        margin-left: 10px;
    }
}

@media screen and (max-width:768px){
    .header__links._active{
        top: 65px;
    }

    .header__logo img{
        height: 35px;
    }
}

/*Cover*/
.cover{
    border-top: 0;
    padding-top: 176px;
}

.cover-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cover-title{
    border-radius: 15px;
    background: #A1DB4C;
    padding: 43px;
    margin-bottom: 55px;
    width: 633px;
}

.cover-title h1{
    color: #FCFFFC;
    text-align: center;
    font-size: 58px;
    font-family: 'Inter';
    font-weight: 400;
}

.cover-subtitle{
    width: 640px;
}

.cover-img img{
    width: 352px;
    height: 325px;
}

@media screen and (max-width: 1200px){
    .cover-title{
        width: 500px;
    }

    .cover-title h1{
        font-size: 50px;
    }

    .cover-subtitle {
        width: 480px;
    }
}

@media screen and (max-width:992px){
    section{
        padding: 60px 0px;
    }

    .cover{
        padding-top: 136px;
    }

    .cover-img{
        display: none;
    }

    .cover-info, .cover-title, .cover-subtitle{
        width: 100%;
    }

    .cover-subtitle{
        text-align: center;
    }
    
}

@media screen and (max-width: 768px){
    .cover-title h1 {
        font-size: 32px;
    }

    .cover-title{
        padding: 25px;
        margin-bottom: 30px;
    }
}

/*Services-tab*/
.services-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.services-top__left{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 543px;
    margin-right: 37px;
}

.services-item__white{
    border-radius: 15px;
    border: 3px solid #A1DB4C;
    background: #FFF;
    padding: 30px;
    width: 100%;
}

.services-item-title{
    margin-bottom: 15px;
}

.services-item-title h3{
    color: #77A03A;
    font-size: 24px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.services-top__left .services-item__white{
    margin-bottom: 30px;
}

.services-item__green{
    border-radius: 15px;
    border: 3px solid #A1DB4C;
    background: #F6FFEA;
    padding: 18px 30px;
}

.services-top__right{
    width: 670px;
    border-radius: 15px;
    border: 3px solid #A1DB4C;
    background: #F6FFEA;
    padding: 30px 21px;
    height: 336px;
}

.services-top__right-title{
    margin-bottom: 15px;
}

.services-top__right-title h3{
    color: #77A03A;
    font-size: 24px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.services-top__right-list{
    margin-bottom: 35px;
}

.services-top__right-list li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

.services-top__right-list li:last-child{
    margin-bottom: 0;
}

.services-top__right-list li::before{
    position: absolute;
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background: #A1DB4C;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.services-top__right-text{
    width: 416px;
}

.services-bottom{
    width: 100%;
    margin-bottom: 28px;
}

.services-text{
    margin-bottom: 15px;
}

.services-list ul{
    margin-top: 15px;
}

.services-list ul li{
    position: relative;
    padding-left: 25px;
}

.services-list ul li:first-child{
    margin-bottom: 15px;
}

.services-list ul li::before{
    position: absolute;
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background: #A1DB4C;
    top: 0;
    left: 0;
}

.services-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-green{
    display: block;
    color: #FFF;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    border-radius: 15px;
    border: 1px solid #A1DB4C;
    background: #A1DB4C;
    padding: 15px 50px;
    font-size: 16px;
    width: 292px;
    text-align: center;
    transition: background 0.4s ease, border 0.4s ease;
}

.btn-green:hover{
    border: 1px solid #77A03A;
    background: #77A03A;
}

/*Services*/
.services-content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.services-item{
    padding: 15px 20px;
    margin-bottom: 30px;
    height: 100%;
}

.services-item:nth-child(11), .services-item:last-child{
    margin-bottom: 0;
}

.services-item.white{
    border-radius: 15px;
    border: 3px solid #A1DB4C;
    background: #FFF;
}

.services-item.green{
    border-radius: 15px;
    border: 3px solid #A1DB4C;
    background: #F6FFEA;
}

.services-item__title{
    margin-bottom: 20px;
}

.services-item__title h3{
    color: #77A03A;
    font-family: 'Inter';
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
}

.services-item__subtitle{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical;
    line-height: 130%;
    margin-bottom: 20px;
}

.services-item__img{
    margin-bottom: 23px;
}

.services-item__button a{
    display: block;
    color: #FFF;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    border-radius: 15px;
    border: 1px solid #A1DB4C;
    background: #A1DB4C;
    padding: 15px 50px;
    font-size: 16px;
    width: 292px;
    text-align: center;
    width: 100%;
    transition: border 0.4s ease, background 0.4s ease;
}

.services-item__button a:hover{
    border: 1px solid #77A03A;
    background: #77A03A;
}

.services-item__button a svg{
    margin-left: 10px;
}

.services .swiper-wrapper{
    height: auto;
}

.services .swiper-buttons{
    justify-content: flex-end;
}


@media screen and (max-width: 2000px){
    .services-item__title h3{
        font-size: 28px;
    }

    .swiper-slide:nth-child(3) .services-item__title h3{
        font-size: 29px;
    }
}


@media screen and (max-width: 1400px){
    .services-item__title h3{
        font-size: 28px;
    }

    .swiper-slide:nth-child(3) .services-item__title h3{
        font-size: 29px;
    }
}

@media screen and (max-width: 1200px){
    .services-top__right{
        height: 430px;
    }

    .swiper-slide{
        height: 404px;
    }
}

@media screen and (max-width: 992px){
    .services-top{
        flex-direction: column;
    }

    .services-top__left{
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .services-top__left .services-item__white{
        margin-bottom: 20px;
    }

    .services-item__white, .services-top__right, .services-item__green{
        padding: 20px;
    }

    .services-top__right{
        width: 100%;
        height: auto;
    }

    .services-top{
        margin-bottom: 20px;
    }

    .services-top__right-text{
        width: 100%;
    }

    .services-item{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px){
    .swiper-slide{
        height: 437px;
    }

    .services .swiper-buttons{
        justify-content: center;
    }

    .swiper-button-prev img, .swiper-button-next img{
        width: 65px !important;
        height: auto !important;
    }
}

@media screen and (max-width: 450px){
    .btn-green{
        width: 100%;
    }

    .swiper-slide{
        height: 391px;
    }
}

/*FAQ*/
.accordion-button{
    font-size: 18px;
    border-bottom: 0;
    transition: border-bottom 0.4s ease;
    outline: nonec;
}

.accordion-button:not(.collapsed){
    box-shadow: none;
    background: none;
    color: #000;
    border-bottom: 1px solid #dee2e6 !important;
}

.accordion-button:focus{
    box-shadow: none;
    background: none;
    color: #000;
    border-bottom: 0;
}

.accordion-item .accordion-body{
    line-height: 130%;
    font-size: 16px;
}

.accordion-item .accordion-body span{
    color: #A1DB4C;
    font-weight: 600;
}

.accordion-item .accordion-body a{
    color: black;
    text-decoration: underline;
}

.accordion-button::after{
    background-image: url('/img/icons/chevron-down.svg');
}

.accordion-button:not(.collapsed)::after{
    background-image: url('/img/icons/chevron-down.svg');
}

@media screen and (max-width: 768px){
    .accordion-button span{
        width: 80%;
    }
}

/*Reviews*/
.swiper-reviews .swiper-pagination, .swiper-reviews .swiper-scrollbar{
    display: none;
}

.swiper-reviews .swiper-slide{
    border-radius: 15px;
    border: 3px solid #A1DB4C;
    background: #F6FFEA;
    padding: 20px;
    height: 223px;
}

.swiper-reviews .swiper-slide .review-user{
    margin-bottom: 10px;
}

.review-user{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-user h3 {
    font-size: 24px;
    font-weight: bold;
    width: 59%;
}

.reviews__user-star{
    display: flex;
    align-items: center;
}

.reviews__user-star img{
    width: 25px;
    margin-right: 5px;
}

.reviews__user-star img:last-child{
    margin-right: 0px;
}

.swiper-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.buttons-prev--next{
    display: flex;
    align-items: center;
}

.swiper-button-prev, .swiper-button-next{
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 0;
    width: auto;
    height: auto;
}

.swiper-button-prev{
    margin-right: 20px;
}

.swiper-button-prev::after, .swiper-button-next::after{
    display: none;
}

.swiper-button-prev img, .swiper-button-next img{
    width: 55px;
    height: 33px;
}

@media screen and (max-width: 1400px){
    .swiper-reviews .swiper-slide{
        height: 269px;
    }
}

@media screen and (max-width: 1200px){
    .swiper-reviews .swiper-slide{
        height: 224px;
    }
}

@media screen and (max-width: 848px){
    .swiper-reviews .swiper-slide{
        height: 246px;
    }
}

@media screen and (max-width: 767px){
    .swiper-reviews .swiper-slide{
        height: 150px;
    }

    .review-user h3 br{
        display: none;
    }

    .btn-green{
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .section-title h2{
        font-size: 30px;
        line-height: 130%;
    }

    .section-title{
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 677px){
    .swiper-reviews .swiper-slide{
        height: 173px;
    }
}

@media screen and (max-width: 513px){
    .swiper-reviews .swiper-slide{
        height: 195px;
    }
}

@media screen and (max-width: 450px){
    .swiper-buttons{
        flex-direction: column-reverse;
    }

    .reviews .buttons-prev--next{
        margin-bottom: 20px;
    }
    
    .swiper-buttons__form{
        width: 100%;
    }

    .swiper-buttons{
        margin-top: 20px;
    }

    .reviews__user-star{
        margin-left: 10px;
    }
}

@media screen and (max-width: 428px){
    .swiper-reviews .swiper-slide{
        height: 218px;
    }
}

@media screen and (max-width: 423px){
    .swiper-reviews .swiper-slide{
        height: 246px;
    } 
}

@media screen and (max-width: 401px){
    .swiper-reviews .swiper-slide{
        height: 259px;
    } 

    .review-user h3{
        font-size: 20px;
    }
}

@media screen and (max-width: 360px){
    .reviews__user-star img{
        width: 22px;
    }

    .review-user h3{
        font-size: 18px;
    }

    .reviews-text{
        font-size: 16px;
    }

    .swiper-reviews .swiper-slide{
        height: 232px;
    } 
}


/*Contacts*/
.contacts-content{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.contacts-links{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: 90px;
    width: 475px;
}

.contacts-links__item{
    margin-bottom: 35px;
}

.contacts-links__item-wide{
    margin-bottom: 35px;
    width: 100%;
}

.contacts-links__item:last-child{
    margin-bottom: 0;
}

.contacts-links h3{
    color: #77A03A;
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 400;
    margin-bottom: 10px;
}

.contacts-links a{
    color: #1E4B2A;
    font-size: 18px;
    font-weight: 400;
}

.contacts-map{
    width: 56%;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #A1DB4C;
    height: 482px;
}

.contacts-links__item:first-child, .contacts-links__item:nth-child(2){
    width: 50%;
}

@media screen and (max-width: 1200px){
    .contacts-links  .contacts-links__item:nth-child(2) a{
        white-space: nowrap;
    }
}

@media screen and (max-width: 992px){
    .contacts-content{
        display: flex;
        flex-direction: column;
    }

    .contacts-links{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 15px;
    }

    .contacts-map{
        width: 100%;
    }
}

/*Form*/
.form-content{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.form-left__title{
    margin-bottom: 15px;
}

.form-left h2{
    color: #A1DB4C;
    font-size: 40px;
    line-height: 42px;
    font-family: 'Inter';
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.form-left__subtitle{
    width: 70%;
    line-height: 130%;
}

.form-right{
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    border: 1px solid #A1DB4C;
    background: #F6FFEA;
    padding: 25px;
    width: 650px;
}

.form-inputs{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-inputs input, .form-inputs textarea{
    font-family: 'Montserrat';
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #7B7B7B;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 15px;
    padding: 0px 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0.035em;
    color: black;
    outline: none;
    transition: border 0.4s ease;
}

.form-inputs textarea{
    height: 103px;
    padding: 13px 20px;
    margin-bottom: 0;
}

.input-column{
    width: 100%;
}

.input-column:first-child{
    margin-right: 15px;
}

.form-button button{
    width: 100%;
    border: none;
    background: #A1DB4C;
    color: white;
    font-weight: 400;
    padding: 13px 26px;
    border-radius: 15px;
    font-size: 16px;
    transition: background 0.4s ease;
    cursor: pointer;
}

.form-button button:hover{
    background: #77A03A;
}

input._error{
    border: 1px solid red;
}

input._error::placeholder{
    color: red;
}

@media screen and (max-width: 1400px){
    .form-left h2{
        font-size: 36px;
        line-height: 38px;
    }
}

@media screen and (max-width: 1200px){
    .form-left__subtitle{
        width: 80%;
    }

    .form-left h2 {
        font-size: 28px;
        line-height: 30px;
    }

    .form-right{
        width: 750px;
    }
}

@media screen and (max-width: 992px){
    .form-content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .form-left h2{
        text-align: center;
    }

    .form-left__subtitle{
        width: 100%;
        text-align: center;
    }

    .form-left{
        margin-bottom: 20px;
    }

    .form-right{
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    .form-left h2{
        font-size: 30px;
        line-height: 130%;
    }
}

@media screen and (max-width: 600px){
    .form-inputs{
        flex-direction: column;
    }

}

/*Footer*/
footer{
    padding: 35px 0px;
    background: #F5F5F5;
}

.footer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 35px;
    border-bottom: 1px solid #77A03A;
}

.footer-logo img{
    height: 46px;
}

.footer-links{
    display: flex;
    align-items: center;
}

.footer-links__item{
    margin-right: 20px;
}

.footer-links__item:last-child{
    margin-right: 0;
}

.footer-links__item a{
    position: relative;
}

.footer-links__item a::after{
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    bottom: -2px;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-links__item a:hover::after{
    opacity: 1;
}

.footer-bottom{
    padding-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer a{
    display: flex;
    align-items: center;
    color: #000;
}

.developer a {
    display: flex;
    align-items: center;
}

.developer a span{
    display: block;
    border-radius: 9px;
    border: 1px solid #000;
    margin-left: 12px;
    padding: 6px 37px;
}

.footer-links__item:first-child{
    display: flex;
    align-items: center;
}

.footer-links__item svg{
    margin-right: 5px;
    height: 22px;
    width: 22px;
}

@media screen and (max-width:992px){
    .footer-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo{
        margin-bottom: 20px;
    }

    .footer-links{
        flex-direction: column;
        align-items: flex-start;
    }
    

    .footer-links__item{
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer-links__item:last-child{
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px){
    footer{
        padding: 25px 0px;
    }

    .footer-bottom{
        flex-direction: column;
        align-items: center;
    }

    .footer-top{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-bottom-left{
        margin-bottom: 10px;
    }

    .footer-links{
        align-items: center;
        justify-content: center;
    }

    .footer-logo img{
        height: 35px;
    }
}

.modal-thanks{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-thanks._active{
    opacity: 1;
    pointer-events: all;
}

.thanks-content{
    position: relative;
    background: white;
    width: fit-content;
    padding: 30px;
    border-radius: 6px;
    margin: 0 auto;
    z-index: 1000;
}

.thanks-title{
    margin-bottom: 20px;
}

.thanks-title h3{
    color: #A1DB4C;
    text-align: center;
    font-size: 32px;
    line-height: 36px;
    font-family: 'Inter';
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-align: center;
}

.thanks-subtitle{
    text-align: center;
}

.modal-cross{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-cross svg{
    position: absolute;
    top: 25px;
    right: 25px;
    -webkit-transition: fill 0.4s ease;
    -o-transition: fill 0.4s ease;
    transition: fill 0.4s ease;
}

.modal-cross svg:hover{
    fill: #b8b9b9;
}


.slide-pk .services-item__img img{
    height: 101px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid #A1DB4C;
}