/*-------------------------------------*/
/* Base                                */
/*-------------------------------------*/
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: #333;
    background: #efefef;
}

body.overflow {
    overflow: hidden;
}

.container {
    --bs-gutter-x: 2rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px!important;
}

h1, h2, h3, h4, h5, h6 {
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
    font-weight: 500;
    color: #202c5e;
    line-height: 1.2;
}

h1 {
    font-size: 240%;
    font-weight: bold;
    line-height: 1.3;
}

h2 {
    font-size: 200%;
    padding: 24px 0;
}

h3 {
    font-size: 160%;
    padding: 18px 0;
}

h4 {
    font-size: 140%;
    padding: 16px 0;
}

h5 {
    font-size: 120%;
    padding: 12px 0;
}

h6 {
    font-size: 110%;
    padding: 8px 0;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    padding: 16px 0;
    margin: 0;
    line-height: 1.6;
}

ul {
    padding: 16px 0 16px 32px;
    margin: 0;
}

ul li {
    padding: 4px 0;
    margin: 0;
}

table {
    width: 100%;
}

table td {
    padding: 12px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 220%;
    }

    h2 {
        font-size: 180%;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 200%;
    }

    h2 {
        font-size: 160%;
    }

    h3 {
        font-size: 150%;
    }

    h4 {
        font-size: 130%;
    }
}

@media (max-width: 559px) {
    h1 {
        font-size: 180%;
    }

    h2 {
        font-size: 150%;
    }

    h3 {
        font-size: 140%;
    }

    h4 {
        font-size: 120%;
    }
}

.social a {
    text-decoration: none;
}

/*-------------------------------------*/
/* Buttons                             */
/*-------------------------------------*/

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    min-height: 46px;
    padding: 8px 30px;
    white-space: nowrap;
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 80%;
    line-height: 1.1;
    border: none;
    border-radius: 60px;
    background: #cbd2d7;
    cursor: pointer;
    transition: 0.2s;
}

.button:hover {
    color: #fff;
    background: #f24209
}

.button-close {
    display: block;
    position: relative;
    width: 28px;
    height: 28px;
    line-height: 0;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s;
    background: url(../images/circle-xmark.svg) no-repeat center;
    background-size: cover;
}

.button-close:hover {
    opacity: 1;
}

.button-burger {
    display: none;
    position: relative;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: 0.2s;
}

.button-burger span {
    display: block;
    position: relative;
    width: 100%;
    height: 4px;
    background: #fff;
    margin: 2px 0;
    border-radius: 2px;
    transition: 0.2s;
}

.button-burger:hover span {
    background: #ff552a;
}

/*-------------------------------------*/
/* Toolbar                             */
/*-------------------------------------*/

.toolbar {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.toolbar .row {
    min-height: 140px;
}

.toolbar .logo {
    max-width: 160px;
    margin-top: -15px;
    margin-right: 30px; 
}

.main-menu .mod-list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-menu .mod-list li {
    margin: 0 40px;
}

.main-menu .mod-list a {
    box-sizing: border-box;
    font-size: 75%;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}
.main-menu .mod-list a:hover {
    border-color: #fff;
}

@media (max-width: 1280px) {
    .toolbar .logo {
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .toolbar .row {
        min-height: 100px;
    }
}

/*-------------------------------------*/
/* Header                              */
/*-------------------------------------*/

.header {
    min-height: 700px;
    height: 100vh;
    background: url(../images/bg-header.webp) no-repeat center #4a505e;
    background-size: cover;
    overflow: hidden;
}

.header__flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header__intro {
    position: relative;
    box-sizing: border-box;
    padding: 120px 16px 0;
    text-align: center;
}

.header__info {
    position: relative;
}

.header__intro::before {
    position: absolute;
    box-sizing: border-box;
    content: '';
    top: -60px;
    left: 50%;
    margin-left: -800px;
    bottom: 0;
    width: 1600px;
    min-height: 600px;
    max-height: 600px;
    background: url(../images/bg-title.webp) no-repeat center;
    background-size: contain;
}

.header__intro h1 {
    font-weight: 600;
    font-size: 300%;
    color: #000;
    line-height: 1.1;
}

.header__intro p {
    font-size: 120%;
    color: #202c5e;
    line-height: 1.2;
}

.header .control-lang a {
    color: #111;
    text-decoration: none;
    margin: 0 20px;
}

.header .control-lang a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .header__intro h1 {
        font-size: 250%;
    }
}

@media (max-width: 576px) {
    .header__intro h1 {
        font-size: 200%;
    }

    .header__intro::before {
        top: 0;
        min-height: 400px;
        max-height: 500px;
    }
}

/*-------------------------------------*/
/* Sections                            */
/*-------------------------------------*/

.section {
    padding: 40px 0;
}

.section-alfresco,
.section-ceiling {
    background: #e2e7eb;
}

.section-advantages {
    background: #fff;
    font-size: 80%;
}

.section-advantages .advantages-header {
    display: flex;
    align-items: center;
    line-height: 1.1;
}

.section-advantages .advantages-header img {
    margin-right: 20px;
}

.section-form {
    position: relative;
    background: #fff;
}

.section-form__back {
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background: url('../images/bg-form.webp') no-repeat 0 100%;
    background-size: cover;
}

.section-form__form {
    position: relative;
}

@media (max-width: 768px) {
    .section-form__back {
        right: 0;
    }
}

/*-------------------------------------*/
/* Swiper                              */
/*-------------------------------------*/

.swiper {
    user-select: none;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-height: 600px;
    overflow: hidden;
}

.swiper-thumb {
    max-height: none;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    border: 1px solid #222530;
}

.swiper-thumb.swiper-slide-thumb-active {
    border: 3px solid #ef0808;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-info {
    display: none;
    position: absolute;
    box-sizing: border-box;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    color: #fff;
    font-size: 90%;
    background: rgba(0,0,0,0.5);
}

.swiper-title {
    padding: 0;
    margin: 0;
    font-size: 90%;
    color: #dadde3;
}

.swiper-description {
    padding-top: 10px;
    font-size: 80%;
}

.section-slider .swiper {
    padding: 40px;
}

.section-slider .swiper-slide {
    display: block;
    height: 480px;
    aspect-ratio: auto;
    background: no-repeat center;
    background-size: cover;
}

.section-slider .swiper-slide::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0.5;
    transition: 0.3s;
}

