*, body, html, ol, ul {
    margin: 0;
    padding: 0
}

li, ol, ul {
    list-style: none
}

.btn, .title {
    font-weight: 700
}

*, .btn, :after, :before {
    box-sizing: border-box
}

.btn, .popup-open, a {
    transition: .3s all ease
}

.form-group input:checked + label:after, .form-group label:before, .title:after {
    content: ''
}

:root {
    --green: #18753E;
    --black: #0E0A1C
}

body, html {
    font-family: 'Manrope', sans-serif;
    color: var(--black);
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: #000
}

p {
    font-size: 16px
}

input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
    -webkit-appearance: none
}

input {
    outline: 0;
    border: none
}

button {
    border: transparent;
    outline: 0
}

.title {
    font-size: 36px;
    line-height: 43px;
    text-align: center;
    color: var(--green);
    position: relative;
    text-transform: uppercase
}

@media (max-width: 769px) {
    .title {
        font-size: 32px;
        line-height: 36px
    }
}

@media (max-width: 569px) {
    .title {
        font-size: 24px;
        line-height: 28px
    }
}

.title:after {
    width: 130px;
    height: 4px;
    background: var(--green);
    position: absolute;
    left: 50%;
    margin-left: -65px;
    bottom: -20px
}

.text {
    color: var(--black);
    font-size: 18px;
    line-height: 169%
}

@media (max-width: 1441px) {
    .text {
        font-size: 16px;
        line-height: 27px
    }
}

@media (max-width: 961px) {
    .text {
        font-size: 14px;
        line-height: 169%
    }
}

.container {
    margin: 0 auto;
    max-width: 1550px;
    padding-left: 15px;
    padding-right: 15px
}

.form__group, .form__input {
    max-width: 370px;
    width: 100%
}

.btn {
    font-size: 18px;
    line-height: 160%;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 270px;
    background: rgba(24, 117, 62, .1);
    border: 1px solid #18753E;
    border-radius: 5px;
    margin-top: 30px;
    cursor: pointer
}

@media (max-width: 569px) {
    .btn {
        height: 50px;
        width: 250px
    }

    .circlephone {
        display: none
    }
}

.btn:hover {
    border-radius: 8px;
    transform: scale(.95)
}

.popup-open {
    bottom: 25px;
    right: 10px;
    position: fixed;
    cursor: pointer;
    z-index: 100
}

.circlephone, .img-circle {
    box-sizing: content-box;
    position: absolute
}

.circlephone {
    -webkit-box-sizing: content-box;
    border: 2px solid #666;
    width: 100px;
    height: 100px;
    bottom: -25px;
    right: 10px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
    -moz-animation: circle-anim 2.4s infinite ease-in-out !important;
    -ms-animation: circle-anim 2.4s infinite ease-in-out !important;
    -o-animation: circle-anim 2.4s infinite ease-in-out !important;
    animation: circle-anim 2.4s infinite ease-in-out !important;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.img-circle {
    background: rgba(24, 117, 62, .8);
    -webkit-box-sizing: content-box;
    width: 50px;
    height: 50px;
    bottom: 0;
    right: 34px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(255, 255, 255, .5)
}

@media (max-width: 569px) {
    .img-circle {
        width: 30px;
        height: 30px
    }
}

.img-circleblock {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    width: 50px;
    height: 50px;
    background-image: url(../img/call.png);
    background-position: center center;
    background-repeat: no-repeat;
    animation-name: tossing;
    -webkit-animation-name: tossing;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}

@media (max-width: 569px) {
    .img-circleblock {
        background-size: contain;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 5px;
        top: 5px
    }
}

.form-group label, .panel {
    position: relative
}

.img-circle:hover {
    opacity: 1
}

@keyframes pulse {
    0%, 100% {
        transform: scale(.9);
        opacity: 1
    }
    50% {
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes pulse {
    0%, 100% {
        -webkit-transform: scale(.95);
        opacity: 1
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1
    }
}

@keyframes tossing {
    0%, 100% {
        transform: rotate(-8deg)
    }
    50% {
        transform: rotate(8deg)
    }
}

@-webkit-keyframes tossing {
    0%, 100% {
        -webkit-transform: rotate(-8deg)
    }
    50% {
        -webkit-transform: rotate(8deg)
    }
}

@-moz-keyframes circle-anim {
    0% {
        -moz-transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: .1
    }
    30% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -webkit-opacity: .5;
        -o-opacity: .5
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6;
        -moz-opacity: .6;
        -webkit-opacity: .6;
        -o-opacity: .1
    }
}

@-webkit-keyframes circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }
    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-o-keyframes circle-anim {
    0% {
        -o-transform: rotate(0) kscale(.5) skew(1deg);
        -o-opacity: .1
    }
    30% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        -o-opacity: .5
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        -o-opacity: .1
    }
}

