.hide {
    display: none;
}
:root {
    --light-slate: #8e8f99;
    --slate: #434455;
    --white-background: #ffffff;
    --white-color: #ffffff;
    --cornflower: #e7e9fc;
    --iris: #4d5ae5;
    --navyblue: #2e2f42;
    --navyblue-modal: #2e2f42;
    --cloud: #f4f4fd;
    --ocean: #404bbf;
    --success: #31d0aa;
    --dairy: #fcfcfc;
}

/* region Common styles */
body {
    font-family: "Roboto", sans-serif;
    color: var(--slate);
    background-color: var(--white-background);
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

a {
    text-decoration: none;
}

ul, ol {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

img {
    display: block;
}
.container {
    max-width: 320px;
    padding: 0 16px;
    margin: 0 auto;

    @media only screen and (min-width: 768px) {
        max-width: 768px;
    }

    @media only screen and (min-width: 1158px) {
        max-width: 1158px;
        padding: 0 15px;
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}
/* endregion */
/* region comment about breakpoints: */
/*  - mobile up to: 375px;
    - tablet up to: 768px;
    - desktop up to: 1280px;
*/
/* endregion */
/* region Header */
.header {
    border-bottom: 1px solid var(--cornflower);
    border-bottom: 1px solid #e7e9fc;
    box-shadow: 0 2px 1px rgba(46, 47, 66, 0.08), 0 1px 1px rgba(46, 47, 66, 0.16), 0 1px 6px rgba(46, 47, 66, 0.08);
}
.container.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu {
    display: flex;
    align-items: center;
}
.logo {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.17;
    letter-spacing: 0.03em;
    color: var(--iris);
    margin-right: 76px;
}
.logo-studio {
    color: var(--navyblue);
}
.menu-nav {
    display: none;

    @media only screen and (min-width: 768px) {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 40px;
        text-decoration: none;
        line-height: 1.5;
    }
}
.menu-nav-item {
    color: var(--ocean)
}
.menu-nav-item:nth-child(1) .menu-nav-link::after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 4px;
    background-color: var(--ocean);
    border-radius: 2px;
}
.menu-nav-link {
    position: relative;
    display: block;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.11;
    letter-spacing: 0.02em;
    color: var(--navyblue);
    text-decoration: none;
    padding: 24px 0;
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);

    @media only screen and (min-width: 768px) {
        font-weight: 500;
        font-size: 16px;
        line-height: 1.5;
        display: block;
        padding: 24px 0;
        position: relative;
    }
}
.menu-nav-link:hover,
.menu-nav-link:focus {
    color: var(--ocean);
}
address {
    display: none;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.02em;

    @media only screen and (min-width: 768px) {
        display: block;
        font-style: normal;
    }
}
.contact-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;

    @media only screen and (min-width: 768px) {
        gap: 12px;
    }

    @media only screen and (min-width: 1158px) {
        flex-direction: row;
        gap: 40px;
    }
}
.contact-menu-item {
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-menu-link {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: var(--slate);
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);

    @media only screen and (min-width: 768px) {
        font-size: 12px;
        line-height: 1.17;
        letter-spacing: 0.04em;
        font-weight: 400;
    }

    @media only screen and (min-width: 1158px) {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0.02em;
    }
}
.contact-menu-link:hover,
.contact-menu-link:focus {
    color: var(--ocean);
}
.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    height: 24px;

    @media only screen and (min-width: 768px) {
        display: none;
    }
}
/* endregion Header */