.section-slider .swiper-slide-active::after {
    opacity: 0;
}

@media (max-width: 992px) {
    .swiper-slide {
        aspect-ratio: 1/1;
        max-height: none;
    }

    .swiper-thumb {
        max-height: none;
    }
}

@media (max-width: 576px) {
    .section-slider .swiper-slide {
        height: 300px;
    }
}

/*-------------------------------------*/
/* form                                */
/*-------------------------------------*/

.section-form form div {
    position: relative;
}

.section-form label {
    color: #898989;
    line-height: 1.2;
    font-size: 80%;
}

.section-form input {
    position: relative;
    box-sizing: border-box;
    height: 36px;
    width: 100%;
    padding: 0;
    margin: 10px 0 40px;
    color: #000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #b3b3b3;
    outline: none;
}

.section-form input::placeholder {
    opacity: 0;
}

.section-form input.uk-form-danger {
    border-color: darkred;
}

.section-form .subscribe {
    color: #3b3e4f;
    line-height: 1.2;
    font-size: 80%;
    margin-top: 20px;
}

.section-form .uk-form-danger + .tm-error {
    display: block;
}

.section-form .tm-error {
    display: none;
    position: absolute;
    font-size: 14px;
    color: darkred;
    width: 100%;
    left: 0;
    bottom: 20px;
    line-height: 1.2;
}

.section-form input::placeholder {
    opacity: 0;
}

@media (max-width: 767px) {
    .section-form__back::after {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
    }

    .section-form {
        text-align: center;
        color: #fff;
    }

    .section-form h3 {
        color: #fff;
    }

    .section-form label {
        display: none;
    }

    .section-form input {
        padding: 30px;
        border: 2px solid transparent;
        border-radius: 60px;
        background: #fff;
        font-size: 90%;
    }

    .section-form input::placeholder {
        opacity: 1;
    }

    .section-form input.uk-form-danger {
        color: #ff0000;
    }

    .section-form .tm-error {
        color: #ffffff;
        text-shadow: 1px 1px 0 #000;
        text-align: center;
    }

    .section-form .subscribe {
        color: #eee;
    }
}

/*-------------------------------------*/
/* Footer                              */
/*-------------------------------------*/

.footer {
    position: relative;
    padding: 30px 0;
    min-height: 300px;
    background: #222530;
}

.footer .email {
    color: #fff;
    text-decoration: none;
}

.footer .email:hover {
    text-decoration: underline;
}

.footer__contact {
    color: #fff;
    text-align: center;
}

.footer__contact h3,
.footer__contact h4 {
    color: #fff;
}

.footer__logo {
    max-width: 200px;
}

/*-------------------------------------*/
/* Menu mobile                         */
/*-------------------------------------*/

.menu-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    overflow: hidden;
}

.menu-mobile.open {
    display: block;
}

.menu-mobile__wrapper {
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    opacity: 0;
    transition: 0.1s ease-in-out;
}

.menu-mobile__wrapper.fade {
    opacity: 1;
}

.menu-mobile__body {
    display: block;
    position: absolute;
    box-sizing: border-box;
    padding: 15px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    top: 0;
    right: -100%;
    background: #222530;
    overflow-y: auto;
    transition: 0.3s ease-in-out;
}

.menu-mobile__body.slide {
    right: 0;
}

.menu-mobile__menu {
    display: block;
    position: relative;
    margin: 30px 0;
}

.menu-mobile__menu ul {
    display: block;
    position: relative;
    padding: 16px 0 0;
    margin: 0;
    list-style: none;
}

.menu-mobile__menu li {
    display: block;
    position: relative;
    padding: 4px 0;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.menu-mobile__menu li:last-child {
    border: none;
}

.menu-mobile__menu li > a {
    display: flex;
    position: relative;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 16px;
    font-size: 120%;
    line-height: 1.2;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.2s;
}

.menu-mobile__menu li > a:hover {
    color: #ff552a;
}

.menu-mobile__tool {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}