@keyframes circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }
    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-moz-keyframes circle-fill-anim {
    0%, 100% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -moz-transform: rotate(0) -moz-scale(1) skew(1deg);
        opacity: .2
    }
}

@-webkit-keyframes circle-fill-anim {
    0%, 100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
}

@-o-keyframes circle-fill-anim {
    0%, 100% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
}

@keyframes circle-fill-anim {
    0%, 100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
}

.form__group {
    margin: 0 auto 20px
}

.form__label {
    font-size: 16px;
    line-height: 1.88;
    display: block;
    margin-bottom: 5px
}

.form__input {
    height: 52px;
    border-radius: 3px;
    border: 1px solid #d1d0cf;
    background-color: #fff;
    padding: 0 15px
}

.form__input.error {
    border: 1px solid red
}

@media (max-width: 569px) {
    .form__input {
        height: 40px
    }
}

label.error {
    display: none !important
}

.container-1669, .panel__top {
    display: flex;
    padding: 0 15px
}

.container-1669 {
    max-width: 1699px;
    width: 100%;
    margin-bottom: 30px;
    justify-content: space-between
}

.panel__top {
    background: red;
    height: 55px;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer
}

.panel__top svg {
    fill: #fff;
    transition: .3s all ease
}

.panel__top.active svg {
    transform: rotate(180deg)
}

.panel__bottom {
    padding: 15px 30px;
    border: 1px solid #E8E8E8;
    display: none
}

.panel.panel-small {
    width: 515px;
    padding: 0 15px
}

.panel.panel-large {
    width: 100%;
    padding: 0 15px
}

.form-group {
    display: block;
    margin-bottom: 15px
}

.form-group:last-child {
    margin-bottom: 0
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer
}

.form-group label {
    cursor: pointer
}

.form-group label:before {
    -webkit-appearance: none;
    background-color: transparent;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05), inset 0 -15px 10px -12px rgba(0, 0, 0, .05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px
}

.form-group input:checked + label:after {
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.call-form-modal, .call-form-modal .overlay {
    height: 100vh;
    top: 0;
    z-index: 101;
    width: 100%;
    overflow: hidden
}

.call-form-modal {
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75)
}

.call-form-modal .overlay {
    position: absolute;
    background: rgba(0, 0, 0, .55)
}

.call-form-modal .call-form {
    width: 100%;
    max-width: 630px;
    border-radius: 5px;
    background-color: #fff;
    padding: 50px 50px 80px;
    position: relative;
    z-index: 102
}

.call-form-modal .call-form__close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    height: 15px;
    width: 15px;
    transition: .3s all ease
}

.call-form-modal .call-form__close:after, .call-form-modal .call-form__close:before {
    content: '';
    height: 2px;
    width: 15px;
    background-color: var(--black);
    position: absolute;
    top: 5px
}

.call-form-modal .call-form__close:hover {
    transform: scale(1.15)
}

.call-form-modal .call-form__close:before {
    transform: rotate(-45deg)
}

.call-form-modal .call-form__close:after {
    transform: rotate(45deg)
}

.call-form-modal .call-form__title {
    color: var(--green);
    text-align: center;
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 600
}

@media (max-width: 720px) {
    .call-form-modal .call-form {
        padding: 30px 15px
    }

    .call-form-modal .call-form__title {
        font-size: 24px
    }
}

.call-form-modal .call-form__title span {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black)
}

@media (max-width: 720px) {
    .call-form-modal .call-form__title span {
        font-size: 14px
    }
}

.call-form-modal .call-form__text {
    color: var(--black);
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600
}

.call-form-modal .call-form__text a {
    color: var(--green);
    font-size: 18px;
    font-weight: 600
}

@media (max-width: 569px) {
    .call-form-modal .call-form__text a {
        display: block
    }
}

.call-form-modal .call-form__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    height: 52px;
    border-radius: 3px;
    background-color: var(--green);
    width: 100%;
    max-width: 370px;
    border: none;
    margin: 0 auto;
    padding: 0;
    cursor: pointer;
    transition: .3s all ease
}

.call-form-modal .call-form__btn:hover {
    border: 2px solid var(--green);
    background: rgba(255, 255, 255, .5);
    color: var(--green)
}

@media (max-width: 720px) {
    .call-form-modal .call-form__btn {
        height: 40px
    }
}

