@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-VariableFont_wght.ttf') format('ttf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a {
    display: block;
}
a,
a:link,
a:visited,
a:hover {
    text-decoration: none;
}
ul,
ul li {
    list-style: none;
}
input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
    display: none;
}
button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
    outline: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
:root{
    font-size: 62.5%;
    font-weight: 300;
    --text-color: #2a7d2e;
}
body{
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-color);
}

body a{
    color: #124a2f;
}
.container{
    max-width: 1400px;
    min-width: 330px;
    padding: 0;
    margin: 0 auto;
    height: 100%;
}

.container-add{
    max-width: 1400px;
    min-width: 330px;
    padding: 0;
    margin: 0 auto;
    height: 100%;
    margin-bottom: 50px;
}

a.more-link {
    display: inline-block;
    border-bottom: 1px solid #14510c;
    font-style: italic;
}

.site{
    background-color: #ffffff;
}

/*------------------------ header ---------------------------*/

.header{
    display: flex;
    flex-direction: column;
}
.nav-first_light {
    padding: 0.5rem 0;
    background: #ffffff center url("images/header/header-top-bcg.svg") no-repeat;
    background-size: cover;
}
.nav-first_light .nav-first_tel span {
    color: #124a2f;
}
.nav-first_dark {
    padding: 0;
    background: #124a2f url("images/header/header-top-bcg.svg") no-repeat;
}
.nav-first_dark .nav-first_tel span {
    color: #FFFFFF;
}
.nav-first__ul{
    display: flex;
    align-items: center;
}
.nav-first__ul li{
    flex: 0 0 auto;
    margin-right: 1rem;
}
.nav-first__ul a{
    display: flex;
}
.nav-first_tel span {
    font-size: 1.8rem;
}
.nav-first_contact__tel {
    display: flex;
    align-items: center;
}
.nav-first__icon{
    display: flex;
    justify-content: center;
    margin-right: 1rem;
}
.nav-icon svg {
    width: 4rem;
    height: 4em;
}
.network-icon {
    fill: #124a2f;
}
.nav-first_tel a:last-child {
    display: none;
}
.nav-first_tel:hover a:last-child {
    display: flex;
}
.nav-first__ul li:last-child{
    flex: 1 0 auto;
    display: flex;
    justify-content: end;
    margin-right: 0;
}
.social-networks{
    display: flex;
    align-items: center;
    justify-content: end;
}
.social-networks li{
    margin: 10px;
}
.social-networks img{
    width: 3rem;
    height: 3rem;
}
.svg-icon {
    width: 1em;
    height: 1em;
}
.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
    /*fill: #4691f6;*/
}
.svg-icon circle {
    /*stroke: #4691f6;*/
    stroke-width: 1;
}

/*Header Nav Second Styles*/