/* region Hero */
.hero {
    max-width: 320px;
    margin: 0 auto;
    padding: 72px 0 72px;
    color: var(--white-background);
    background-color: var(--navyblue);
    background-image:
            linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
            url("../images/dark-bg@1x.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid black;

    @media screen and (min-resolution: 192dpi) {
        .hero {
            background-image: linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
            url("../images/dark-bg@2x.jpg");
        }
    }
}
.container.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-slogan {
    max-width: 216px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.11;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 48px;
}
.hero-button {
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    color: white;
    background-color: var(--iris);
    line-height: 1.5;
    letter-spacing: 0.04em;
    cursor: pointer;
    min-width: 169px;
    height: 56px;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-button:hover,
.hero-button:focus {
    background-color: var(--ocean);
}
@media screen and (min-width: 768px) {
    .hero {
        max-width: 768px;
        padding: 112px 0 112px;
    }
    .hero-slogan {
        max-width: 496px;
        font-size: 56px;
        line-height: 1.07;
    }
}
@media screen and (min-width: 1158px) {
    .hero {
        max-width: 1440px;
        padding: 188px 0 188px;
    }
}
/* endregion Hero */

/* region Feature */
.feature {
    color: var(--navyblue);
    padding: 120px 0;
}

.feature-list {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 72px;

    @media only screen and (min-width: 768px) {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 72px 24px;
    }

    @media only screen and (min-width: 1158px) {
        flex-wrap: nowrap;
        gap: 24px;
    }
}
.feature-list-item {
    width: 100%;

    @media only screen and (min-width: 768px) {
        width: calc((100% - 24px) / 2);
    }

    @media only screen and (min-width: 1158px) {
        width: calc(100% - (24px * 3) / 4);
    }
}
.icon-container {
    display: none;
    background-color: var(--cloud);
    border: 1px solid var(--light-slate);
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    height: 112px;
    margin-bottom: 8px;

    @media only screen and (min-width: 1158px) {
        display: flex;
    }
}
.feature-heading {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.11; /* 111.111% */
    text-align: center;
    letter-spacing: 0.02em;
    color: var(--navyblue);
    margin-bottom: 8px;

    @media only screen and (min-width: 768px) {
        text-align: left;
    }

    @media only screen and (min-width: 1158px) {
        font-weight: 500;
        font-size: 20px;
        line-height: 1.2;
    }
}
.feature-text {
    color: var(--slate);
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.02em;

    @media only screen and (min-width: 768px) {

    }
}
/* endregion Feature*/

/* region Team */
.team {
    background-color: var(--cloud);
    letter-spacing: 0.02em;
    padding: 120px 0 120px;
}
.container.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-heading {
    font-weight: 700;
    font-size: 36px;
    color: var(--navyblue);
    line-height: 1.11;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 72px;
}
.team-cards {
    max-width: 264px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 72px;

    @media only screen and (min-width: 768px) {
        max-width: 552px;
        justify-content: space-between;
        gap: 64px 24px;
    }

    @media only screen and (min-width: 1158px) {
        max-width: none;
        margin: 0;
        flex-wrap: nowrap;
        gap: 24px;
    }
}
.team-card {
    width: 100%;
    border-radius: 0 0 4px 4px;
    background-color: var(--white-background);
    box-shadow: 0 1px 6px 0 rgba(46, 47, 66, 0.08),
    0 1px 1px 0 rgba(46, 47, 66, 0.16),
    0 2px 1px 0 rgba(46, 47, 66, 0.08);

    @media only screen and (min-width: 768px) {
        width: calc((100% - 24px) / 2);
    }

    @media only screen and (min-width: 1158px) {
        width: calc((100% - 72px) / 4);
    }
}
.team-card-img {
    display: block;
    max-width: 100%;
    height: auto;
}
.team-card-description {
    padding: 32px 0;
}
.team-card-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--navyblue);
    margin-bottom: 8px;
    text-align: center;
}
.team-card-text {
    line-height: 1.5;
    color: var(--slate);
    margin-top: 8px;
    text-align: center;
}
.team-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}
.team-socials-item {
    width: 40px;
    height: 40px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.team-socials-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--iris);
    border-radius: 50%;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.team-socials-link:hover,
.team-socials-link:focus {
    background-color: var(--ocean);
}
.team-socials-icon {
    fill: var(--cloud);
}
/* endregion Team */