.call-form-modal.thank .call-form__title {
    font-weight: 700;
    font-size: 24px
}

.call-form-modal.thank .call-form__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    margin-top: 30px
}

.crumbs__item, .crumbs__link {
    color: var(--black);
    font-size: 14px
}

.crumbs {
    position: relative;
    z-index: 2;
    margin-bottom: 50px
}

.crumbs__item {
    display: inline;
    opacity: .75
}

.crumbs__link {
    opacity: .54;
    font-weight: 600
}

.product-item__item h3, .product-item__price {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    text-align: center
}

.crumbs__link.active, .crumbs__link:hover {
    opacity: 1
}

.menu-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 29px;
    cursor: pointer;
    display: none
}

@media (max-width: 769px) {
    .menu-wrapper {
        display: block
    }
}

.hamburger-menu, .hamburger-menu:after, .hamburger-menu:before {
    width: 50px;
    height: 5px
}

.hamburger-menu {
    position: relative;
    transform: translateY(12px);
    background: #fff;
    transition: all 0s .3s
}

.hamburger-menu.animate {
    background: rgba(255, 255, 255, 0)
}

.hamburger-menu:after, .hamburger-menu:before {
    content: "";
    position: absolute;
    left: 0;
    background: #fff
}

.hamburger-menu:before {
    bottom: 12px;
    transition: bottom .3s .3s cubic-bezier(.23, 1, .32, 1), transform .3s cubic-bezier(.23, 1, .32, 1)
}

.hamburger-menu:after {
    top: 12px;
    transition: top .3s .3s cubic-bezier(.23, 1, .32, 1), transform .3s cubic-bezier(.23, 1, .32, 1)
}

.hamburger-menu.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top .3s cubic-bezier(.23, 1, .32, 1), transform .3s .3s cubic-bezier(.23, 1, .32, 1)
}

.hamburger-menu.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom .3s cubic-bezier(.23, 1, .32, 1), transform .3s .3s cubic-bezier(.23, 1, .32, 1)
}

.hamb, .header, .header__logo img, .product-item__price {
    transition: .3s all ease
}

.product-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 90px
}

@media (max-width: 769px) {
    .product-item {
        margin-top: 50px
    }
}

@media (max-width: 569px) {
    .product-item {
        margin-top: 30px
    }
}

.product-item__item {
    width: 350px;
    height: 450px;
    margin: 15px;
    padding: 15px;
    box-shadow: 0 16px 16px #a5a5a5;
    position: relative
}

@media (max-width: 1024px) {
    .product-item__item {
        width: 300px;
        height: 470px
    }
}

@media (max-width: 569px) {
    .product-item__item {
        width: 300px;
        height: 450px;
        padding: 8px
    }
}

.product-item__item:hover {
    transform: scale(1.05)
}

.product-item__item img {
    height: 230px;
    max-width: 310px;
    display: block;
    margin: 0 auto;
    object-fit: cover
}

@media (max-width: 1024px) {
    .product-item__item img {
        height: 220px;
        max-width: 270px
    }
}

.product-item__item h3 {
    height: 63px;
    color: #333;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.product-item__item .btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    margin-left: -135px
}

@media (max-width: 569px) {
    .product-item__item .btn {
        margin-left: -125px
    }
}

.product-item__price {
    color: var(--green);
    margin: 15px 0;
    display: block
}

.header {
    position: fixed;
    width: 100%;
    height: 125px;
    z-index: 99;
    top: 0;
    background: rgba(24, 117, 62, .8)
}

@media (max-width: 1366px) {
    .header {
        height: 80px
    }
}

@media (max-width: 1024px) {
    .header {
        height: 80px
    }
}

@media (max-width: 569px) {
    .header {
        height: 60px
    }
}

.header__main {
    position: relative;
    width: 100%;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width: 1366px) {
    .header__main {
        height: 80px
    }
}

@media (max-width: 1024px) {
    .header__main {
        height: 80px
    }
}

@media (max-width: 769px) {
    .header__main {
        height: 100vh;
        justify-content: center;
        flex-direction: column;
        background: rgba(24, 117, 62, .8);
        position: absolute;
        width: 100%;
        left: -100%;
        transition: .3s all ease
    }

    .header__logo {
        order: 1
    }
}

.header__main.active {
    left: 0
}

.header__logo {
    display: block;
    text-align: center;
    font-weight: 700;
}

.header__logo img {
    height: 95px
}

@media (max-width: 1366px) {
    .header__logo img {
        height: 60px
    }
}

