* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    color: var(--text-color);
}

section {
    padding: 0;
    margin: 0 auto 90px;
}

section div.h3 {
    font: 600 30px/130% var(--title-font);
    color: var(--title-color);
    margin-bottom: 30px;
}

section p {
    font: 400 16px/150% var(--text-font);
    color: var(--text-color);
    max-width: 730px;
}

.button {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: auto;
    height: 36px;
    font: 500 12px var(--text-font);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--background);
    border-radius: 4px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    margin: 0;
    padding: 10px 29px 10px;
}

.button.button__white {
    color: var(--title-color);
    background: var(--background);
    border: 1px solid var(--border-color);
    padding-top: 11px;
}

.button:hover {
    border: 1px solid var(--main-color);
    background: var(--background);
    color: var(--main-color);
}

/* section.form-template.form-footer.form-section.form-zvonok {
    padding-top: 119px;
} */

section.form-template.form-section .h3 {
    margin-bottom: 21px;
}

section .slider-wrapper .slider:focus::before {
    content: none;
}

@media screen and (min-width: 1000px) {
    section.home {
        padding-bottom: 0;
        margin: 0 0 59px;
    }

    section.home.banner-top-padding {
        padding-top: 192px;
    }

    section.home>.wrapper {
        max-width: 1320px;
    }

    section.home h1 {
        font-size: 80px;
        line-height: 110%;
        letter-spacing: 3.2px;
        font-weight: 600;
        color: var(--text-color);
        max-width: 1000px;
    }
}

@media screen and (max-width: 999px) {
    section {
        margin-bottom: 80px;
    }

    section.home {
        margin-bottom: 30px;
        padding-bottom: 0;
    }

    section.home h1 {
        font-size: 36px;
        line-height: 130%;
        letter-spacing: 0px;
        font-weight: 600;
        color: var(--title-color);
    }

    /* section.form-template.form-footer.form-section.form-zvonok {
        padding-top: 100px;
    } */
}

@media screen and (max-width: 599px) {
    section {
        margin-bottom: 60px;
    }

    section.home h1 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    section div.h3 {
        font-size: 21px;
        margin-bottom: 19px;
    }

    /* section.form-template.form-footer.form-section.form-zvonok {
        padding-top: 80px;
    } */
}

@media screen and (max-width: 425px) {
    section.home {
        padding-top: 110px;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

/*nav-icons*/
.nav-icons-item img {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease-in-out;
}

.nav-icons .container {
    margin: 0;
}

.nav-icons .container.l-col-4 .item {
    float: left;
    width: auto;
    max-width: 100%;
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin: 0 10px 10px 0;
    padding: 15px 21px 15px 20px;
    border-radius: 100px;
    background: var(--block-background);
    transition: all 0.3s ease-in-out;
}

.nav-icons .container.l-col-4 .item:hover {
    background: var(--dark-grey-color);
}

.nav-icons .container.l-col-4 .item:hover .nav-icons-item__text {
    color: var(--background);
}

.nav-icons .container.l-col-4 .item:hover img {
    filter: invert(1);
}

.nav-icons-item__text {
    font: 400 14px/130% var(--title-font);
    color: var(--title-color);
    transition: color 0.3s ease-in-out;
}

@media screen and (max-width: 999px) {
    section.nav-icons {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 599px) {
    section.nav-icons {
        margin-bottom: 50px;
    }
}