.nav-second__content{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    flex: 0 0 auto;
    position: inherit;
    z-index: 2;
}
.nav-second_menu {
    position: inherit;
    z-index: 2;
}
.nav-second__ul{
    flex: 1 0 auto;
    display: flex;
    justify-content: end;
}
.nav-second__ul li{
    padding: 0 15px;
}
.nav-second__ul a {
    font-size: 2.2rem;
    /*font-weight: 300;*/
}
.nav-second__ul li:last-child{
    padding-right: 0;
}
.nav-second__ul li a{
    color: white;
}
.nav-second__ul .active {
    font-size: 2.2rem;
    position: relative;
    opacity: 0.7;
}
.nav-second__ul li:active,
.nav-second__ul li:hover,
.nav-second__ul li:focus{
    position: relative;
    opacity: 0.7;
}
.nav-second__ul li:active::after,
.nav-second__ul li:hover::after,
.nav-second__ul li:focus::after{
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: white;
    bottom: -10px;
    left: 50%;
}
.menu-burger {
    display: none;
    border: none;
}
.menu-icon-wrapper {
    --time: 0.1s;
    --width: 40px;
    --height: 30px;
    --line-height: 4px;
    --color: #000000;

    height: var(--height);
    width: var(--width);
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-icon {
    position: relative;
    width: var(--width);
    height: var(--line-height);
    background-color: var(--color);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: var(--width);
    height: var(--line-height);
    background-color: var(--color);
    transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}
.menu-icon::before {
    top: calc(var(--line-height) * -2);
}
.menu-icon::after {
    top: calc(var(--line-height) * 2);
}
.menu-icon.menu-icon--active {
    background-color: transparent;
}
.menu-icon.menu-icon--active::before,
.menu-icon.menu-icon--active::after {
    top: 0;
    transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}
.menu-icon.menu-icon--active::before {
    transform: rotate(45deg);
}
.menu-icon.menu-icon--active::after {
    transform: rotate(-45deg);
}

/*------------------------ hero ---------------------------*/

.hero{
    background-image: url("https://landshaftservice.kz/wp-content/uploads/2025/02/backhome.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 85rem;
    background-position: bottom;
    margin-top: -125px;
    position: relative;
}
.opacity {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.hero_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero__title{
    color: #ffffff;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: 0;
    font-size: 6em;
    text-align: center;
    margin-bottom: 1.2em;
}
.hero__text{
    color: #ffffff;
    line-height: 1em;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
}
.hero__button{
    text-align: center;
}
.hero__button a{
    color: #ffffff;
    font-weight: 400;
    font-size: 1.8rem;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #ffffff;
    display: inline-block;
    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
}
.hero__button a:hover{
    border: 1px solid var(--text-color);
    background-color: var(--text-color);
    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
}

/*------------------------ advantage ---------------------------*/

.advantages__row{
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 5%);
    margin-top: -150px;
    background-color: #ffffff;
    position: relative;
    padding: 40px;
}
.advantages__row::before{
    content: "";
    position: absolute;
    background-image: url('images/advantages/grass.svg');
    top: -10px;
    left: 0;

    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    height: 10px;
}
.advantage{
    text-align: center;
    border-right: 1px solid #ededed;
    flex: 1 1 auto;
    width: 25%;
}
.advantage:last-child{
    border-right: none;
}
.advantage__icon{
    margin-bottom: 2.5em;
}
.advantage__icon img{
    max-height: 5em;
}
.advantage__title{
    font-weight: 400;
    font-style: normal;
    font-size: 2.2rem;
    line-height: 1;
    margin: 0 10px 0.5em;
    height: 1.8em;
}
.advantage__text{
    color: #2f2f2f;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0 10px 10px;
}

/*------------------------ services ---------------------------*/

.services{
    padding: 60px 0 0;
    text-align: center;
}
.title {
    font-size: 2.5em;
    color: #0b2c3d;
    font-weight: 300;
}
.services__title{
    line-height: 1.2;
    font-weight: 600;
    font-size: 4.2rem;
    color: var(--text-color);
    margin-bottom: 0.2em;
}
.services__description{
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 400;
    color: black;
}
.services__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.service{
    width: 33%;
}
.service__icon{
    padding: 20px;
    height: 300px;
}
.service__content {
    padding: 0 1em;
}
.service__icon img{
    width: 100%;
    height: 100%;
    transition: transform .2s;
    object-fit: cover;
}
.service:hover .service__icon img{
    transform: scale(1.05);
}
.service__title{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2em;
    margin-bottom: 10px;
    color: var(--text-color);
}
.services h3 {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1;
}
.service:hover .service__title,
.service:focus .service__title,
.service:active .service__title{
    font-weight: 600;
    margin-bottom: 10px;
}
.service__description{
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    color: #2f2f2f;
    margin-bottom: 50px;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 400;
}

.service a{
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 750px) {
    .service a{
        flex-direction: column-reverse;
    }

    .services__description{
        padding-bottom: 20px;
        border-bottom: 0.5px solid var(--text-color);
    }
}

/*------------------------ numbers ---------------------------*/

.numbers{
    padding-top: 100px;
    padding-bottom: 40px;
    text-align: center;
    position: relative;
}
.numbers::after {
    content: "";
    position: absolute;
    width: 25rem;
    height: 30rem;
    top: -10rem;
    right: 15rem;
    background-image: url('images/numbers/leaf.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.numbers__title{
    line-height: 1.2;
    font-weight: 600;
    font-size: 4.2rem;
    color: var(--text-color);
    margin-bottom: 0.2em;
}
.numbers__description{
    padding: 0;
    border: 0;
    font-size: 1.8rem;
    line-height: 1em;
    font-weight: 400;
    vertical-align: baseline;
    color: #2f2f2f;
    margin-bottom: 30px;
}
.numbers__row{
    display: flex;
    flex-wrap: wrap;
}
.numbers__row li{
    width: 25%;
    flex-grow: 1;
    padding: 0 20px;
}
.numbers__row li:first-child{
    padding-left: 0;
}
.numbers__row li:last-child{
    /*padding-right: 0;*/
}
.numbers__number{
    font-weight: 400;
    line-height: 1.2em;
    font-size: 5.2rem;
}
.numbers__meaning{
    font-size: 2.6rem;
    line-height: 1em;
    font-family: 'Patrick Hand', cursive;
    text-transform: uppercase;
    margin-top: 0.8em;
    letter-spacing: -0.05em;
}
.numbers__name{
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    height: 1.2em;
}

/*------------------------ before-after ---------------------------*/

.b-a_content {
    transform: translateZ(0);
    display: flex;
    justify-content: center;
    padding: 6em 0;
}
.b-a_menu {
    flex-basis: 30%;
    min-height: 100%;
    border-right: 2px solid #2a7d2e;
}
#b-a_tabs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0;
}
#b-a_tabs li {
    flex-basis: 25%;
    display: inline-block;
    position: relative;
    padding: 1em;
    cursor: pointer;
    color: #124a2f;
    z-index: 0;
    list-style-type: none;
    width: 100%;
    background-color: rgba(18, 74, 47, 0.1);
    overflow: hidden;
}
#b-a_tabs li h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 400;
}
#b-a_tabs li p {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 200;
    display: none;
}
#b-a_tabs li:before {
    content: " ";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 74, 47, 0.4);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .5s ease-out;
}
#b-a_tabs li:hover:before {
    transform: scaleX(1);
}
#b-a_tabs li:hover {
    color: #000;
}
#b-a_tabs li.active {
    color: #000;
    background-color: rgba(18, 74, 47, 0.4);
}
.b-a_tabs-content {
    flex-basis: 70%;
}
.tab-content {
    width: 100%;
    height: 100%;
}
.tab-content.hidden {
    display: none;
}