@media (max-width: 769px) {
    .header__logo img {
        height: 60px !important;
        margin-bottom: 80px
    }

    .header__lang {
        order: 3;
        margin-top: 80px
    }
}

@media (max-width: 569px) {
    .header__logo img {
        height: 60px !important;
        margin-bottom: 30px
    }
}

.header__logo:hover {
    border-bottom: none !important
}

.nav__item .materials-link:hover, .nav__link:hover {
    border-bottom: 2px solid #fff
}

.header__lang {
    display: flex
}

@media (min-width: 1366px) {
    .header__logo {
        width: 11%
    }

    .header__lang {
        width: 8%
    }
}

@media (max-width: 769px) {
    .header__logo {
        margin-bottom: 50px;
    }
}

.header__lang__item {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    text-transform: uppercase;
    padding: 0 9px 4px;
    border-right: 1px solid #fff;
    position: relative
}

.footer .copy, .footer .webx {
    font-size: 18px;
    line-height: 160%
}

.header__lang__item:last-child {
    border-right: 0 solid #fff
}

.header__lang__item.active {
    text-decoration: underline
}

.hamb {
    border-top: 2px solid #fff;
    width: 32px;
    height: 28px;
    cursor: pointer;
    display: block;
    position: relative;
    margin-top: 6px;
    z-index: 101
}

.hamb:after, .hamb:before {
    height: 2px;
    width: 32px;
    background-color: #fff;
    position: absolute;
    transition: all .3s ease;
    left: 0;
    content: ''
}

.hamb:before {
    top: 8px
}

.hamb:after, .hamb:hover:before {
    top: 18px
}

.hamb:hover:after {
    top: 9px
}

.hamb.active:after, .hamb.active:before {
    top: 13px;
    background-color: var(--green)
}

.hamb.active {
    border-top: none
}

.hamb.active:before {
    transform: rotate(-45deg)
}

.hamb.active:after {
    transform: rotate(45deg)
}

.header.fix-header {
    box-shadow: 0 4px 64px rgba(0, 0, 0, .1);
    height: 80px
}

@media (max-width: 569px) {
    .header.fix-header {
        height: 60px
    }
}

.header.fix-header .header__main {
    height: 80px
}

@media (max-width: 769px) {
    .header.fix-header .header__main {
        height: 100vh
    }
}

.header.fix-header .header__main .header__logo img {
    height: 60px
}

@media (max-width: 1024px) {
    .header.fix-header .header__main .header__logo img {
        height: 95px
    }
}

.footer {
    background: url(../img/footer.png) center no-repeat;
    background-size: cover;
    padding: 50px 0
}