/* region Portfolio */
.portfolio {
    padding: 96px 0 96px;

    @media only screen and (min-width: 768px) {
        padding: 120px 0 120px;
    }
}
.container.portfolio-container {
    display: flex;
    flex-direction: column;
}
.portfolio-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.11;
    letter-spacing: 0.02em;
    color: var(--navyblue);
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 72px;
}
.portfolio-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 72px;
    background-color: var(--white-background);

    @media only screen and (min-width: 768px) {
        row-gap: 72px;
        column-gap: 24px;
    }
    @media only screen and (min-width: 1158px) {
        row-gap: 48px;
        column-gap: 24px;
    }
}
.portfolio-card {
    background-color: white;

    @media only screen and (min-width: 768px) {
        width: calc((100% - 24px) / 2);
    }
    @media only screen and (min-width: 1158px) {
        width: calc((100% - 48px) / 3);
    }
}
.portfolio-card:hover {
    box-shadow: 0 1px 6px rgba(46, 47, 66, 0.08),
    0 1px 1px rgba(46, 47, 66, 0.16), 0 2px 1px rgba(46, 47, 66, 0.08);
}
.portfolio-card:hover .portfolio-card-p {
    transform: translateY(0%);
}
.portfolio-card:nth-child(1) {
    transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-card-image-block {
    width: 360px;
    position: relative;
    overflow: hidden;
}
.portfolio-card-p {
    width: 100%;
    height: 100%;
    background-color: var(--iris);
    position: absolute;
    top: 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--cloud);
    padding: 40px 32px;
    transform: translateY(100%);
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-card-description {
    max-width: 288px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--cornflower);
    border-top: none;
    padding: 32px 16px;

    @media only screen and (min-width: 768px) {
        max-width: 356px;
    }
}
.portfolio-card-description:hover {
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(46, 47, 66, 0.08),
    0 1px 1px rgba(46, 47, 66, 0.16), 0 2px 1px rgba(46, 47, 66, 0.08);
}
.portfolio-card-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--navyblue);
    margin-bottom: 8px;
}
.portfolio-card-text {
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--slate);
}
.portfolio-card-img {
    display: block;
    max-width: 288px;
    height: auto;

    @media only screen and (min-width: 768px) {
        max-width: 356px;
    }
}
/* endregion Portfolio */

/* region Footer */
.footer {
    background-color: var(--navyblue);
    padding: 100px 0 100px;
}
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 72px;

    @media only screen and (min-width: 768px) {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }

    @media only screen and (min-width: 1158px) {
        flex-wrap: nowrap;
        align-items: baseline;
    }
}
.footer-info {
    max-width: 264px;

    @media only screen and (min-width: 1158px) {
        display: inline-block;
        margin-right: 120px;
    }
}
.footer-logo {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.17;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--iris);
    margin-bottom: 16px;
    padding-left: 86px;
    display: inline-block;

    @media only screen and (min-width: 768px) {
        padding-left: 0;
    }
}
.footer-studio {
    color: var(--cloud);
    display: inline-block;
}
.footer-text {
    color: var(--cloud);

    @media only screen and (min-width: 768px) {
        line-height: 1.5;
        letter-spacing: 0.02em;
        width: 264px;
    }
}
.footer-social {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    @media only screen and (min-width: 768px) {
        min-height: 109px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        width: 264px;
    }
    @media only screen and (min-width: 1158px) {

    }
}
.footer-social-title {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--white-color);
    margin-bottom: 16px;
}
.footer-social-title {
    color: var(--white-color);
}
.socials {
    display: flex;
    gap: 16px;
}
.socials-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--iris);
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-socials-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    fill: var(--cloud);
}
.footer-socials-link {
    display: flex;
    margin-bottom: 16px;
    width: 100%;
    height: 100%;
    background-color: var(--iris);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-socials-link:hover,
.footer-socials-link:focus {
    background-color: var(--success);
}
.footer-subscribe {
    display: flex;
    flex-direction: column;
}
.subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    @media only screen and (min-width: 768px) {
        flex-direction: row;
        gap: 24px;
    }
}
.footer-subscribe-title {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 16px;

    @media only screen and (min-width: 768px) {
        text-align: left;
    }
}
.sf-label {
    position: relative;
    display: inline-block;

    @media only screen and (min-width: 1158px) {
        display: block;
    }
}
.subscribe-input-email {
    width: 288px;
    height: 40px;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    background-color: transparent;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.04em;
    padding-left: 16px;
    border-radius: 4px;

    @media only screen and (min-width: 768px) {
        width: 264px;
    }
}
.subscribe-input-email::placeholder {
    color: var(--white-color);
}
.sf-submit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 165px;
    height: 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--white-color);
    background-color: var(--iris);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.footer-subscribe-icon {
    margin-left: 16px;
}
/* endregion Footer */

