@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf');
}

html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Inter', sans-serif;
}

button:hover {
    cursor: pointer;
    opacity: .8;
}

.container {
    width: 1460px;

    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
}

.container.narrow {
    padding-left: 70px;
    padding-right: 70px;

}

.header {
    background: #232F42;
    position: relative;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 19px;
}

.logo-img {
    width: 300px;
}

.site-nav {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.nav-menu-item {
    color: inherit;
}

.nav-menu-item + .nav-menu-item {
    margin-left: 30px;
}

.nav-menu-item:hover {
    text-decoration: underline;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: white;
}
.header-social,
.footer-social{
    margin-top: 15px;
    text-align: right;
}
.header-social-item + .header-social-item,
.footer-social-item + .footer-social-item{
    margin-left: 15px;
}

.header-social-item img,
.footer-social-item img{
    height: 20px;
    transition: transform .3s;
}

.header-social-item:hover img,
.footer-social-item:hover img{
    transform: scale(1.2);
}

.header-social-item:last-child {
    display: none;
}

.language,
.mobile-menu {
    color: #fff;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    z-index: 9;
    font-size: 25px;
    background-color: #232F42;
    padding: 10px;
}

.language {
    left: 0;
}
.close-menu {
    display: none;
}
.mobile-menu {
    right: 0;
    cursor: pointer;
    display: none;
    z-index: 9;
}

.language-link--active {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.other-languages {
    padding: 15px 10px 10px;
    background-color: #232F42;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 0;
    position: absolute;
    opacity: 0;
    transition: all .3s;
}
.other-languages a:hover {
    text-decoration: underline;
}

.language:hover .other-languages {
    font-size: inherit;
    opacity: 1;
}

.address {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

footer .address {
    align-items: flex-start;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
}

.address > *:not(:first-child) {
    margin-top: 10px;
}

.header.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
}

.header.sticky .header-contacts {
    font-size: 0;
}

.header.sticky .header-contacts *{
    margin-top: 0;
    margin-bottom: 0;
}

.header.sticky .language{
    display: none;
}

.hero {
    margin-top: -3px;
    position: relative;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    padding: 89px 0 123px;
    align-items: stretch;
}

.hero .container > * {
    width: calc(50% - 30px);
}

.hero-bg-video {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.heroVideo {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    position: absolute;
    z-index: -1;
    filter: brightness(50%);
}

.heroTitle {
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    background: rgba(0, 0, 0, .75);
    mix-blend-mode: normal;
    border-radius: 8px;
    color: #FFF;
}

.heroTitle .h1 {
    font-size: 36px;
    font-weight: 700;

}

.heroTitle .text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.05;
}


.hero-form {
    padding: 32px 63px 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background: rgba(0, 0, 0, .75);
    color: #FFF;
    border-radius: 8px;
    position: relative;
}

.site-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}

.hero-form .site-title {
    margin-bottom: 25px;
}

.heroForm-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.heroForm-form label + label {
    margin-top: 11px;
}

.heroForm-form input {
    border-radius: 8px;
    background: #F5F5F5;
    font-size: 16px;
    width: 100%;
    font-weight: 400;
    padding: 22px 12px;
    border: 1px solid transparent;
}

.heroForm-form input::placeholder,
textarea::placeholder {
    color: #B7B7B7;
    font-style: italic;
}

.callback-form textarea {
    resize: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    border: 2px solid transparent;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    border: 2px solid #FFA800;
}

.heroForm-form .heroForm-submit {
    width: 100%;
    background-color: #FFA800;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 11px;
}

.heroForm-form .heroForm-submit:hover {
    opacity: .8;
}

.feedback-form-success,
.feedback-form-error,
.feedback-form-error-time {
    text-align: center;
    font-weight: 700;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}

.feedback-form-success.hidden,
.feedback-form-error.hidden,
.feedback-form-error-time.hidden {
    opacity: 0;
    display: none;
}

.feedback-form-success {
    color: green;
}

.feedback-form-error,
.feedback-form-error-time {
    color: orangered;
}

.about {
    margin-top: 75px;
}

.about .container .site-title {
    font-size: 36px;
    font-weight: 700;

}

.site-title-description {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.services {
    padding-top: 35px;
}

.services .container .site-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;

}


.categories-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 75px;
    margin-top: 35px;
}