.footer__main {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer__logo {
    height: 95px
}

.footer .webx {
    font-weight: 400;
    color: #FFF;
    width: 45%
}

@media (max-width: 569px) {
    .footer {
        padding: 25px 0
    }

    .footer__main {
        flex-wrap: wrap;
        flex-direction: column
    }

    .footer__logo {
        height: 60px;
        order: 1
    }

    .footer .webx {
        width: 100%;
        text-align: center;
        order: 2;
        margin: 15px 0
    }
}

.footer .webx a {
    font-weight: 700;
    color: #FFF
}

.footer .copy {
    font-weight: 400;
    color: #FFF;
    width: 45%;
    text-align: right
}

.nav__item .materials-link, .nav__link {
    line-height: 22px;
    text-transform: uppercase;
    font-style: normal
}

@media (max-width: 569px) {
    .footer .copy {
        width: 100%;
        text-align: center;
        order: 3
    }
}

/*@media (min-width: 1366px) {*/
/*    .nav {*/
/*        width: 45%*/
/*    }*/

/*    .nav.nav2 {*/
/*        width: 35%*/
/*    }*/

/*    .nav.nav2 .nav__item {*/
/*        margin-right: 20px*/
/*    }*/
/*}*/

.nav__list {
    display: flex;
    align-items: center;
    justify-content: center
}

.nav__item {
    margin-right: 40px
}

@media (max-width: 1024px) {
    .nav__item {
        margin-right: 20px
    }
}

.nav__item:last-child {
    margin-right: 0
}

.nav__item .materials-link {
    font-weight: 500;
    font-size: 16px;
    color: #fff
}

@media (max-width: 1024px) {
    .nav__item .materials-link {
        font-size: 14px
    }
}

@media (max-width: 769px) {
    .nav {
        order: 2
    }

    .nav__list {
        display: block;
        text-align: center
    }

    .nav__item {
        margin-right: 0;
        margin-bottom: 30px
    }

    .nav__item .materials-link {
        font-size: 32px;
        font-weight: 700
    }
}

@media (max-width: 569px) {
    .nav__item .materials-link {
        font-size: 22px
    }
}

.nav__link {
    font-weight: 500;
    font-size: 16px;
    color: #fff
}

.home-main__btn, .home-main__sub-title, .home-main__text, .home-main__title {
    line-height: 160%;
    color: #fff
}

@media (max-width: 1024px) {
    .nav__link {
        font-size: 14px
    }
}

@media (max-width: 769px) {
    .nav__link {
        font-size: 32px;
        font-weight: 700
    }
}

.home-main {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden
}

@media (max-width: 1600px) {
    .home-main {
        min-height: 760px
    }
}

@media (max-width: 569px) {
    .nav__link {
        font-size: 22px
    }

    .home-main {
        min-height: 620px
    }
}

.home-main .overlay {
    background: linear-gradient(122.33deg, rgba(24, 117, 62, .7) 36.87%, rgba(13, 86, 43, .6) 77.55%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2
}

.home-main__main {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 50px
}

.home-main__content {
    position: relative;
    z-index: 3;
    padding-top: 245px
}

@media (max-width: 1600px) {
    .home-main__main {
        min-height: 760px
    }

    .home-main__content {
        padding-top: 180px
    }
}

@media (max-width: 769px) {
    .home-main__content {
        padding-top: 150px
    }
}

.home-main__title {
    font-weight: 500;
    font-size: 32px;
    text-align: center
}

@media (max-width: 1600px) {
    .home-main__title {
        font-size: 28px
    }
}

@media (max-width: 569px) {
    .home-main__main {
        min-height: 620px
    }

    .home-main__content {
        padding-top: 90px
    }

    .home-main__title {
        font-size: 24px
    }
}

.home-main__sub-title {
    font-weight: 700;
    font-size: 60px;
    text-align: center;
    margin: 120px 0 30px
}

@media (max-width: 1600px) {
    .home-main__sub-title {
        margin: 80px 0 30px;
        font-size: 48px
    }
}

@media (max-width: 569px) {
    .home-main__sub-title {
        font-size: 32px;
        margin: 30px 0 15px
    }
}

.home-main__text {
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 60px
}

@media (max-width: 1600px) {
    .home-main__text {
        font-size: 20px
    }

    .home-main__bottom {
        padding: 0 100px
    }
}

@media (max-width: 569px) {
    .home-main__text {
        font-size: 16px;
        margin-bottom: 20px
    }
}

.home-main__btn {
    height: 60px;
    width: 240px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    margin: 0 auto
}

@media (max-width: 569px) {
    .home-main__btn {
        height: 50px
    }
}

.home-main__btn:hover {
    width: 220px;
    height: 55px
}

.home-main__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    width: 100%
}

@media (max-width: 569px) {
    .home-main__bottom {
        padding: 0;
        display: block;
        margin-top: 20px
    }

    .home-main__bottom__contact {
        margin-top: 15px
    }
}

.home-main__bottom__soc {
    display: flex
}

.home-main__bottom__soc a {
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 32px
}

@media (max-width: 720px) {
    .home-main__bottom__soc a {
        height: 35px;
        width: 35px
    }
}

.home-main__bottom__soc a svg {
    fill: #fff;
    height: 24px;
    width: 24px
}

.home-main__bottom__soc a:hover {
    opacity: .54
}

.home-main__bottom__contact a {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    color: #fff;
    display: block
}

@media (max-width: 1600px) {
    .home-main__bottom__contact a {
        font-size: 28px
    }
}

@media (max-width: 569px) {
    .home-main__bottom__contact a {
        font-size: 20px
    }
}

.home-main__bottom__contact span {
    font-size: 24px;
    color: #fff;
    display: block
}

.main-slider {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1
}

.main-slider__carousel-cell {
    background: url(../img/main.png) center no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%
}

@media (max-width: 1600px) {
    .home-main__bottom__contact span {
        font-size: 20px
    }

    .main-slider__carousel-cell {
        min-height: 760px
    }
}

.why {
    padding: 120px 0
}

@media (max-width: 1366px) {
    .why {
        padding: 60px 0
    }
}

@media (max-width: 1024px) {
    .why {
        padding: 30px 0
    }
}

.why__list {
    display: flex;
    justify-content: space-between;
    margin-top: 90px
}

@media (max-width: 769px) {
    .why__list {
        margin-top: 50px;
        flex-wrap: wrap
    }
}

.why__item {
    width: 400px
}

@media (max-width: 569px) {
    .home-main__bottom__contact span {
        font-size: 16px
    }

    .main-slider__carousel-cell {
        min-height: 620px
    }

    .why {
        padding: 20px 0
    }

    .why__item {
        width: 100%;
        margin-bottom: 20px
    }
}

.why__item img {
    height: 160px;
    display: block;
    margin: 0 auto
}

.why__item__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #333;
    margin: 30px 0
}