/* region Modal */
.modal-overlay {
    /*background-color: color-mix(in srgb, var(--navyblue-modal) 40%, transparent);*/
    background-color: rgba(46, 47, 66, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1),
        visibility 250ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 408px;
    min-height: 584px;
    background-color: var(--dairy);
    box-shadow:
        0 1px 1px rgba(0, 0, 0, 0.14),
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 2px 1px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 4px;
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 72px 24px 24px;
}
.close-button {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cornflower);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    cursor: pointer;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
        border 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.close-button:hover,
.close-button:focus {
    background-color: var(--ocean);
    border: none;
    fill: var(--white-color);
}
.close-cross {
    transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-title {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--navyblue);
    text-align: center;
    margin-bottom: 16px;
}
/* inputs */
.modal-input-field {
    margin-bottom: 8px;
}
.modal-label {
    display: block;
    font-size: 12px;
    line-height: 1.17;
    letter-spacing: 0.04em;
    color: var(--light-slate);
    margin-bottom: 4px;
}
.modal-form-wrapper {
    position: relative;
}
.modal-form-input {
    width: 100%;
    height: 40px;
    border: 1px solid rgba(46, 47, 66, 0.4);
    border-radius: 4px;
    background-color: transparent;
    padding-left: 38px;
    outline: transparent;
    transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-form-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    fill: var(--navyblue-modal);
    transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-form-input:focus {
    border-color: var(--iris);
}
.modal-form-input:focus + .modal-form-icon {
    fill: var(--iris);
}
.modal-textarea-field {
    margin-bottom: 16px;
}
.modal-form-textarea {
    width: 100%;
    height: 120px;
    font-size: 12px;
    line-height: 1.17;
    letter-spacing: 0.04em;
    color: rgba(46, 47, 66, 0.4);
    border: 1px solid rgba(46, 47, 66, 0.4);
    border-radius: 4px;
    background-color: transparent;
    padding: 8px 16px;
    outline: transparent;
    resize: none;
    transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-form-textarea:focus {
    border-color: var(--iris);
}
.modal-form-agreement {
    margin-bottom: 24px;
}
.modal-form-checkbox {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(46, 47, 66, 0.4);
    border-radius: 2px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
        border 250ms cubic-bezier(0.4, 0, 0.2, 1),
        fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
    fill: transparent;
}
input[type="checkbox"]:checked + .modal-form-terms > .modal-form-checkbox {
    border: none;
    background-color: var(--ocean);
    fill: var(--cloud);
}
.modal-custom-icon {
    color: var(--cloud);
}
.modal-form-checkbox:active {
    stroke: var(--ocean);
    fill: var(--ocean);
}
.modal-form-terms {
    font-size: 12px;
    line-height: 1.17;
    letter-spacing: 0.04em;
    color: var(--light-slate);
}
.modal-form-policy {
    color: var(--iris);
    font-size: 12px;
    line-height: 1.333;
    letter-spacing: 0.04em;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.modal-submit-button {
    display: block;
    min-width: 169px;
    height: 56px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--white-color);
    cursor: pointer;
    background-color: var(--iris);
    border: none;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 32px;
    text-align: center;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}
/* endregion Modal */

/* region Mobile menu */
.mobile-menu {
    width: 320px;
    height: 100vh;
    background-color: var(--white-color);
    position: fixed;
    top: 0;
    right: 0;
    padding: 72px 24px 40px 16px;
    box-shadow: 0 2px 1px rgba(46, 47, 66, 0.08),
        0 1px 1px rgba(46, 47, 66, 0.16),
        0 1px 6px rgba(46, 47, 66, 0.08);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1),
            visibility 250ms cubic-bezier(0.4, 0, 0.2, 1);

    @media only screen and (min-width: 768px) {
        display: none;
    }
}
.mobile-navigation {
    margin-bottom: 168px;
}
.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.mobile-contacts {
    margin-bottom: 48px;
}
.mobile-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-menu .social-list {
    justify-content: space-between;
    gap: unset;
}
/* endregion */