/*---------- slide ----------*/

.b-a_main {
    min-height: 200px;
    display: flex;
    align-items: center;
}
.b-a_container {
    width: 100%;
    position: relative;
    overflow: hidden;
    --position: 50%;
}
.image-container {
    max-height: 90%;
    /*position: relative;*/
    aspect-ratio: 16/9;
}
.b-a_content img {
    display: block;
    max-width: 100%;
}
.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.image-before {
    position: absolute;
    inset: 0;
    width: var(--position);
}
.slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
}
.slider:focus-visible ~ .slider-button {
    outline: 5px solid black;
    outline-offset: 3px;
}
.slider-line {
    position: absolute;
    inset: 0;
    width: 0.1rem;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 10;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
}
.slider-button {
    position: absolute;
    background-color: #FFFFFF;
    padding: 0.5rem;
    border-radius: 100vw;
    display: grid;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 11;
    box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
    border: 1px solid #2a7d2e;
}
.b-a_tabs-content .slider-button img {
    width: 2em;
    height: 2em;
}

/*------------------------ works ---------------------------*/

/*.works{*/
/*    padding: 70px 0;*/
/*    background-color: #fbf9f6;*/
/*    text-align: center;*/
/*}*/
/*.works__title, .services__title{*/
/*    font-weight: 600;*/
/*    font-size: 48px;*/
/*    line-height: 1.5;*/
/*    color: #124a2f;*/
/*    margin-bottom: 40px;*/
/*}*/
.works__row{
    display: flex;
    flex-wrap: wrap;
    column-gap: 1%;
    row-gap: 20px;
}

/*.work{*/
/*    max-width: 32%;*/
/*    width: auto;*/
/*    height: auto;*/
/*    background-color: #ffffff;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    text-align: center;*/
/*    justify-content: center;*/
/*    border-radius: 5px;*/
/*}*/

/*.work__img{*/
/*    border-radius: 5px;*/
/*    display: block;*/
/*    transition: width .4s;*/
/*}*/

/* .work img{
    border-radius: 5px;
    display: block;
    transition: width .4s;
} */

/*.work__text{*/
/*    display: none;*/
/*}*/