.why__item__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    text-align: center;
    color: #333
}

.why__item__text span {
    color: #000;
    font-weight: 500
}

.constructions {
    padding: 120px 0
}

@media (max-width: 1366px) {
    .constructions {
        padding: 60px 0
    }
}

@media (max-width: 1024px) {
    .constructions {
        padding: 30px 0
    }
}

@media (max-width: 569px) {
    .why__item__title {
        margin: 15px 0;
        font-size: 18px
    }

    .why__item__text {
        font-size: 15px
    }

    .constructions {
        padding: 20px 0
    }
}

.constructions__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 90px
}

.constructions__item {
    width: 50%;
    max-width: 730px;
    height: 370px;
    margin-bottom: 60px;
    border: 1px solid var(--green);
    display: flex;
    overflow: hidden
}

@media (max-width: 1366px) {
    .constructions__item {
        max-width: 630px
    }
}

@media (max-width: 1024px) {
    .constructions__item {
        display: block;
        height: 720px;
        max-width: 100%;
        width: 32%;
        position: relative
    }
}

@media (max-width: 769px) {
    .constructions__list {
        margin-top: 50px
    }

    .constructions__item {
        width: 48%;
        height: 700px
    }
}

@media (max-width: 569px) {
    .constructions__item {
        width: 100%;
        height: 630px
    }
}

.constructions__item img {
    height: 370px;
    display: block;
    object-fit: cover
}

@media (max-width: 1024px) {
    .constructions__item img {
        height: 350px;
        margin: 0 auto
    }
}

@media (max-width: 569px) {
    .constructions__item img {
        height: 290px
    }
}

.constructions__item__content {
    width: 60%;
    padding: 15px 30px 30px
}

@media (max-width: 1024px) {
    .constructions__item__content {
        width: 100%
    }

    .constructions__btn {
        position: absolute;
        bottom: 15px
    }
}

.constructions__item__content h3 {
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    color: #000
}

.constructions__item__content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: #000;
    margin: 15px 0
}

.constructions__item__content span {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 15px;
    color: #000;
    display: block
}

.constructions__item__content strong {
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: #000;
    display: block
}

.constructions__btn {
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 270px;
    background: rgba(24, 117, 62, .1);
    border: 1px solid #18753E;
    box-sizing: border-box;
    border-radius: 5px;
    margin-top: 30px;
    cursor: pointer;
    transition: .3s all ease
}

@media (max-width: 1366px) {
    .constructions__item__content {
        padding: 15px 15px 30px
    }

    .constructions__btn {
        height: 50px;
        width: 250px;
        margin-top: 20px
    }
}

.constructions__btn:hover {
    border-radius: 8px;
    transform: scale(.95)
}

.offer {
    padding: 120px 0
}

@media (max-width: 1366px) {
    .offer {
        padding: 60px 0
    }
}

@media (max-width: 1024px) {
    .offer {
        padding: 30px 0
    }
}

@media (max-width: 569px) {
    .offer {
        padding: 20px 0
    }
}

.offer__main {
    display: flex;
    align-items: center;
    margin-top: 90px
}

.offer__main img {
    max-height: 660px
}

.offer__content {
    width: 52%;
    padding-left: 60px
}

@media (max-width: 1024px) {
    .offer__main {
        flex-direction: column-reverse
    }

    .offer__main img {
        display: none
    }

    .offer__content {
        width: 100%;
        padding-left: 0
    }
}

.offer__content h4 {
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #333
}

@media (max-width: 769px) {
    .offer__main {
        margin-top: 50px
    }

    .offer__content h4 {
        font-size: 32px
    }
}

@media (max-width: 569px) {
    .offer__content h4 {
        font-size: 24px
    }
}

.offer__content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    color: #333;
    margin-top: 30px
}

.materials {
    position: relative;
    padding: 120px 0
}

@media (max-width: 1366px) {
    .materials {
        padding: 60px 0
    }
}

@media (max-width: 1024px) {
    .materials {
        padding: 30px 0
    }
}

.materials:before {
    content: '';
    width: 130px;
    height: 4px;
    background: var(--green);
    position: absolute;
    left: 50%;
    margin-left: -65px;
    top: -20px
}

