@font-face {
    font-family: 'Lato Regular';
    src: url(/assets/fonts/lato/latoregular.ttf);
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: 'Lato Bold';
    src: url(/assets/fonts/lato/latobold.ttf);
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: 'Lato Medium';
    src: url(/assets/fonts/lato/latomedium.ttf);
    font-display: swap;
    font-weight: 500;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

:root {
    --color-white: #fffefe;
    --color-green: rgb(70, 111, 75);
}

.row {
    width: 100%;
    max-width: 1100px;
    display: flex;
    margin: 0 auto;
    padding: 0 1em;
}

.btn-orange {
    font-family: 'Lato Bold', sans-serif;
    background-color: #d98b5f;
    padding: 15px 28px;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    box-shadow: 0 0 10px 2px rgb(0, 0, 0, 35%);
    cursor: pointer;
}


/** header **/

header {
    background-color: #92bf96;
    display: flex;
    justify-content: space-around;
    height: 160px;
    position: relative;

    font-family: 'Open Sans', sans-serif;
}

header::before {
    content: "";
    display: inline;
    height: calc(100% - 5px);
    width: 30%;
    margin-bottom: 5px;
    background-color: #fffefe;

    position: absolute;
    top: 0;
    left: 0;
}

header>.row {
    z-index: 5;
    background-color: #92bf96;
    padding: 0;
}

.header__logo {
    margin-right: auto;
    background-color: #fffefe;
    position: relative;
    padding-top: 35px;
    padding-left: 50px;
    padding-right: 20px;
    margin-bottom: 5px;
    border-left: 1px solid #fffefe;
    transform: translateX(-1px);
}

.header__logo:after {
    content: "";
    position: absolute;
    border-top: 80px solid transparent;
    border-left: 55px solid #fffefe;
    border-bottom: 75px solid transparent;
    top: 0;
    right: -114px;
    width: 60px;
}

.header__logo img {
    width: 100%;
    max-width: 250px;
}

.header__contacts {
    display: flex;
    flex-direction: column;
}

.header__phones {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
}


.header__phones a,
.header__phones span {
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: 600;

    color: var(--color-white);
}

.header__phones span {
    display: inline-block;
    margin: 0 30px;
}

.header__btns {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}


.btn-white {
    padding: 13px 20px;
    background-color: var(--color-white);
    color: #466f4b;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    text-decoration: none;
    text-align: center;
}

.header__btn:first-child {
    margin-right: 10px;
}

section {
    padding: 60px 0;
}


/* hero */

section.hero {
    padding-top: 60px;
}

section.hero>.row {
    flex-direction: column;
}

.hero .hero__img {
    width: 100%;
    height: auto;
}

.hero .hero__img img {
    width: 100%;
}

.hero h1 {
    font-family: 'Lato Bold', sans-serif;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    color: #446f49;
    margin-top: 35px;
}

.hero h2 {
    font-family: 'Lato Medium', sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    color: #78a67d;
    font-weight: 500;
    margin-top: 70px;
}

.hero span {
    font-family: 'Lato Bold', sans-serif;
    font-weight: 700;
    font-size: 114px;
    color: #426e49;
    margin-top: 65px;
}

.hero__footer {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.hero__footer p {
    font-family: 'Lato Bold', sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 30px;
    color: #4b4b4a;
    text-transform: uppercase;
}

/* second */

.second__wrapper {
    display: flex;
    flex-direction: column;
}

.title__green-border {
    padding-left: 50px;
    position: relative;
    margin-bottom: 25px;
}

.title__green-border:before {
    content: "";
    height: 100%;
    width: 15px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #729c77;
}

.title__green-border h3 .green {
    font-family: 'Lato Bold', sans-serif;
    font-size: inherit;
    color: #456f4b;
    padding-bottom: 20px;
}

.title__green-border h3 {
    font-family: 'Lato Medium', sans-serif;
    font-size: 41px;
    color: #1b1b1b;
    font-weight: 500;
}

.second__description {
    padding-left: 50px;
    font-family: 'Lato Medium', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.title__green-border:not(:first-child) {
    margin-top: 100px;
}


/* facts */

.facts__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.facts__wrapper h2 {
    font-family: 'Lato Medium';
    font-weight: 500;   
}

.facts__title {
    font-size: 40px;
    font-family: 'Lato Medium';
    color: #436f4b;
    width: 100%;
    text-align: center;
    margin-bottom: 70px;
}

.fact__border {
    display: flex;
    flex-direction: column;
    margin-left: 45px;
    position: relative;
}

.fact__border::before {
    content: "";
    width: 5px;
    height: 95%;
    position: absolute;
    top: 0;
    left: 0;    
    background: rgb(157, 197, 161);
    background: -moz-linear-gradient(180deg, rgba(157, 197, 161, 1) 0%, rgba(66, 109, 73, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(157, 197, 161, 1) 0%, rgba(66, 109, 73, 1) 100%);
    background: linear-gradient(180deg, rgba(157, 197, 161, 1) 0%, rgba(66, 109, 73, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9dc5a1", endColorstr="#426d49", GradientType=1);
}

.facts__content {
    display: flex;
    position: relative;
    align-items: center;
}

.facts__content:not(:last-child){
    margin-bottom: 120px;
}

.facts__content .text-wrapper{
    width: calc(100% - 93px);
}

.fact__counter{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Lato Bold', sans-serif;
    font-size: 56px;
    color: #fff;

    border-radius: 50%;

    height: 93px;
    width: 93px;
   transform: translateX(-45px);
}

.fact__counter[data-counter="1"]{
    background-color: #a0c8a4;
}

.fact__counter[data-counter="2"]{
    background-color: #85af8b;
}

.fact__counter[data-counter="3"]{
    background-color: #749e78;
}

.fact__counter[data-counter="4"]{
    background-color: #4e8159;
}

.fact__counter[data-counter="5"]{
    background-color: #416c49;
}

.facts__content .title {
    font-size: 21px;
    font-family: 'Lato Bold';
    text-transform: uppercase;
    margin-bottom: 10px;
}

.facts__content p {
    font-size: 21px;
    font-family: 'Lato Medium';
    line-height: 28px;
}

/* more facts */

.more-facts__wrapper{
    display: flex;
    flex-direction: column;
}

.more-facts__wrapper h2{
    font-family: 'Lato Medium';
    font-weight: 500;
}

.more-facts__wrapper>img{
    max-width: 600px;
    margin: 0 auto;
}


.more-facts__description{
    padding-left: 50px;
    font-family: 'Lato Medium', sans-serif;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 150px;
}

.more-facts__card-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-evenly;
    padding-bottom: 55px;
}

.more-facts__card{
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.more-facts__card.ml{
    margin-left: 120px;
}

.more-facts__card.mr{
    margin-right: 120px;
}

.more-facts__card img{
    max-width: 180px;
    margin-bottom: 25px;
}

.more-facts__card p {
    font-size: 21px;
    font-family: 'Lato Medium';
    color: #48734d;
    text-transform: uppercase;
    padding-left: 0;
    text-align: center;
    line-height: inherit;
}


/* numbers */

.numbers__wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.numbers__wrapper h2{
    font-family: 'Lato Medium';
    font-weight: 500;
}

.numbers__card-row{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.numbers__card-row:not(:last-child){
    margin-bottom: 75px;
}

.numbers__card {
    width: 290px;
    border: 1px solid #426d4a;
    border-radius: 15px;
    overflow: hidden;
}

.numbers__card:not(:last-child){
    margin-right: 65px;
}

.numbers__card .card__header{
    font-size: 128px;
    font-family: 'Lato Bold';
    color: #fff;
    background-color: #739c77;
    display: flex;
    justify-content: center;
    align-items: center;

    height: 170px;
}

.numbers__card .card__footer {
    height: 205px;
    font-family: 'Lato Bold';
    font-size: 20px;
    color: #416b47;
    text-transform: uppercase;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* methods */

section.methods .row {
    flex-direction: column;
}

.methods__wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.methods__wrapper h2{
    font-family: 'Lato Medium';
    font-weight: 500;
}

.methods__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid #bdbdbd;
    padding: 10px;
}

.methods__item h4 a {
    cursor: pointer;
    color: inherit;
    text-decoration: inherit;
}

.methods__item.active .methods__item-content{
    display: block;
    height: auto;
    transition: all .3s ease .3s;
}

.methods__item:last-child{
    border-bottom: 1px solid #bdbdbd;
}

.methods__item img:first-child{
    margin-left: 45px;
}

.methods__item-row{
    display: flex;
    align-items: center;
}

.methods__item h4{
    font-family: 'Lato Bold';
    font-size: 25px;
    text-transform: uppercase;
    margin: 0 auto 0 35px;
    color: #232323;
}

.methods__item-arrow-down{
    height: max-content;
    transform: rotateX(0deg);

    transition: all .3s ease;
    cursor: pointer;
}

.methods__item-arrow-down.rotate{
    transform: rotateX(180deg);
    transition: all .3s ease;
}

.methods__item-content{
    display: none;
    height: 0;
    transition: all .3s ease .3s;
}

.methods__item-content p {
    margin-left: 115px;
    margin-top: 10px;
    letter-spacing: 1px;
}

.methods__description{
    font-family: 'Lato Bold';
    font-size: 21px;
    color: #46694e;
    line-height: 30px;
    text-decoration: none;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.methods__description img {
    margin-left: 15px;
}

.methods__btn-wrapper{
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.methods__btn-wrapper p {
    font-family: 'Lato Bold';
    font-size: 20px;
    line-height: 30px;
    color: #4b4b4a;
    display: inline-block;
    text-transform: uppercase;
}

.methods__btn-wrapper .btn-orange{
    padding: 15px 50px;
}

.methods__footer {
    display: flex;
    flex-direction: column;
    padding: 25px 50px;
    background-color: #86ae8b;
    border-radius: 12px;
    margin-top: 70px;
}

.methods__footer-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.methods__footer-row img:first-child{
    margin-left: 5px;
    margin-right: 30px;
}

.methods__footer span{
    font-family: 'Lato Bold';
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    margin-right: auto;
}

.methods__footer-content{
    display: none;
    margin-top: 20px;
    margin-left: 55px;
    color: #fff;
    letter-spacing: 1px;
}

.methods__footer-content h4 {
    font-size: 18px;
    color: #232323;
}

.methods__footer-content ul {
    margin-bottom: 15px;
}

.methods__footer.active .methods__footer-content{
    display: block;
}

.methods__footer-img {
    transform: rotateX(0deg);
    transition: all .3s ease;
    cursor: pointer;
}

.methods__footer-img.rotate {
    transform: rotateX(180deg);
    transition: all .3s ease;
}

.services__wrapper h2 {
    font-family: 'Lato Medium';
    font-weight: 500;
    margin-bottom: 0;
}

.service__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service__item:not(:last-child){
    margin-bottom: 100px;
}

.service__img-wrapper{
    max-width: 120px;
    width: 100%;
    margin-top: 35px;
}

.service__item>img{
    width: 100%;
    height: auto;
}

.service__item>p {
    margin-top: 30px;
    font-family: 'Lato Medium';
    font-weight: 500;
    font-size: 21px;
    color:#1b1b1b;
}

.service__item>a{
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    font-family: 'Lato Medium';
    font-weight: 500;
    font-size: 21px;
    color:#426c49;
    text-decoration: none;
    text-align: left;
}

.service__item>a>img {
    margin-left: 25px;
}

.slider>.row{
    display: flex;
    flex-direction: column;
}

.slider__wrapper{
    height: auto;
    display: flex;
}

.slider__cite{
    background-color: #86af8b;
    border-radius: 35px 35px 35px 0;
    width: 100%;
    max-width: 490px;
    padding: 15px 35px;
    position: relative;
    margin-bottom: 35px;
}

.slider__cite::before, .slider__cite::after{
    content: "";
    position: absolute;
    left: 0; 
    bottom: -20px;
    border: 20px solid transparent;
    border-left: 20px solid  #86af8b;;
     border-top: 20px solid  #86af8b;;
}

.cite__text{
    color:#fff;
    font-family: 'Lato Medium';
    font-weight: 500;
    font-size: 21px;
}

.slider__left, .slider__right{
    height: auto;
    width: 90px;
    background-repeat: no-repeat;
    background-position: center center;
}

.slider__left{
    background-image: url(/assets/img/slider-left.png);
}

.slider__right{
    background-image: url(/assets/img/slider-right.png);
}

.slider__body{
    height: 100%;
    border: 1px solid #c4c5c5;
    width: 100%;
    max-width: 840px; 
    overflow: hidden;
}

.slides__wrapper{
    display: flex;
}

.slide {
    font-size: 19px;
    font-family: 'Lato Medium';
    font-weight: 500;
    color: #000;
    padding: 20px;
    display: none;
}

.slide.active {
    display: block;
}

.slider a{
    color: #426c49;
    font-size: 21px;
    font-family: 'Lato Medium';
    font-weight: 500;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-top: 20px;
}

.slider a>img{
    margin-left: 20px;
}

/* footer */

footer{
    background-color: #85ae8a;
    padding: 60px 0 75px 0;
}

.footer__wrapper{
   display: flex;
   width: 100%;
}

.footer__wrapper .left{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

.footer__wrapper .left h3, .footer__wrapper .right h3 {
    color: #fff;
    font-size: 29px;
    font-family: 'Lato Medium';
    font-weight: 500;
    margin-bottom: 20px;
}
.footer__wrapper .left img {
    max-width: 300px;
}

.footer__wrapper .left .footer__btn{
    background-color: #fff;
    color: #436e49;
    font-size: 19px;
    font-family: 'Lato Bold';
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 15px 8px;
    width: 100%;
    max-width: 300px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    margin: 15px 0; 
}

.footer__adress-info{
    font-size: 17px;
    font-family: 'Lato Medium';
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

.footer__wrapper .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.footer__wrapper .right form {
    display: flex;
    flex-direction: column;
    padding-top: 30px;  
    padding-bottom: 50px;
    width: 100%;
    max-width: 500px;
}

.footer__wrapper .right form label{
    font-size: 17px;
    font-family: 'Lato Medium';
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer__wrapper .right form input{
    max-width: 500px;
    width: 100%;
    height: 50px;
    border: none;
    background-color: #fff;
    border-radius: 15px;
    padding: 10px 20px;
    margin-bottom: 25px;
}

.footer__wrapper .right form textarea{
    max-width: 500px;
    width: 100%;
    height: 180px;
    border: none;
    background-color: #fff;
    border-radius: 15px;
    padding: 10px 20px;
    resize: none;
    margin-bottom: 25px;
}

.footer__social a:not(:last-child) {
    margin-right: 15px;
}

.footer__social>a>img {
    width: 50px;
}

.footer__wrapper .right>a, .footer__wrapper .right>span, .footer__wrapper .right>span>a {
    font-size: 17px;
    font-family: 'Lato Medium';
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.footer__wrapper .right>a {
    margin: 15px 0;
}


@media screen and (max-width: 1200px){
    .header__contacts{
        padding-right: 1rem;
    }
    .header__phones{
        justify-content: flex-end;
    }
    .header__phones a, .header__phones span{
        font-size: 20px;
    }

    .header__btns>a:first-child {
        margin-right: 10px;
    }

    .btn-white{
        font-size: 16px;
    }

    .hero h1{
        font-size: 50px;
    }

    .hero h2{
        font-size: 24px;
        margin-top: 40px;
    }

    .hero span{
        font-size: 90px;
        margin-top: 30px;
    }

    .hero__footer{
        margin-top: 40px;
    }

    .hero__footer p{
        font-size: 19px;
    }

    .btn-orange{
        font-size: 18px;
    }

    .title__green-border h3{
        font-size: 34px;
    }

    .facts__title{
        margin-bottom: 40px;
        font-size: 34px;
    }

    .fact__border::before{
        top: 15px;
    }


    .numbers__card{
        width: 250px;
    }
    .numbers__card .card__footer{
        font-size: 18px;
    }
    .numbers__card:not(:last-child){
        margin-right: 40px;
    }
}

@media screen and (max-width: 900px){
    section{
        padding: 40px 0;
    }
    header{
        height: 90px;
    }
    .header__logo{
        padding-top: 10px;
    }

    .header__logo img{
        max-width: 145px;
    }

    .header__logo:after {
        border-top: 44px solid transparent;
        border-bottom: 44px solid transparent;
        top: -2px;
    }
    .header__phones{
        margin-top: 10px;
    }

    .header__phones a, .header__phones span{
        font-size: 14px;
    }
    .btn-white{
        font-size: 12px;
        padding: 8px 13px;
    }

    .hero h1{
        font-size: 44px;
    }

    .hero h2{
        font-size: 20px;
        margin-top: 40px;
    }

    .hero span{
        font-size: 80px;
        margin-top: 20px;
    }

    .hero__footer{
        flex-direction: column;
        margin-top: 20px;
    }

    .hero__footer p{
        font-size: 16px;
    }

    .btn-orange{
        width: max-content;
        margin-top: 30px;
    }

    .title__green-border h3{
        font-size: 30px;
    }

    .second__description{
        font-size: 16px;
    line-height: 24px;
    }

    .title__green-border:not(:first-child){
        margin-top: 50px;
    }

    .fact__border::before{
        top: 35px;
    }

    .facts__title{
        font-size: 30px;
    }

    .facts__content:not(:last-child){
        margin-bottom: 70px;
    }

    .facts__content p{
        font-size: 18px;
    }

    .more-facts__card-row{
        padding-bottom: 35px;
    }

    .more-facts__card{
        max-width: 170px;
    }

    .more-facts__card img{
        max-width: 140px;
    }

    .more-facts__card p{
        font-size: 16px;
    }

    .numbers__card{
        width: 210px;
    }

    .numbers__card .card__header{
        font-size: 100px;
        height: 150px;
    }

    .numbers__card:not(:last-child){
        margin-right: 20px;
    }

    .numbers__card .card__footer{
        font-size: 16px;
        height: 170px;
    }

    .footer__wrapper .right{
        padding-left: 30px;
    }

    .footer__wrapper .left h3, .footer__wrapper .right h3{
        font-size: 25px;
    }

    .footer__wrapper .left img{
        max-width: 250px;
    }

    .footer__wrapper .right form{
        padding-top: 0;
    }

    footer{
        padding: 40px 0 40px;
    }
}

@media screen and (max-width: 768px){
    
    .btn-white{
        font-size: 10px;
    }

    .header__logo img{
        width: 100%;
    }

    .header__logo:after {
        border-top: 44px solid transparent;
        border-bottom: 44px solid transparent;
        top: -2px;
        border-left: 50px solid #fffefe;
        width: 65px;
    }

    .header__btns{
        justify-content: flex-end;
    }

    .title__green-border{
        padding-left: 30px;
    }

    .second__description{
        padding-left: 30px;
    }

    .methods__btn-wrapper{
        flex-direction: column;
        margin-top: 40px;
    }

    .fact__border{
        margin-left: 0;
        text-align: center;
    }

    .fact__border::before{
        display: none;
    }

    .fact__counter{
        margin-bottom: 20px;
        transform: translateX(0);
    }

    .facts__title{
        font-size: 26px;
    }

    .facts__content .title{
        margin-bottom: 20px;
    }

    .facts__content{
        flex-direction: column;
    }

    .facts__content:not(:last-child){
        margin-bottom: 50px;
    }

    .facts__content .text-wrapper{
        width: 100%;
    }

    .more-facts__card-row{
        flex-direction: column;
        padding-bottom: 0;
    }

    .more-facts__card{
        max-width: 100%;
    }

    .more-facts__card p{
        margin-bottom: 30px;
    }

    .more-facts__card img{
        max-width: 100px;
    }

    .more-facts__description{
        font-size: 22px;
        margin-bottom: 60px;
        line-height: 28px;
    }

    .more-facts__card.mr{
        margin-right: 0;
    }

    .more-facts__card.ml{
        margin-left: 0;
    }

    .more-facts__wrapper>img{
        width: 80%;
    }

    .methods__item h4{
        font-size: 12px;
        margin: 0 auto 0 20px;
    }

    .methods__item-content p{
        margin-left: 0;
        margin-top: 15px;
        font-size: 14px;
    }

    .methods__description img{
        margin-left: 10px;
        width: 40px;
    }

    .methods__item img:first-child{
        margin-left: 15px;
    }

    .methods__footer{
        padding: 10px;
        margin-top: 50px;
    }

    .methods__description{
        font-size: 14px;
    }

    .methods__footer span{
        font-size: 14px;
    }

    .methods__btn-wrapper p{
        font-size: 16px;
    }

    .numbers__wrapper h2{
        font-size: 26px;
    }

    .numbers__card-row:not(:last-child){
        margin-bottom: 0;
    }

    .numbers__card:not(:last-child){
        margin-right: 0;
    }

    .numbers__card-row{
        flex-direction: column;
    }

    .numbers__card{ 
        margin: 15px auto;
        width: 100%;
    }

    .numbers__card .card__header{
        font-size: 100px;
        height: 150px;
    }

    .numbers__card .card__footer{
        height: 170px;
        font-size: 16px;
        padding: 0 1rem; 
    }

    .service__item>p{
        font-size: 16px;
    }

    .service__item>a{
        font-size: 16px;
    }

    .service__item>a>img{
        margin-left: 10px;
        width: 40px;
    }

    .service__item:not(:last-child){
        margin-bottom: 40px;
    }

    .slide{
        font-size: 14px ;
    }

    .service__img-wrapper{
        max-width: 100%;
        text-align: center;
    }

    .footer__wrapper{
        flex-direction: column;
    }

    .footer__wrapper .left{
        width: 100%;
    }

    .footer__wrapper .right{
        width: 100%;
        margin-top: 30px;
        padding-left: 0;
        align-items: center;
    }

    .footer__wrapper .left img{
        max-width: 200px;
    }
}

@media screen and (max-width: 600px){
    header>.row{
        flex-direction: column;
    }

    header{
        height: auto;
    }

    .header__logo{
        margin-right: 0;
    }
    .header__logo:after{
        display: none;
    }

    .header__logo img{
        max-width: 100px;
        padding-bottom: 10px;
    }

    .header__contacts{
        padding-right: 0;
    }

    .header__phones{
        justify-content: center;
    }

    .header__btns{
        justify-content: center;
        margin-bottom: 10px;
    }

    .hero span{
        font-size: 60px;
    }
}


@media screen and (max-width: 500px){
    .hero h1 {
        font-size: 30px;
    }

    .title__green-border h3{
        font-size: 22px;
    }

    
}