/*.work:hover .work__text{*/
/*    display: block;*/
/*}*/

/*.work:hover .work__img{*/
/*    display: none;*/
/*}*/

/* .work:hover .work img{
    display: none;
} */

/*.work__text h3{*/
/*    font-weight: 600;*/
/*    font-size: 20px;*/
/*}*/
/*.work__text p{*/
/*    padding: 0;*/
/*    border: 0;*/
/*    font: inherit;*/
/*    vertical-align: baseline;*/
/*    color: #2f2f2f;*/
/*}*/

/*------------------------ about-us ---------------------------*/

.about-us{
    padding: 20px 0;
}
.about-us__row{
    display: flex;
}
.about-us__left{
    width: 40%;
}
.left{
    padding-top: 180px;
    padding-right: 60px;
    padding-bottom: 120px;
    background-image: url("images/aboutUs/Leaf-1-1.svg");
    background-repeat: no-repeat;
    background-size: cover;

    position: sticky;
    top: 50px;
}
.about-us__title{
    line-height: 1.2;
    font-weight: 600;
    font-size: 4.2rem;
    color: var(--text-color);
    margin-bottom: 0.2em;
}
.about-us__description{
    line-height: 1.2;
    font-weight: 200;
    font-size: 1.6rem;
    color: #2f2f2f;
}
.about-us__right{
    width: 60%;
}
.right__img{
    width: 100%;
    height: auto;
}
.right__history{
    display: flex;
}
.history__years{
    margin-top: -100px;
    background-color: #ffffff;
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 110px;
    padding-left: 30px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 50%;
}
.history__craftsmanship{
    color: #ffffff;
    background-color: #2a7d2e;
    padding: 20px;
    padding-top: 100px;
    padding-right: 50px;
    padding-bottom: 110px;
    padding-left: 50px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 50%;
}
.years__title{
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 50px;
}
.years__description, .year__description{
    padding: 0;
    border: 0;
    vertical-align: baseline;
    color: #2f2f2f;
    margin-bottom: 50px;
    line-height: 1.2;
    font-weight: 200;
    font-size: 1.6rem;
}
.years-ul{
    list-style: none;
}
.year__number{
    color: #0b2c3d;
    font-weight: 500;
    margin-bottom: 10px;
}
.craftsmanship__title{
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 30px;
}
.craftsmanship__description{
    margin-bottom: 30px;
}
.craftsmanship__button{
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    padding: 10px 20px;
    text-align: center;
}
.right__philosophy{
    display: flex;
}
.philosophy__img{
    width: 50%;
    max-height: 450px;
    object-position: 80%;
    object-fit: cover;
}
.philosophy__content{
    width: 50%;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 50px;
}
.philosophy__title{
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 50px;
}
.philosophy__description{
    padding: 0;
    vertical-align: baseline;
    color: #2f2f2f;
    margin-bottom: 50px;
    line-height: 1.2;
    font-weight: 200;
    font-size: 1.6rem;
}

/*------------------------ footer ---------------------------*/

.footer{
    background: url("images/feedback/footer.webp");
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 20px 0;
    text-align: center;
}
.footer .social-networks{
    justify-content: center;
}
.footer .hero__button a {
    color: #2a7d2e;
    border-color: #2a7d2e;
}
.footer .hero__button a:hover {
    color: #ffffff;
}
.footer .logo {
    justify-content: center;
}
footer .network-icon {
    fill: #124a2f;
}

.warranty-link {
    display: inline;
    font-size: 2rem;
    font-weight: 600;
}

.whats-app_link {
    display: none;
}


@media screen and (max-width: 1600px) {
    .container {
        max-width: 1200px;
        padding: 0 5rem;
    }

    .container-add {
        max-width: 1200px;
        padding: 0 5rem;
    }
}

@media screen and (max-width: 1200px){
    .container {
        padding: 0 2rem;
        max-width: 110rem;
    }
    .container-add {
        padding: 0 2rem;
        max-width: 110rem;
    }
    .numbers__row li{
        width: 48%;
    }
    .advantage{
        width: 48%;
    }
    .service{
        width: 48%;
    }
}