.materials__list {
    display: flex;
    justify-content: space-between
}

.materials__item {
    width: 400px
}

@media (max-width: 769px) {
    .materials__list {
        flex-wrap: wrap;
        justify-content: center
    }

    .materials__item {
        width: 48%;
        margin-bottom: 20px
    }
}

.materials__item__img {
    height: 250px;
    display: block;
    margin: 0 auto
}

@media (max-width: 569px) {
    .offer__content p {
        font-size: 15px
    }

    .materials {
        padding: 20px 0
    }

    .materials__item {
        width: 100%
    }

    .materials__item__img {
        height: 180px
    }
}

.materials__item__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #333;
    margin: 30px 0
}

.materials__item__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    text-align: center;
    color: #333
}

@media (max-width: 569px) {
    .materials__item__title {
        font-size: 18px;
        margin: 15px 0
    }

    .materials__item__text {
        font-size: 15px
    }
}

.materials__link {
    font-weight: 700;
    font-size: 18px;
    line-height: 170%;
    text-align: center;
    text-decoration-line: underline;
    color: #2F80ED;
    display: block;
    margin-top: 20px
}

.works {
    padding: 120px 0
}

@media (max-width: 1366px) {
    .works {
        padding: 60px 0
    }
}

.works__carousel {
    margin-top: 90px
}

@media (max-width: 769px) {
    .works__carousel {
        margin-top: 50px
    }
}

.works__carousel-cell {
    width: 28%;
    margin-right: 60px
}

@media (max-width: 1024px) {
    .works {
        padding: 30px 0
    }

    .works__carousel-cell {
        width: 48%;
        margin-right: 20px
    }
}

@media (max-width: 569px) {
    .works {
        padding: 20px 0
    }

    .works__carousel-cell {
        width: 100%;
        margin-right: 15px
    }

    .works__carousel-cell p {
        padding: 0 15px
    }
}

.works__carousel-cell img {
    width: 540px;
    height: 400px;
    object-fit: cover;
    display: block
}

.works__carousel-cell p {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #333;
    margin-top: 15px
}

.question {
    background: url(../img/contact.png) center no-repeat;
    background-size: cover;
    padding: 120px 0
}

@media (max-width: 1600px) {
    .works__carousel-cell img {
        width: auto;
        height: 280px
    }

    .question {
        padding: 60px 0
    }
}

@media (max-width: 1024px) {
    .question {
        padding: 30px 0
    }
}

@media (max-width: 569px) {
    .question {
        padding: 20px 0
    }
}

.question .title {
    color: #fff
}

.question .title:after {
    background: #fff
}

.question__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    text-align: center;
    color: #FFF;
    margin-top: 90px
}

@media (max-width: 769px) {
    .question__text {
        margin-top: 50px
    }
}

.question__form {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.question__form input {
    background: #FFF;
    border: 1px solid #BCBCBC;
    box-sizing: border-box;
    border-radius: 5px;
    width: 700px;
    height: 60px;
    padding: 0 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #828282
}

.question__form input.error {
    border: 1px solid red
}

@media (max-width: 769px) {
    .question__form input {
        width: 100%;
        height: 50px
    }
}

.question__btn {
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 240px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s all ease;
    margin-top: 60px
}

.contact {
    padding: 120px 0
}

@media (max-width: 1366px) {
    .contact {
        padding: 60px 0
    }
}

@media (max-width: 1024px) {
    .contact {
        padding: 30px 0
    }
}

.contact__main {
    display: flex;
    margin-top: 90px
}

@media (max-width: 569px) {
    .question__btn {
        height: 50px;
        width: 250px
    }

    .contact {
        padding: 20px 0
    }

    .contact__main {
        flex-wrap: wrap
    }
}

.contact #map {
    width: 75%;
    height: 600px
}

@media (max-width: 1366px) {
    .contact #map {
        width: 60%;
        height: 480px
    }
}

@media (max-width: 769px) {
    .contact__main {
        margin-top: 50px
    }

    .contact #map {
        width: 50%;
        height: 350px
    }
}

@media (max-width: 569px) {
    .contact #map {
        width: 100%;
        height: 320px
    }
}

.contact__content {
    padding-left: 100px;
    width: 25%
}

@media (max-width: 1366px) {
    .contact__content {
        width: 40%;
        padding-left: 50px
    }
}

@media (max-width: 769px) {
    .contact__content {
        width: 50%;
        padding-left: 30px
    }
}

@media (max-width: 569px) {
    .contact__content {
        width: 100%;
        padding-left: 0;
        margin-top: 20px
    }
}

