:root {
    --black: #1D1D1B;
    --white: #FFFFFF;
    --primary-color: #554FE6;
    --secondary-color: #CEE51E;
    --light-gray: #F7F7F7;
    --gray-text: #A7A7A7;
    --error-text: #FB4A32;

    --headline-1-bold: 68px;
    --headline-1-height: 110%;
    --headline-2-bold: 44px;
    --headline-2-height: 110%;
    --headline-3-medium: 36px;
    --headline-3-height: 120%;
    --headline-4-bold: 22px;
    --headline-4-height: 124%;
    --headline-5-bold: 20px;
    --headline-5-height: 124%;
    --body-big: 18px;
    --body-big-height: 148%;
    --body-small: 16px;
    --body-small-height: 144%;
    --small-text: 14px;
    --tiny-text: 12px;

    --horizontal-offset: 55px;
}

@media screen and (max-width: 986px) {
    :root {
        --headline-1-bold: 44px;
        --headline-1-height: 110%;
        --headline-2-bold: 36px;
        --headline-2-height: 120%;
        --headline-3-medium: 28px;
        --headline-4-bold: 20px;
    }
}

@media screen and (max-width: 728px) {
    :root {
        --headline-2-bold: 24px;
        --headline-3-medium: 20px;
        --horizontal-offset: 28px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter_a;
    color: var(--black);
    position: relative;
}

input, button {
    outline: none;
    border: none;
    background: transparent;
}

h1 {
    font-size: var(--headline-1-bold);
    font-weight: 600;
    line-height: var(--headline-1-height);
}

h2 {
    font-size: var(--headline-2-bold);
    font-weight: 600;
    line-height: var(--headline-2-height);
}

h3 {
    font-size: var(--headline-3-medium);
    font-weight: 500;
    line-height: var(--headline-3-height);
}

h4 {
    font-size: var(--headline-4-bold);
    font-weight: 600;
    line-height: var(--headline-4-height);
}

h5 {
    font-size: var(--headline-5-bold);
    font-weight: 600;
    line-height: var(--headline-5-height);
}

p {
    font-size: var(--body-big);
    line-height: var(--body-big-height);
}

a {
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

.button {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
    border-radius: 40px;
    font-size: var(--body-small);
    font-weight: 500;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}

.button.small-button {
    font-size: var(--small-text);
    height: 44px;
}

.button.primary-button {
    background: var(--primary-color);
    color: var(--white);
    transition: background-color .3s ease;
}

.button.secondary-button {
    background: var(--secondary-color);
    color: var(--black);
}

.button.secondary-button:hover {
    background: #BFD709;
}

.button.button-with-arrow {
    padding-left: 94px;
    padding-right: 60px;
    will-change: padding;
    transition: all .5s ease;
}


.button.button-with-arrow:hover {
    padding-left: 60px;
    padding-right: 94px;
}

.button .button-arrow-wrapper {
    position: absolute;
    left: 4px;
    width: 100%;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    transition: all .6s ease;
    z-index: 1;
}

.button .button-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.button .button-arrow i {
    color: var(--primary-color);
    font-size: 26px;
}

.button.primary-button:hover {
    background: var(--secondary-color);
    color: var(--black);
}

.button.primary-button.button-with-arrow:hover .button-arrow-wrapper {
    transform: translate3d(calc(100% - 60px), 0, 0);
}

.button.primary-button.button-with-arrow:hover .button-arrow i {
    color: var(--secondary-color);
}

.input-container {
    width: 100%;
    position: relative;
}

input {
    padding: 16px 20px;
    height: 55px;
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, .32);
    font-size: var(--body-small);
    line-height: var(--body-small-height);
    color: var(--white);
    caret-color: var(--white);
}

input::placeholder {
    opacity: .5;
    color: var(--white);
}

input:focus {
    background: rgba(255, 255, 255, .4);
}

.input-container.error input {
    outline: 1px solid var(--error-text);
}

.input-container.error:before {
    content: ' ';
    position: absolute;
    right: 145px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--error-text);
    transform: rotate(45deg);
}

.input-container.error:after {
    content: 'Заполните это поле';
    position: absolute;
    right: 20px;
    top: -20px;
    z-index: 1;
    height: 26px;
    width: fit-content;
    padding: 0 8px;
    color: var(--white);
    background: var(--error-text);
    font-size: var(--small-text);
    line-height: var(--body-small-height);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section .section-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 0 var(--horizontal-offset);
}