@media screen and (max-width: 900px){
    .whats-app_link {
        display: block;
    }
    .whats-app_link {
        position: fixed;
        width: 7em;
        height: 7em;
        bottom: 40px;
        right: 40px;
    }
    .whats-app_link span {
        display: block;
        width: 100%;
        height: 100%;
    }
    .whats-app_link span svg{
        width: 100%;
        height: 100%;
    }
    .header{
        flex-direction: column-reverse;
        padding: 1px 0;
    }
    .nav-first_light .nav-first_tel span {
        color: #ffffff;
    }
    .nav-first__icon img {
        fill: #FFFFFF;
    }
    header .network-icon {
        fill: #FFFFFF;
    }
    .nav-second{
        background: none;
    }
    .nav-second__ul{
        display: none;
    }
    .nav-second__ul_active{
        display: flex;
        flex-direction: column;
    }
    .nav-second__ul li {
        padding: 0.6rem 0;
    }
    .nav-second__ul li a {
        font-size: 1.8rem;
        color: #2a7d2e;
    }
    .nav-second__content{
        flex-direction: column;
        justify-content: center;
        min-height: 4rem;
    }
    .nav-first{
        display: none;
        background: #124a2f url("images/header/header-top-bcg2.svg") no-repeat;
    }
    .nav-first_active{
        display: block;
    }
    .logo{
        display: flex;
        width: 100%;
        justify-content: space-between;
        height: 8em;
    }

    .logo a{
        display: flex;
    }
    .logo img {
    }
    .logo__img {
        max-width: 80%;
    }
    .menu-burger{
        display: block;
    }
    .nav-second_ul{
        display: flex;
    }
    .hero{
        margin-top: 0;
        height: 600px;
    }
    .hero_content {
        padding-top: 0;
        padding-bottom: 150px;
    }
    .hero__title {
        font-size: 5rem;
    }
    .hero__text {
        font-size: 1.8rem;
    }
    .hero__button a {
        font-size: 1.8rem;
    }
    .advantages__row {
        margin-top: -100px;
    }
    .numbers__name {
        margin-bottom: 10px;
    }
    .numbers__description {
        margin-bottom: 20px;
    }
    .history__years {
        margin-top: -40px;
        padding-top: 25px;
        padding-right: 15px;
        padding-bottom: 50px;
        padding-left: 15px;
    }
    .years__title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    .history__craftsmanship {
        padding-top: 50px;
        padding-right: 25px;
        padding-bottom: 50px;
        padding-left: 25px;
    }
    .craftsmanship__title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    .craftsmanship__description{
        font-size: 16px;
    }
    .years__description, .year__description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .year__description:last-child {
        margin-bottom: 0px;
    }
    .craftsmanship__button {
        border-radius: 15px;
        padding: 5px 10px;
        font-size: 14px;
    }
    .philosophy__title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    .philosophy__content {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 25px;
    }

    .service{
        position: relative;
    }

    .service::after{
        content: "";
        width: 60%;
        height: 1px;
        background-color: #124a2f;
        position: absolute;
        left: 20%;
        top: 102%;
    }

    .service::after:last-child{
        content: "";
        width: 60%;
        height: 0px;
        background-color: #124a2f;
        position: absolute;
        left: 20%;
        top: 102%;
    }

    .b-a_content {
        flex-direction: column;
        padding: 2em 0;
    }
    .b-a_main {
        display: flex;
        align-items: flex-start;
    }
    .b-a_menu h3 {
        font-weight: 600;
    }
    #b-a_tabs li {
        padding: .5em;
        min-height: 8rem;
    }
}

@media screen and (max-width: 750px){
    .hero {
        height: 600px;
    }
    .hero_content {
        padding-top: 125px;
    }
    .advantages__row{
        margin-top: 20px;
        padding: 20px 0 30px;
        flex-wrap: wrap;
        row-gap: 30px;
    }
    .advantages__row::before {
        display: none;
    }
    .advantage {
        border-right: 1px solid #ededed;
        flex: 0 0  auto;
        width: 50%;
    }
    .services__list {
        column-gap: 0;
        row-gap: 40px;
    }
    .service{
        flex-basis: 100%;
    }
    .service__icon {
        height: 350px;
    }
    .numbers {
        padding-top: 50px;
    }
    .numbers__title {
        margin-bottom: 20px;
    }
    .numbers__meaning {
        margin-bottom: 10px;
    }
    .about-us__row {
        flex-direction: column;
    }
    .about-us__left {
        width: 100%;
        text-align: center;
    }
    .about-us__right {
        width: 100%;
    }
    .left {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 20px;
    }
    .right__history {
        flex-direction: column;
    }
    .history__years{
        width: 100%;
    }
    .history__craftsmanship{
        width: 100%;
    }
    .right__philosophy {
        flex-direction: column;
    }
    .philosophy__img {
        width: 100%;
    }
    .philosophy__content {
        width: 100%;
    }
}