.categories-card {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: calc(33% - 18px * 3 / 4);
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 3px 3px 16px 0 rgba(0, 0, 0, 0.10);
}

.production .categories-card {
    width: calc(25% - 18px * 3 / 4);
}

.categories-card:nth-child(n + 4) {
    margin-top: 18px;
}

.production .categories-card:nth-child(4) {
    margin-top: 0;
}

.categories-card-img {
    background: #232F42;
}

.services-card-img {
    width: 100%;
}


.categories-card .categories-card-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    text-align: center;


}


.categories-card-img {
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 10px;

}

.categories-card .services-card-spark {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);

}

.recall-section {
    background: linear-gradient(180deg, #FFA800 0%, #ED772D 100%);
}

.recall-section .container {
    height: 152px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.recall-text {
    font-size: 28px;
    font-weight: 700;
    width: 862px;
    margin-right: 20px;
}

.recall-text .text-block-small {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.05;
}

.recall .recallTitle :last-child {
    font-size: 20px;
    font-weight: 400;
    width: 652px;
}


.recall-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #232F42;
    width: 445px;
    padding-top: 14px;
    padding-bottom: 14px;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
}

.recall-btn-icon {
    margin-right: 17px;
}


.materials {
    margin-top: 75px;

}

.materials .container .site-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}

.materials-wrapper {
    margin-top: 75px;
    display: flex;
    justify-content: space-between;
}

.materials-item {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proposal {

    display: flex;
    flex-direction: column;
    margin-bottom: 75px;
}

.proposal .container {
    margin-top: 75px;
    display: flex;
    flex-direction: column;


}

.proposal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1400px;
}

.proposal-item + .proposal-item {
    margin-top: 20px;

}

.proposal-item:nth-child(even) {
    flex-direction: row-reverse;
}

.proposal-text {
    width: 863px;
    padding-left: 20px;
}

.proposal-item .proposal-text-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;

}

.proposal-text .proposal-text-text {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.05;
}

.proposal-text .proposal-text-text > * + * {
    margin-top: 10px;
}

.proposal-text ul {
    margin-top: 20px;
    padding-left: 40px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.05;
    list-style: disc;
}

.price {
    background: #232F42;
    color: #fff;
}

.price.white {
    padding-bottom: 40px;
}

.price + .price {
    background-color: transparent;
    color: #000;
}

.blue {
    padding-bottom: 60px;
}