.header .header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 0px 0px 28px 28px;
}

.header .header-inner .header-logo {
    height: 25px;
}

.header .header-inner .header-logo-small {
    display: none;
}

.header .header-inner .header-menu {
    display: flex;
}

.header .header-inner .header-menu li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: var(--small-text);
    line-height: 100%;
    border-radius: 30px;
    transition: background-color .3s ease;
}

.header .header-inner .header-menu li a {
    padding: 10px;
}

.header .header-inner .header-menu li:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-section {
    padding: 0 var(--horizontal-offset);
    height: 100vh;
    background: url("/assets/img/main_bg.jpg") center no-repeat;
    background-size: cover;
}

.hero-section .hero-section-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.hero-section .hero-title {
    margin-bottom: 32px;
    max-width: 1030px;
    text-align: center;
}

.hero-section .hero-subtitle {
    max-width: 610px;
    margin-bottom: 44px;
    text-align: center;
}

.main-container {
    padding: 0 var(--horizontal-offset);
    background: var(--light-gray);
    margin-top: -1px;
    border-radius: 28px 28px 0px 0px;
}

.skills-section {
    padding-top: 100px;
    padding-bottom: 20px;
}

.skills-section .skills-section-inner .skills-title {
    margin-bottom: 44px;
}

.skills-section .skills-section-inner .skill-items {
    display: grid;
    grid-gap: 28px 20px;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
}

.skills-section .skills-section-inner .skill-items .skill-item {
    display: flex;
    flex-direction: column;
    height: 340px;
    background: var(--white);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: background-color .3s ease;
    will-change: background-color;
}