@media screen and (max-width: 600px){
    .nav-first__ul li {
        margin-right: 0;
    }
    .nav-first_tel {
        display: none;
    }
    .hero{
        height: 400px;
    }
    .hero_content {
        padding: 0;
    }
    .hero__title {
        line-height: 1.2em;
        font-size: 3.6rem;
    }
    .hero__text {
        line-height: 24px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .hero__button a {
        font-size: 1.2rem;
    }
    .advantage {
        border-bottom: 1px solid #ededed;
        border-right: none;
        flex: 0 0 auto;
        width: 100%;
    }
    .advantage:last-child{
        border-bottom: none;
    }
    .advantage__text {
        font-size: 1.6rem;
    }
    .service {
        width: 100%;
    }
    .service__icon {
        padding: 0;
        padding-bottom: 20px;
    }
    .numbers__description,
    .service__description {
        font-size: 1.6rem;
    }
    .numbers__row {
        flex-direction: column;
    }
    .numbers__row li {
        width: 100%;
    }
}

#b-a_tabs li {   
    padding: 2.5em;}

.about-us__description { 
    line-height: 1.6; 
    font-size: 1.8rem;  }

.philosophy__description {  
    line-height: 1.6; 
    font-size: 1.8rem;}


.page-title-custom{
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0;
    font-size: 6em;
    text-align: center;
    margin-bottom: 1.2em;
}

figure.gallery-item {
    margin: 1em;
    display: inline-block;
}

::-moz-placeholder {
    opacity: 1;
    color: #000;
}
::-webkit-input-placeholder {
    color: #000;
}
:-moz-placeholder {
    color: #000;
}
:-ms-input-placeholder {
    color: #000;
}
::-ms-input-placeholder {
    color: #000;
}
:placeholder-shown {
    color: #000;
}
button, textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}
input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form-control {
    margin: 0 0 20px;
    position: relative;
}
.form-control ::-moz-placeholder {
    opacity: 1;
    color: #999;
}
.form-control ::-webkit-input-placeholder {
    color: #999;
}
.form-control :-moz-placeholder {
    color: #999;
}
.form-control :-ms-input-placeholder {
    color: #999;
}
.form-control ::-ms-input-placeholder {
    color: #999;
}
.form-control :placeholder-shown {
    color: #999;
}
.form-control .error {
    font-size: 14px;
    color: red;
    margin: 4px 0 0;
    display: block;
    font-weight: 800;
  }