.price .container {
    text-align: center;
    padding-top: 75px;

    width: 1138px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.price .container .site-title {
    font-size: 36px;
    font-weight: 700;
}

.price .container .site-title-description {
    margin-top: 20px;
}

.price.blue .price-table {
    width: 70%;
}

.price.white .price-table.with-hidden tr:nth-child(n + 5) td {
    font-size: 0;
    padding: 0;
    border-width: 0;
    opacity: 0;
}

.price-table-table {
    margin-top: 10px;
    width: 100%;
    background: #F5F5F5;
    color: #232F42;
    table-layout: fixed;
    overflow: hidden;
}

.price.blue .price-table-table {
    margin-top: 22px;
    border-radius: 16px;
    border: none;
    margin-bottom: 30px;
}

.price.blue th,
.price.blue td {
    border: 2px solid #232F42;
}

.price.white .price-table-table {
    border-radius: 16px 16px 0 0;
}

.price.white th + th {
    border-left: 2px solid #232F42;
}

.price.white td {
    border: 2px solid #232F42;
}

.price-table-table th {
    padding: 15px;
    background: #D9D9D9;

    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
}

.price-table-table td {
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.05;
    transition: .5s;
}

.price-table-btns {
    display: flex;
    justify-content: space-between;
}

.price-table-btns > * {
    width: calc(50% - 31px / 2);
}

.price-table-btn-download {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    background-color: #A5AAAC;
}

.price-table-btn-download:hover {
    cursor: pointer;
    opacity: .8;
}

.price-table-btns .recall-btn {
    background-color: #FFA800;
}


.price-table-title {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
}

.price-table-title small {
    display: block;
    font-size: 0.5em;
    font-weight: 300;
}


.costSlice .costBtn form {
    width: 1322px;
    margin-top: 0;
}

.price-table-btn-add {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -3px;
    width: 100%;
    border-radius: 0 0 8px 8px;
    font-size: 20px;
    font-weight: 700;
    padding-top: 14px;
    padding-bottom: 14px;
    border: none;
    background-color: #FFA800;
    color: white;
    position: relative;
}

.price-table-btn-add-text-alt {
    opacity: 0;
    transition: .5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.price-table-btn-add-text-alt img {
    transform: rotate(180deg);
}

.price-table-btn-add-text {
    transition: all .7s;
    display: flex;
    align-items: center;
}

.price-table-btn-add.clicked .price-table-btn-add-text {
    opacity: 0;
    transition: .7s;
}

.price-table-btn-add.clicked .price-table-btn-add-text-alt {
    opacity: 1;
    font-size: inherit;
}

.benefits .container {
    color: white;

}

.benefits {
    padding-top: 75px;
    padding-bottom: 105px;
    background: #232F42;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.benefits-wrapper {
    margin-top: 46px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.benefits-card {
    width: calc(50% - 38px / 2);
    height: 160px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    background: #1b1a37;
    color: white;
}

.benefits-card:nth-child(n + 3) {
    margin-top: 25px;
}

.benefits-card .benefits-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    color: #FFA800;

}

.benefits-card-text {
    padding: 17px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefits-card-text .benefits-card-text-text {
    margin-top: 10px;
    width: 467px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.05;
    color: white;
}

.about-us .container .site-title {
    margin-top: 75px;
}

.about-us-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: space-evenly;
}

.about-us-wrapper .about-us-card {
    width: 280px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.about-us-wrapper .about-us-card .about-us-card-icon {
    width: 154px;
}

.about-us-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    color: #FFA800;

}

.about-us-card-text {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;

}

.partners .container .site-title {
    margin-top: 75px;
}

.partners-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partners-wrapper-img {
    width: 15%;
}

.callback-form {
    background-image: url('../img/form-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 75px;
}

.callback-form .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 56px;
}

.callback-form-left {
    color: white;
    width: 50%;
    text-align: start;
    margin-right: 65px;
}

.callback-form-left .site-title-description,
.callback-form-left .site-title {
    text-align: start;
    width: auto;
}

.callback-form-form {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 30px;
    background: rgba(0, 0, 0, .7);
    color: #FFF;
    border-radius: 8px;
    position: relative;
}

.callback-form-label {
    margin-top: 15px;
}

.callback-form-form .callback-form-name,
.callback-form-form .callback-form-tel,
.callback-form-form .callback-form-email,
.callback-form-form .callback-form-comment {
    padding: 18px 12px;
    border-radius: 8px;
    background: #F5F5F5;
    font-size: 16px;
    width: 100%;
    font-weight: 400;
    line-height: 1;
}

.callback-form-form input::placeholder,
textarea::placeholder {
    color: #B7B7B7;
    font-style: italic;
}

.callback-form-form .callback-form-submit {
    color: #FFF;
    background-color: #FFA800;
    margin-top: 40px;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
}

.callback-form-form .callback-form-submit:hover {
    cursor: pointer;
    opacity: .8;
}

input:focus-visible, textarea:focus-visible {
    outline: none;
}

.callback-form-form .callback-form-comment {
    height: 205px;
    text-align: start;
}

.footer {
    background: #232F42;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
}
.footer-nav,
.footer-right{
    margin-top: 30px;
}
.footer-nav-menu {
    flex-direction: column;
}

.footer-address {
    margin-top: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.footer-social {
    text-align: left;
}

.footer-title {
    font-size: 28px;
    font-weight: 700;

}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-right-link{
    text-decoration: underline;
}

.footer-right-link + .footer-right-link {
    margin-top: 50px;
}

.footer-right-link:hover {
    text-decoration: underline;
}
.copyright {
    text-align: center;
    margin-top: 40px;
}
@media only screen and (max-width: 1599px) {
    /*1400*/
    .container {
        max-width: 1320px;
    }

    .proposal-item {
        width: 100%;
    }
}

@media only screen and (max-width: 1399px) {
    /*1200*/
    .logo-img {
        width: 200px;
    }
    .header-contacts {
        font-size: 16px;
    }

    .site-nav {
        font-size: 16px;
    }

    .nav-menu-item + .nav-menu-item {
        margin-left: 20px;
    }

    .container {
        max-width: 1140px;
    }

    .heroTitle {
        width: 48%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .heroTitle .h1 {
        font-size: 35px;
    }

    .hero-form {
        width: 48%;
    }

    .categories-card {
        height: 250px;
    }

    .materials-item-icon {
        width: 80%;
    }

    .proposal-text .proposal-text-text {
        margin-top: 10px;

        font-size: 17px;
        font-weight: 400;
        line-height: 1.05;
    }

    .proposal-item + .proposal-item .proposal-text .proposal-text-text {
        margin-right: 10px;
    }

    .proposal-text ul {
        font-size: 17px;
        font-weight: 400;
        line-height: 1.05;
    }

    .benefits-card-text .benefits-card-text-text {
        width: 100%;
    }


}


@media only screen and (max-width: 1199px) {
    /*992*/
    .container {
        max-width: 960px;
    }

    .hero .container {
        padding: 70px 0 70px;
    }

    .hero .container > * {
        width: calc(50% - 15px);
    }

    .heroTitle .h1,
    .about .container .site-title,
    .services .container .site-title,
    .materials .container .site-title,
    .price .container .site-title,
    .site-title {
        font-size: 30px;
    }

    .heroTitle .text,
    .site-title-description,
    .categories-card .categories-card-title,
    .recall-btn,
    .materials-item,
    .proposal-item .proposal-text-title,
    .price .container .site-title-description,
    .price-table-table th,
    .benefits-card .benefits-card-title,
    .about-us-card-title {
        font-size: 18px;
    }

    .footer-title,
    .footer-right-menu {
        font-size: 22px;
    }

    .proposal-text .proposal-text-text,
    .proposal-text ul,
    .price-table-table td,
    .benefits-card-text .benefits-card-text-text,
    .text-block-small,
    .about-us-card-text,
    .header-contacts,
    .footer-right-menu li {

        font-size: 14px;
    }

    .heroForm-form {
        width: 100%;
    }

    .heroForm-form input {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .about,
    .materials {
        margin-top: 50px;
    }

    .price .container, .benefits {
        padding-top: 50px;
    }

    .categories-card {
        height: 200px;
    }

    .recall-text {

        font-size: 24px;
    }

    .recall-btn {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .proposal-img {
        width: 50%;
    }

    .blue {
        height: 700px;
    }

    .benefits {
        padding-bottom: 60px;
    }

    .callback-form-form .callback-form-name,
    .callback-form-tel,
    .callback-form-submit,
    .callback-form-email,
    .callback-form-comment {
        padding-top: 15px;
        padding-bottom: 15px;
        height: 100%;
    }

    .callback-form-form .callback-form-submit {
        background-position: 20px;
    }

    .footer-social img {
        height: 20px;
    }

}


@media only screen and (max-width: 991px) {
    /*768*/
    .container {
        max-width: 720px;
    }

    header .site-nav {
        position: fixed;
        left: 50px;
        right: 50px;
        top: 50px;
        bottom: 50px;
        background-color: #232F42;
        display: flex;
        flex-direction: column;
        padding-left: 30%;
        justify-content: center;
    }

    .nav-menu-item + .nav-menu-item {
        margin-left: 0;
        margin-top: 30px;
    }

    .close-menu {
        cursor: pointer;
        display: block;
        position: absolute;
        right: 10px;
        top: 0;
        color: #fff;
        font-size: 50px;
    }

    .site-nav-bd {
        content: '';
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(35, 47, 66, .5);
        backdrop-filter: blur(8px);
        z-index: -1;
        opacity: 0;
        transition: all .5s;
    }
    header .site-nav {
        z-index: -1;
        display: none;
    }

    .site-nav-bd.shown {
        z-index: 10;
        opacity: 1;
        display: block;
    }

    .site-nav-bd.shown .site-nav {
        z-index: 11;
        display: flex;
    }

    .mobile-menu {
        display: block !important;
    }

    .header.sticky .container {
        padding: 0;
    }

    .header.sticky .container .logo,
    .header.sticky .container .header-contacts{
        display: none;
        margin: 0;
        padding: 0;
    }


    .heroTitle .h1,
    .about .container .site-title,
    .services .container .site-title,
    .materials .container .site-title,
    .price .container .site-title,
    .site-title {
        font-size: 24px;
    }

    .heroTitle .text,
    .site-title-description,
    .categories-card .categories-card-title,
    .materials-item,
    .price .container .site-title-description,
    .price-table-table th,
    .header-contacts,
    .about-us-card-title,
    .recall-btn,
    .benefits-card-text .benefits-card-text-text {
        font-size: 12px;
    }


    .footer-title,
    .footer-right-menu,
    .heroForm-form .heroForm-submit,
    .proposal-item .proposal-text-title,
    .price-table-btn-download,
    .benefits-card .benefits-card-title {
        font-size: 16px;
    }

    .price-table-table td,
    .recall-text .text-block-small,
    .about-us-card-text,
    .footer-right-menu li,
    .proposal-text .proposal-text-text,
    .proposal-text ul {

        font-size: 10px;
    }

    .hero-form {
        padding-left: 32px;
        padding-right: 32px;
    }

    .heroTitle-spark {
        width: 100%;
    }

    .heroForm-form input {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .heroForm-form .heroForm-submit {
        background-position: 20px;
        background-size: 30px;
    }

    .site-title-description {
        margin-top: 15px;
    }

    .materials-wrapper, .proposal .container {
        margin-top: 50px;
    }

    .categories-card {
        height: 150px;
    }

    .categories-card-img {
        height: 35px;
    }

    .recall-text,
    .callback-form-form .callback-form-submit {
        font-size: 16px;
    }

    .recall-btn-icon {
        width: 30px;
    }

    .recall-section .container {
        height: 100px;
    }

    .categories-wrapper {
        margin-bottom: 50px;
    }

    .proposal-img {
        width: 50%;
    }

    .container.narrow {
        padding: 0 10px;
    }

    .blue {
        height: 600px;
    }

    .benefits-card-icon {
        width: 30%;
    }

    .benefits-card {
        height: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .callback-form .container {
        flex-wrap: wrap;
    }

    .callback-form-left {
        width: 100%;
        margin-right: 0;
    }

    .callback-form-form {
        width: 80%;
        margin-top: 40px;
    }

    .footer-nav {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
    }
    .footer-right {
        margin-top: 10px;
    }
    footer .nav-menu-item + .nav-menu-item
}


@media only screen and (max-width: 767px) {
    /*576*/

    .container {
        max-width: 540px;
    }

    .header .container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .heroVideo {
        width: auto;
        height: 100%;
    }

    .heroForm-form input {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .production .categories-card:nth-child(4) {
        margin-top: 0;
    }

    .heroTitle .h1,
    .about .container .site-title,
    .services .container .site-title,
    .materials .container .site-title,
    .categories-card .categories-card-title,
    .price .container .site-title,
    .site-title {
        /*font-size: 16px;*/
    }

    .price-table-table td,
    .heroTitle .text,
    .site-title-description,
    .materials-item,
    .price .container .site-title-description,
    .price-table-table th,
    .header-contacts,
    .about-us-card-title,
    .benefits-card-text .benefits-card-text-text {
        font-size: 10px;
    }

    .recall-btn,
    .heroForm-form .heroForm-submit,
    .heroForm-form input,
    .proposal-item .proposal-text-title,
    .benefits-card .benefits-card-title {
        font-size: 12px;
    }

    .price-table-btn-add {
        font-size: 16px;
    }

    .footer-title,
    .footer-right-menu,
    .price-table-btn-download {
        font-size: 14px;
    }


    .recall-text .text-block-small,
    .about-us-card-text,
    .footer-right-menu li,
    .proposal-text .proposal-text-text,
    .proposal-text ul {

        font-size: 10px;
    }

    .heroForm-form .heroForm-submit {
        background-position: 15px;
        background-size: 25px;
    }

    .about,
    .materials,
    .materials-wrapper,
    .proposal .container {
        margin-top: 25px;
    }

    .categories-wrapper {
        margin-top: 0;
    }

    .production .categories-card,
    .production .categories-card:nth-child(4),
    .categories-card {
        height: 200px;
        width: calc(50% - 18px * 3 / 4);
        margin-top: 18px;
    }

    .recall-btn-icon {
        width: 20px;
    }

    .proposal {
        margin-bottom: 25px;
    }

    .price .container, .benefits {
        padding-top: 25px;
    }

    .about-us-wrapper .about-us-card {
        width: 30%;
    }

    .about-us-wrapper .about-us-card .about-us-card-icon {
        width: 50%;
    }

    .callback-form-form .callback-form-name,
    .callback-form-form .callback-form-tel,
    .callback-form-form .callback-form-submit,
    .callback-form-form .callback-form-email,
    .callback-form-form .callback-form-comment {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 12px;
    }

    .callback-form-form .callback-form-comment {
        height: 70px;
    }

    .callback-form-form {
        padding: 15px;
    }

    .callback-form-form .callback-form-submit {
        background-image: none;
    }

    .footer-social img {
        height: 15px;
    }

    .footer-wrapper {
        flex-wrap: wrap;
    }

    .footer-left {
        width: 60%;
    }
    .footer-nav{
        width: 40%;
    }
    .nav-menu-item + .nav-menu-item {
        margin-left: 0;
        margin-top: 20px;
    }
    .footer-right {
        width: 100%;
        flex-direction: row;
        margin-top: 40px;
        justify-content: space-evenly;
        gap: 10px;
    }

    .footer-right-link + .footer-right-link {
        margin-top: 0;
    }


}

@media only screen and (max-width: 575px) {
    /*большой 425 телефон*/
    .container {
        max-width: 100%;
    }

    header .site-nav {
        padding-left: 0;
        align-items: center;
        font-size: 24px;
    }

    .header .container {
        flex-direction: column;

    }

    .header {
        position: relative;
    }

    .hero .container {
        flex-direction: column;

    }

    .hero .container {
        justify-content: space-evenly;
    }

    .hero .container > * {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }

    .heroTitle {
        padding: 32px;
    }

    .categories-card .categories-card-title,
    .heroForm-form .heroForm-submit, .heroForm-form input {
        font-size: 18px;
    }

    .heroTitle .h1,
    .about .container .site-title,
    .services .container .site-title,
    .materials .container .site-title,
    .price .container .site-title,
    .site-title {
        font-size: 24px;
    }

    .proposal-text .proposal-text-text,
    .price-table-btn-download,
    .proposal-text ul,
    .recall-text .text-block-small {
        font-size: 12px;
    }

    .price-table-table td,
    .heroTitle .text,
    .site-title-description,
    .materials-item,
    .price .container .site-title-description,
    .price-table-table th, .header-contacts,
    .about-us-card-title,
    .benefits-card-text .benefits-card-text-text {
        font-size: 14px
    }

    header .header-contacts {
        margin-top: 20px;
        align-items: center;
    }

    header .header-contacts .address {
        align-items: center;
    }

    .heroForm-submit {
        height: 45px;
    }

    .categories-card-img {
        padding-top: 10px;
        padding-bottom: 10px;
        height: 60px;
    }

    .recall-section .container {
        flex-direction: column;
        align-items: center;
        padding-top: 15px;
        padding-bottom: 15px;
        height: 100%;
    }

    .recall-text {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .recall-btn {
        width: 200px;
        padding-left: 20px;
        margin-top: 20px;
        justify-content: normal;
    }

    .recall-btn-icon {
        margin-right: 20px;
    }

    .price-table-btn-add .recall-btn-icon {
        margin-right: 0;
    }

    .materials-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .materials-item {
        padding-top: 10px;
        padding-bottom: 10px;
        width: 40%;
    }

    .materials-item-icon {
        width: 50%;
    }

    .proposal-item {
        flex-direction: column;

    }

    .proposal-item:nth-child(even) {
        flex-direction: column;
    }

    .proposal-text {
        padding-top: 20px;
        width: 100%;
        padding-left: 0;
    }

    .proposal-img {
        width: 80%;
    }

    .blue {
        height: 100%;
        padding-bottom: 25px;
    }

    .price-table-btns {
        flex-direction: column;
        align-items: center;
    }

    .price-table-btn-download {
        width: 200px;
        margin-bottom: 10px;
        padding: 10px 20px;
        justify-content: normal;
    }

    .benefits-wrapper {
        flex-direction: column;
        align-items: center;
        margin-top: 0;

    }

    .benefits-card {
        width: 100%;
        margin-top: 25px;
    }

    .benefits-card-text-text {
        padding-right: 10px;
    }

    .partners-wrapper {
        flex-wrap: wrap;
    }

    .callback-form .container {
        flex-direction: column;
        height: 100%;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .callback-form .container .callback-form-left {
        width: 100%;
        margin-right: 0;

    }

    .callback-form-form {
        margin-top: 25px;
    }

    .footer-wrapper {
        flex-wrap: wrap;
        align-items: normal;
    }

}

@media only screen and (max-width: 320px) {
    .heroTitle, .hero-form {
        height: 40%;
    }

    .categories-card .categories-card-title,
    .heroForm-form .heroForm-submit, .heroForm-form input {
        font-size: 14px;
    }

    .heroTitle .h1,
    .about .container .site-title,
    .services .container .site-title,
    .materials .container .site-title,
    .price .container .site-title,
    .site-title {
        font-size: 20px;
    }

    .proposal-text .proposal-text-text,
    .price-table-btn-download,
    .proposal-text ul,
    .recall-text .text-block-small {
        font-size: 12px;
    }

    .price-table-table td,
    .heroTitle .text,
    .site-title-description,
    .materials-item,
    .price .container .site-title-description,
    .price-table-table th, .header-contacts,
    .about-us-card-title,
    .benefits-card-text .benefits-card-text-text {
        font-size: 12px
    }

    .site-title-description {
        text-align: left;
    }

    .categories-card-img {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .price-table-table th {
        padding: 5px;

    }

    .price-table-table td {
        padding: 10px;
    }

    .about-us-wrapper {
        margin-top: 0;
        flex-wrap: wrap;


    }

    .about-us-wrapper .about-us-card {
        width: 75%;
    }

    .callback-form {
        margin-top: 20px;
    }
    .footer-left {
        width: 100%;
    }
    footer .site-nav {
        margin-left: 0;
        margin-right: 0;
        margin-top: 30px;
    }
}

.page-content {
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 50vh;
}
.page-title {
    text-align: center;
    font-size: 1.75em;
    font-weight: 700;
    margin-bottom: 50px;
}
.page-content h2,
.page-content h3 {
    margin-top: 1.5em;
    margin-bottom: 1em;
    font-size: 1.5em;
    font-weight: 700;
}

.page-content p {
    margin-top: 1em;
    margin-bottom: 1em;
}