.skills-section .skills-section-inner .skill-items .skill-item .item-index {
    margin-top: 28px;
    margin-left: 28px;
    margin-bottom: 16px;
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    font-size: var(--body-small);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.skills-section .skills-section-inner .skill-items .skill-item .item-title {
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

.skills-section .skills-section-inner .skill-items .skill-item .item-text {
    padding: 0 28px 28px;
    display: none;
    margin-top: auto;
    font-size: var(--body-small);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.skills-section .skills-section-inner .skill-items .skill-item:hover {
    background-color: var(--primary-color);
}

.skills-section .skills-section-inner .skill-items .skill-item:hover:after {
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: .5;
    background-size: cover;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
}

.skills-section .skills-section-inner .skill-items .skill-item:hover[data-skill-index="1"]:after {
    background-image: url("/assets/img/skills_bg/1.png");
}

.skills-section .skills-section-inner .skill-items .skill-item:hover[data-skill-index="2"]:after {
    background-image: url("/assets/img/skills_bg/2.png");
}

.skills-section .skills-section-inner .skill-items .skill-item:hover[data-skill-index="3"]:after {
    background-image: url("/assets/img/skills_bg/3.png");
}

.skills-section .skills-section-inner .skill-items .skill-item:hover[data-skill-index="4"]:after {
    background-image: url("/assets/img/skills_bg/4.png");
}

.skills-section .skills-section-inner .skill-items .skill-item:hover[data-skill-index="5"]:after {
    background-image: url("/assets/img/skills_bg/5.png");
}

.skills-section .skills-section-inner .skill-items .skill-item:hover[data-skill-index="6"]:after {
    background-image: url("/assets/img/skills_bg/6.png");
}

.skills-section .skills-section-inner .skill-items .skill-item:hover[data-skill-index="7"]:after {
    background-image: url("/assets/img/skills_bg/7.png");
}

.skills-section .skills-section-inner .skill-items .skill-item:hover[data-skill-index="8"]:after {
    background-image: url("/assets/img/skills_bg/8.png");
}

.skills-section .skills-section-inner .skill-items .skill-item:hover .item-title {
    color: var(--white)
}

.skills-section .skills-section-inner .skill-items .skill-item:hover .item-text {
    display: block;
}

.projects-section {
    padding-top: 100px;
    padding-bottom: 80px;
}

.projects-section .projects-title {
    margin-bottom: 44px;
}

.projects-section .project-items .project-item {
    margin-bottom: 20px;
    padding: 16px;
    width: 100%;
    height: 460px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 48px;
    background: var(--white);
    border-radius: 28px;
}

.projects-section .project-items .project-item:last-child {
    margin-bottom: 0;
}

.projects-section .project-items .project-item .item-description-container {
    padding: 32px 0 32px 32px;
    display: flex;
    flex-direction: column;
}

.projects-section .project-items .project-item .item-description-container .item-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.projects-section .project-items .project-item .item-description-container .item-tags .item-tag {
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    background: var(--light-gray);
    border-radius: 30px;
    font-size: var(--small-text);
}

.projects-section .project-items .project-item .item-description-container .item-text {
    margin-top: auto;
    font-size: var(--body-small);
    line-height: var(--body-small-height);
}

.projects-section .project-items .project-item .item-description-container .item-actions {
    margin-top: 36px;
    display: flex;
    column-gap: 8px;
}

.projects-section .project-items .project-item .item-image-container {
    max-height: 428px;
    height: 100%;
    width: 100%;
    border-radius: 12px;
}


.projects-section .project-items .project-item .item-image-container img {
    height: 100%;
    max-height: 428px;
    width: 100%;
    object-fit: contain;
}

.projects-section .project-items .project-item:nth-child(2n) .item-image-container {
    order: 1;
}

.projects-section .project-items .project-item:nth-child(2n) .item-description-container {
    order: 2;
}

.form-section {
    padding-bottom: 200px;
    z-index: 2;
}

.form-container {
    background: var(--primary-color);
    border-width: 0px 1px 1px 0px;
    border-style: solid;
    border-color: #6D6D6D;
    position: relative;
    border-radius: 12px;
    z-index: 2;
}

.form-container:after {
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: url("/assets/img/form_bg.png") no-repeat center;
    background-size: cover;
    opacity: .6;
    z-index: 1;
}

.form-container .form-wrapper {
    padding: 60px 48px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.form-container .form-wrapper .form-greeting {
    padding-right: 48px;
}

.form-container .form-wrapper .form-greeting .form-title {
    margin-bottom: 40px;
    color: var(--white);
}

.form-container .form-wrapper .form-greeting .form-text {
    font-size: var(--body-small);
    line-height: var(--body-small-height);
    color: var(--white);
}

.form-container .form-wrapper .form .input-container {
    margin-bottom: 10px;
}

.form-container .form-wrapper .form .submit-button {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 12px;
}

.form-container .form-wrapper .form .privacy-hint {
    color: var(--white);
    font-size: var(--small-text);
    line-height: var(--body-small-height);
    opacity: .5;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 var(--horizontal-offset);
    background-color: var(--black);
    border-radius: 28px 28px 0px 0px;
    z-index: 1;
}

.footer .footer-inner {
    margin: 0 auto;
    max-width: 1240px;
    padding: 230px 0 46px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: var(--white);
}

.footer .footer-inner .footer-contacts .footer-contact-label {
    display: block;
    margin-bottom: 10px;
    font-size: var(--small-text);
    line-height: var(--body-small-height);
    opacity: .5;
}

.footer .footer-inner .footer-contacts .footer-phone {
    font-size: var(--headline-4-bold);
    line-height: var(--headline-4-height);
}

.footer .footer-inner .business-info {
    display: flex;
    font-size: var(--body-small);
    line-height: var(--body-small-height);
    opacity: .5;
}

.footer .footer-inner .business-info .company {
    max-width: 295px;
    width: 100%;
    padding-right: 40px;
    box-sizing: content-box;
}

.footer .footer-inner .business-info .company .company-name {
    display: block;
    margin-bottom: 10px;
}

.footer .footer-inner .business-info .numbers {
    padding-right: 40px;
}

.footer .footer-inner .business-info .numbers span {
    display: block;
    margin-bottom: 4px;
}

.footer .footer-inner .business-info .numbers span:last-child {
    margin-bottom: 0;
}

.dialog {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.dialog.active {
    opacity: 1;
    visibility: visible;
}

.backdrop {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: rgba(29, 29, 27, 0.7);
    z-index: 1;
}

.dialog .dialog-inner {
    width: 400px;
    padding: 60px 32px;
    background: var(--primary-color);
    border-radius: 12px;
    position: relative;
    z-index: 2;
    color: var(--white);
    transform: translate3d(0, -200px, 0);
    opacity: 0;
    transition: all .5s ease;
}

.dialog.active .dialog-inner {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.dialog.active .dialog-inner .form-dialog-inner,
.dialog.active .dialog-inner .success-dialog-inner {
    display: none;
}

.dialog.active .dialog-inner .form-dialog-inner.active,
.dialog.active .dialog-inner .success-dialog-inner.active {
    display: block;
}

.dialog.active .dialog-inner .dialog-subtitle {
    text-align: center;
    font-size: var(--body-small);
    line-height: var(--body-small-height);
    max-width: 310px;
    margin: 0 auto;
}

.dialog .dialog-inner .close-button {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

.dialog .dialog-inner .dialog-title {
    text-align: center;
    margin-bottom: 24px;
}

.dialog .dialog-inner .input-container {
    margin-bottom: 10px;
}

.dialog .dialog-inner .submit-button {
    margin-top: 16px;
    margin-bottom: 12px;
    width: 100%;
}

.dialog .dialog-inner .privacy-hint {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: var(--small-text);
    line-height: var(--body-small-height);
    opacity: .5;
}

@media screen and (max-width: 986px) {
    .button {
        height: 52px;
        padding: 0 56px;
    }

    .button.button-with-arrow {
        padding-left: 84px;
        padding-right: 56px;
    }

    .button.button-with-arrow:hover {
        padding-left: 56px;
        padding-right: 84px;
    }

    .button.button-with-arrow .button-arrow {
        width: 44px;
        height: 44px;
    }

    .button.primary-button.button-with-arrow:hover .button-arrow-wrapper {
        transform: translate3d(calc(100% - 52px), 0, 0);
    }

    .button.small-button {
        height: 40px;
        font-size: var(--small-text);
        padding: 0 24px;
    }

    .header .header-inner {
        padding: 13px 16px;
    }

    .header .header-inner .header-logo {
        display: none;
    }

    .header .header-inner .header-logo-small {
        display: block;
        height: 34px;
    }

    .header .header-inner .header-menu li {
        font-size: var(--tiny-text);
    }

    .header .header-inner .header-menu li a {
        padding: 8px;
    }

    .main-container {
        margin-top: -28px;
    }

    .hero-section .hero-title {
        margin-bottom: 20px;
    }

    .hero-section .hero-subtitle {
        margin-bottom: 24px;
    }

    .skills-section {
        padding-top: 80px;
        padding-bottom: 0;
    }

    .skills-section .skills-section-inner .skills-title {
        margin-bottom: 40px;
    }

    .skills-section .skills-section-inner .skill-items .skill-item {
        height: 264px;
    }


    .skills-section .skills-section-inner .skill-items .skill-item.isVisible {
        background-color: var(--primary-color);
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible:after {
        content: ' ';
        width: 100%;
        height: 100%;
        position: absolute;
        opacity: .5;
        background-size: cover;
        z-index: 0;
        background-position: center;
        background-repeat: no-repeat;
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible[data-skill-index="1"]:after {
        background-image: url("/assets/img/skills_bg/1.png");
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible[data-skill-index="2"]:after {
        background-image: url("/assets/img/skills_bg/2.png");
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible[data-skill-index="3"]:after {
        background-image: url("/assets/img/skills_bg/3.png");
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible[data-skill-index="4"]:after {
        background-image: url("/assets/img/skills_bg/4.png");
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible[data-skill-index="5"]:after {
        background-image: url("/assets/img/skills_bg/5.png");
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible[data-skill-index="6"]:after {
        background-image: url("/assets/img/skills_bg/6.png");
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible[data-skill-index="7"]:after {
        background-image: url("/assets/img/skills_bg/7.png");
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible[data-skill-index="8"]:after {
        background-image: url("/assets/img/skills_bg/8.png");
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible .item-title {
        color: var(--white)
    }

    .skills-section .skills-section-inner .skill-items .skill-item.isVisible .item-text {
        display: block;
    }


    .skills-section .skills-section-inner .skill-items .skill-item .item-index {
        margin-top: 24px;
        margin-left: 24px;
        margin-bottom: 12px;
        width: 48px;
        height: 48px;
    }

    .skills-section .skills-section-inner .skill-items .skill-item .item-title {
        padding: 0 24px;
    }

    .skills-section .skills-section-inner .skill-items .skill-item .item-text {
        padding: 0 24px 24px;
    }

    .projects-section {
        padding-top: 80px;
        padding-bottom: 68px;
    }

    .projects-section .projects-title {
        margin-bottom: 40px;
    }

    .projects-section .project-items .project-item {
        padding: 36px;
        width: 100%;
        height: auto;
        display: block;
        background: var(--white);
        border-radius: 20px;
    }

    .projects-section .project-items .project-item .item-description-container {
        padding: 0 0 32px;
        display: block;
    }

    .projects-section .project-items .project-item .item-description-container .item-title {
        margin-bottom: 24px;
    }

    .projects-section .project-items .project-item .item-description-container .item-tags {
        margin-bottom: 16px;
    }

    .projects-section .project-items .project-item .item-description-container .item-actions {
        margin-top: 32px;
    }

    .form-section {
        padding-bottom: 168px;
    }

    .form-container .form-wrapper {
        padding: 52px 36px;
        display: block;
    }

    .form-container .form-wrapper .form-greeting {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .form-container .form-wrapper .form-greeting .form-title {
        margin-bottom: 16px;
    }

    .form-container .form-wrapper .form .inputs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 12px;
    }

    .form-container .form-wrapper .form .inputs .input-container {
        margin-bottom: 0;
    }

    .form-container .form-wrapper .form .submit-button {
        margin-top: 16px;
    }

    .footer .footer-inner {
        padding: 300px 0 36px;
    }

    .footer .footer-inner .footer-contacts .footer-contact-label {
        font-size: var(--tiny-text);
        margin-bottom: 8px;
    }

    .footer .footer-inner .business-info {
        font-size: var(--tiny-text);
    }

    .footer .footer-inner .business-info .company {
        max-width: 225px;
        padding-right: 28px;
    }

    .footer .footer-inner .business-info .numbers {
        padding-right: 0;
    }

    .dialog .dialog-inner {
        width: 320px;
        padding: 52px 24px;
    }

    .dialog .dialog-inner .dialog-title {
        margin-bottom: 28px;
    }

    .dialog .dialog-inner .input-container {
        margin-bottom: 12px;
    }

    .dialog .dialog-inner .submit-button {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 660px) {
    :root {
        --headline-1-bold: 30px;
        --body-big: 16px;
    }

    .button.small-button {
        font-size: var(--tiny-text);
        height: 40px;
    }

    .header .header-inner {
        padding: 10px 20px;
    }

    .header .header-inner .header-menu {
        display: none;
    }

    .skills-section .skills-section-inner .skills-title {
        margin-bottom: 32px;
    }

    .skills-section .skills-section-inner .skills-title br {
        display: none;
    }

    .projects-section {
        padding-bottom: 60px;
    }

    .projects-section .projects-title {
        margin-bottom: 32px;
    }

    .projects-section .project-items .project-item {
        padding: 28px 24px;
    }

    .projects-section .project-items .project-item .item-description-container .item-tags {
        gap: 4px;
    }

    .projects-section .project-items .project-item .item-description-container .item-tags .item-tag {
        padding: 0 9px;
    }

    .projects-section .project-items .project-item .item-description-container .item-title {
        margin-bottom: 20px;
    }

    .projects-section .project-items .project-item .item-description-container .item-actions {
        margin-top: 24px;
        flex-direction: column;
        row-gap: 8px;
    }

    .projects-section .project-items .project-item .item-description-container .item-actions .button {
        width: fit-content;
    }

    .form-section {
        padding-bottom: 300px;
    }

    .form-container .form-wrapper {
        padding: 48px 24px;
    }

    .form-container .form-wrapper .form-greeting {
        margin-bottom: 28px;
    }

    .form-container .form-wrapper .form .inputs {
        display: block;
    }

    .form-container .form-wrapper .form .inputs .input-container:not(:last-child) {
        margin-bottom: 12px;
    }

    .footer .footer-inner {
        padding: 385px 0 40px;
        display: block;
    }

    .footer .footer-inner .business-info {
        display: block;
        font-size: var(--small-text);
    }

    .footer .footer-inner .footer-contacts {
        margin-bottom: 28px;
    }

    .footer .footer-inner .footer-contacts .footer-contact-label {
        font-size: var(--small-text);
    }

    .footer .footer-inner .business-info .company {
        max-width: 100%;
        margin-bottom: 16px;
    }

    .footer .footer-inner .business-info .company .company-name {
        margin-bottom: 4px
    }
    .footer .footer-inner .business-info .numbers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 4px 15px;
    }
}