.form-control label.error {
  position: absolute;
  left: 12px;
  right: 12px;
  font-size: 11px;
  display: none;
}
.form-control.has-error label.error {
	display: block;
}
.input-control {
    height: 50px;
    width: 100%;
    background: #fff;
    outline: 0;
    border: 1px solid #CDD3CF;
    font-size: 14px;
    color: #000;
    padding: 0 0 0 25px;
}
@media (min-width:1650px) {
    .input-control {
    height: 60px;
    padding: 0 0 0 35px;
}
}.input-control:active, .input-control:focus {
    border: 1px solid #C79682;
}
.input-control:disabled {
    background: #F5F5F5;
    border: 1px solid #CDD3CF;
    color: #999;
}
.has-error .input-control{
    border: 1px solid #EB5757;
    margin-top: 0;
    font-weight: 300;
}
textarea.input-control {
    height: 115px;
    resize: none;
    padding-top: 25px;
}
.btn, .btn__arrow {
    font-size: 14px;
    z-index: 1;
    text-transform: uppercase;
}
.btn, .btn_arrow .arrow-wrap {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
}
.btn {
    display: inline-flex;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    padding: 5px 15px;
    background: #fff;
    cursor: pointer;
    outline: 0;
    -webkit-transition: all .3s linear 0s;
    transition: all .3s linear 0s;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
}
.btn_arrow {
    padding: 0;
    background: 0 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.btn_arrow:before {
    position: absolute;
    left: 0;
    top: 0;
    right: -55px;
}
.btn_arrow .arrow-wrap {
    width: 40px;
    overflow: hidden;
    display: inline-flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.btn_arrow .arrow-wrap svg {
    margin-left: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.btn_arrow .btn__name {
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.btn_arrow .btn__arrow {
    padding-right: 20px;
}
.btn_arrow:hover .btn__name {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
}
.btn_arrow:hover .btn__arrow {
    color: #A67561;
}
.btn_arrow:hover .arrow-wrap {
    width: 54px;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.btn_arrow:hover .arrow-wrap svg {
    fill: #A67561;
}
.btn_arrow--white:hover .btn__name {
    color: rgba(255, 255, 255, .8);
}
.btn_arrow--white:hover .arrow-wrap svg {
    fill: rgba(255, 255, 255, .8);
}
.btn_arrow--white .btn__arrow {
    color: #fff;
}
.btn_arrow--white .btn__arrow svg {
    fill: #fff;
}
.btn__arrow {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: .1em;
    color: #C79682;
    position: relative;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
@media (max-width:567px) {
    .btn_arrow .btn__arrow {
    padding-right: 10px;
}
.btn__arrow {
    font-size: 12px;
}
}.btn__arrow .arrow-wrap {
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.btn__arrow svg {
    fill: #C79682;
    font-size: 7px;
    margin-left: 15px;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.btn_submit {
    position: relative;
    background: #29c34a;
    height: 50px;
    cursor: pointer;
    padding: 5px 10px;
	transition: background 0.3S ease;
}
.btn_submit:hover {
    background: #A67561;
}
@media (min-width:1650px) {
    .btn_submit {
    height: 60px;
    padding: 5px 25px;
}
}.btn_submit:hover .btn__arrow {
    -webkit-animation: button-roll-over .5s forwards cubic-bezier(.165, .84, .44, 1);
    animation: button-roll-over .5s forwards cubic-bezier(.165, .84, .44, 1);
}
.btn_submit .btn__arrow {
    color: #fff;
    -webkit-animation: button-roll-out .5s forwards cubic-bezier(.165, .84, .44, 1);
    animation: button-roll-out .5s forwards cubic-bezier(.165, .84, .44, 1);
}
.btn_submit .btn__arrow svg {
    fill: #fff;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.btn_submit:disabled {
    background: #F5F5F5;
    border: 1px solid #E2E2E2;
    cursor: default;
}
.btn_submit:disabled:before {
    display: none;
}
.btn_submit:disabled .btn__arrow {
    color: #999;
    -webkit-animation: button-roll-out .5s forwards cubic-bezier(.165, .84, .44, 1);
    animation: button-roll-out .5s forwards cubic-bezier(.165, .84, .44, 1);
}
.btn_submit:disabled .btn__arrow svg {
    fill: #999;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.btn_submit--normal {
    padding: 5px 25px;
}
button.btn, input.btn {
    display: inline-block;
}

.custom-checkbox {
    margin: 20px 0;
}
.custom-checkbox label:before {
    content: ''}
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    right: -999999px;
    z-index: -999999;
    display: none;
}
.custom-checkbox input[type="checkbox"]:checked+label:before{
    background: url(images/checkbox-selected.svg) center center no-repeat, #fff;
    background-size: 65%;
}
.custom-checkbox label {
    min-height: 25px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 14px;
    position: relative;
    padding-left: 35px;
    line-height: 1.2;
    color: #333;
    font-weight: 400;
}
.custom-checkbox label span {
    margin-right: 5px;
}
.custom-checkbox label:before{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: #fff;
}
.custom-checkbox label a {
    color: #C79682;
}

.calc-summ, .calc__wrap, .modal-form, .small-modal.info-modal .modal-body, body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
}
.fade.in {
    opacity: 1;
}
.modal-open {
    overflow: hidden;
}
.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    text-align: center;
}
@media all and (min-width:768px) {
    .modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -1px;
}
}.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    text-align: left;
    border: 10px solid #86d197;
}
@media (min-width:568px) {
    .modal-dialog {
    border: 15px solid #86d197;
}
}.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: .5;
    filter: alpha(opacity=50);
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}
.modal-body {
    position: relative;
    padding: 0;
}
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer .btn+.btn {
    margin-left: 5px;
    margin-bottom: 0;
}
.modal-footer .btn-group .btn+.btn {
    margin-left: -1px;
}
.modal-footer .btn-block+.btn-block {
    margin-left: 0;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
.calc-section, .calc__item:nth-child(1), .clients, .clients-form, .faq-section, .faq__image, .instagram-carousel__image, .instagram-section, .screen-section, .screen-section__media, .slick-list {
    overflow: hidden;
}
@media (min-width:768px) {
    .modal-dialog {
    width: 600px;
    margin: 30px auto;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}
}
.i-svg {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: #000;
    fill: #000;
    font-size: 30px;
}
.icon-close {
    width: .97297em;
}
.icon-long-right-arr {
  width: 7.71429em;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    outline: 0;
    background: 0 0;
    padding: 0;
    border: 0;
    z-index: 1;
    cursor: pointer;
}
.close svg {
    font-size: 18px;
}
.modal-form {
    padding: 15px;
    background: url(images/modal-bg.png) no-repeat, #F1EFEE;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media (min-width:568px) {
    .modal-form {
    padding: 30px;
}
}@media (min-width:992px) {
    .close {
    top: 25px;
    right: 25px;
}
.modal-form {
    padding: 50px 30px;
}
.long-modal .modal-dialog {
    width: 900px;
}
}@media (min-width:1650px) {
    .modal-form {
    padding: 50px 75px;
}
}.modal-form__title {
    font-weight: 800;
    font-size: 24px;
    line-height: normal;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 35px;
}
@media (max-width:767px) {
    .modal-form__title {
    font-size: 18px;
    margin: 15px 0 25px;
}
.small-modal.info-modal .info-modal__icon img {
    max-width: 70px;
}
}@media (min-width:1200px) {
    .long-modal .modal-dialog {
    width: 1080px;
}
}@media (min-width:992px) {
    .long-modal .modal-row {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
}.long-modal .calc-summ {
    margin: 0;
    padding: 30px 15px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 100%}
@media (min-width:568px) {
    .long-modal .calc-summ {
    padding: 30px;
}
}.long-modal .calc-summ__information {
    color: #C79682;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0 0 20px;
    font-weight: 800;
}
@media (min-width:992px) {
    .long-modal .calc-summ {
    padding: 50px;
    width: 465px;
}
.long-modal .calc-summ__information {
    font-size: 18px;
}
}.long-modal .calc-summ__footer {
    margin: 30px 0 0;
    background: 0 0;
    padding: 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.long-modal .calc-summ__descr {
    color: #C79682;
    margin-right: 15px;
}
.long-modal .calc-summ__price {
    color: #000;
}
.long-modal .calc-summ_bold {
    text-transform: none;
    color: #000;
    letter-spacing: normal;
    font-size: 18px;
}
.long-modal .modal-form {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.long-modal .calc-summ__logo {
    height: 100%}
.long-modal .calc-summ__logo svg {
    height: 100%;
    width: 100%;
    fill: #C79682;
}
@media (max-width:991px) {
    .long-modal .modal-logo {
    display: none;
}
}.small-modal .modal-form {
    display: block;
}
.achievement__row, .small-modal.info-modal .modal-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
}
.small-modal .text-center {
    text-align: center;
}
.small-modal .btn_submit {
    min-width: 240px;
}
@media (min-width:768px) {
    .small-modal .modal-form__title {
    margin: 0 0 25px;
}
}.small-modal.info-modal .modal-content {
    background: #F1EFEE;
}
.small-modal.info-modal .modal-body {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 15px;
}

.service-button {
  color: #2a7d2e;
  font-weight: 400;
  font-size: 1.8rem;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #2a7d2e;
  display: inline-block;
  -webkit-transition: background-color 100ms linear, color 100ms linear;
  -ms-transition: background-color 100ms linear, color 100ms linear;
  transition: background-color 100ms linear, color 100ms linear;
  margin-top: 10px;
}
.service-button:hover {
  color: #ffffff;
  background: #2a7d2e;
}