.contact__content__item {
    margin-bottom: 60px;
    position: relative;
    padding-left: 25px
}

@media (max-width: 1024px) {
    .contact__content__item {
        margin-bottom: 30px
    }
}

.contact__content__item svg {
    position: absolute;
    left: -10px;
    top: 2px
}

.contact__content__item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #131313;
    display: block
}

.contact__soc {
    display: flex;
    margin-top: 120px
}

.contact__soc a {
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green);
    border-radius: 50%;
    margin-right: 32px
}

.contact__soc a svg {
    fill: var(--green);
    height: 24px;
    width: 24px
}

.catalog {
    padding: 160px 0 80px
}

@media (max-width: 1366px) {
    .catalog {
        padding: 100px 0
    }
}

@media (max-width: 569px) {
    .contact__soc {
        margin-top: 30px
    }

    .catalog {
        padding: 80px 0
    }
}

.catalog__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 90px
}

@media (max-width: 769px) {
    .catalog__list {
        margin-top: 50px
    }
}

.catalog__item {
    width: 400px;
    margin: 15px
}

@media (max-width: 569px) {
    .catalog__item {
        margin: 15px 0
    }
}

.catalog__item:hover {
    transform: scale(1.05)
}

.catalog__item:hover h3 {
    color: var(--green)
}

.catalog__item img {
    height: 250px;
    display: block;
    margin: 0 auto;
    object-fit: cover
}

@media (max-width: 769px) {
    .catalog__item {
        width: 320px
    }

    .catalog__item img {
        height: 230px;
        max-width: 310px
    }

    .product__main {
        flex-direction: column-reverse
    }
}

.catalog__item h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #333;
    margin: 30px 0;
    transition: .3s all ease
}

@media (max-width: 569px) {
    .catalog__item img {
        height: 180px;
        max-width: 280px
    }

    .catalog__item h3 {
        font-size: 20px;
        margin: 15px 0
    }
}

.catalog__info {
    margin-top: 50px;
    border-bottom: 3px solid var(--green);
    padding: 15px;
    text-align: center;
    border-top: 3px solid var(--green);
    font-size: 18px;
    font-weight: 500
}

.product {
    max-width: 1130px;
    width: 100%;
    box-shadow: 0 16px 16px #a5a5a5;
    margin: 0 auto 90px;
    padding: 0 15px 15px
}

.product__main {
    display: flex
}

.product__main img {
    width: 370px;
    max-height: 370px;
    display: block;
    margin: 0 0 0 30px;
    object-fit: cover
}

@media (max-width: 769px) {
    .product__main img {
        margin: 0 auto
    }
}

.product__main__info {
    padding: 30px
}

@media (max-width: 1366px) {
    .product__main__info {
        padding: 30px 0
    }
}

.product__main__info h1 {
    font-size: 24px
}

@media (max-width: 569px) {
    .product__main img {
        width: 250px;
        max-height: 220px
    }

    .product__main__info {
        padding: 15px 0
    }

    .product__main__info h1 {
        font-size: 18px
    }
}

.product__main__info__price {
    color: var(--green);
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-size: 24px;
    font-weight: 700
}

@media (max-width: 569px) {
    .product__main__info__price {
        font-size: 18px
    }
}

.product__main__info__short {
    font-size: 14px;
    line-height: 160%;
    color: var(--black);
    margin-top: 15px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.product__main__info__short strong {
    margin: 10px 0;
    display: block
}

.product__main__info .more-info {
    display: block;
    color: var(--green);
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer
}

.product__main__info__contact {
    font-size: 13px;
    line-height: 160%;
    color: var(--black);
    margin-top: 5px;
    padding-top: 5px;
    font-weight: 500;
    border-top: 2px solid var(--green)
}

.product__main__info__contact a {
    color: var(--green);
    font-weight: 700
}

.product__main__info__contact a:hover {
    opacity: .75
}

.product__info {
    margin-top: 30px
}

.product__info h1, .product__info h2, .product__info h3, .product__info h4, .product__info h5, .product__info h6 {
    margin: 20px 0
}

.product__info p {
    margin: 15px 0;
    font-weight: 500
}

.product__info .table-container {
    max-width: 100%;
    overflow-x: auto
}

.product__info table {
    border-collapse: collapse;
    margin: 15px 0
}

.product__info table, .product__info td, .product__info th {
    border: 1px solid #DAD9D8;
    padding: 15px 20px
}

.product__info td {
    font-size: 16px
}

.product__info td:first-child {
    background: #EFEFEE
}