:root {
    --primary-brand: #4d5ae5;
    --pressed-state: #404bbf;
    --dark: #2e2f42;
    --success: #31d0aa;
    --text: #434455;
    --subtle-text: #8e8f99;
    --accent: #e7e9fc;
    --light: #f4f4fd;
    --modal-overlay: #2e2f42;
    --hero-background: #2e2f42;
    --white-background: #fff;
    --modal-background: #fcfcfc;
    --logo-color: #4d5ae5;
}

/* global */
*,
*::after,
*::before {
    box-sizing: border-box;
}

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

ul {
    margin: 0;
    padding-left: 0;
}

img {
    display: block;
    max-width: 100%;
    /*height: auto;*/
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--dark);
    background-color: var(--white-background);
}

a {
    text-decoration: none;
    color: currentColor;
}

ul {
    list-style-type: none;
}

button {
    font-family: inherit;
    color: currentColor;
}

input {
    font-family: inherit;

}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}


.container {
    max-width: 320px;
    padding-inline: 16px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .container {
        max-width: 768px;
        padding-inline: 16px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 1158px) {
    .container {
        max-width: 1158px;
        padding-inline: 15px;
        margin-left: auto;
        margin-right: auto;
    }
}

.section {
    padding-block: 96px;
}

@media screen and (min-width: 1158px) {
    .section {
        padding-block: 120px;
    }
}

/* header */

.header {
    border-bottom: 1px solid var(--accent);
    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);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding-block: 16px;*/
    /*background-color: red;*/
}

@media screen and (max-width: 767px) {
    .header-container {
        padding-block: 16px;
    }
}

.header-nav {
    display: flex;
    gap: 0;
    align-items: center;
    /*background-color: #31d0aa;*/
}

.nav-items,
.header-address {
    display: none;
    font-style: normal;

}

.header-mobile-menu {
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 768px) {
    .header-address {
        display: block;
    }

    .nav-items,
    .header-address-items {
        display: flex;
        gap: 40px;
    }

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

    .header-address-items {
        flex-direction: column;
        gap: 12px;
    }

    .header-nav {
        gap: 120px;
    }
}


@media screen and (min-width: 1158px) {
    .nav-items,
    .header-address-items {
        gap: 40px;
        flex-direction: row;
    }

    .header-nav {
        gap: 76px;
    }
}

.logo-text {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.16;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.logo-color {
    color: var(--logo-color);
}

.nav-item-link {
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    display: inline-block;
    padding-block: 24px;
    position: relative;
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item-link.active {
    color: var(--pressed-state);
}

.nav-item-link:is(:hover, :focus) {
    color: var(--pressed-state);
}

.nav-item-link.active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    top: calc(100% - 3px);
    left: 0;
    border-radius: 2px;
    color: var(--pressed-state);
    background-color: var(--pressed-state);
}

.header-address {
    font-style: normal;
    /*font-weight: 400;*/
    font-size: 12px;
    line-height: 1.17;
    letter-spacing: 0.04em;

}

.header-address-item {
    color: var(--text);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .header-address-link {
        display: inline-block;
        /*padding-block: 24px;*/
        transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);

    }

    .header-address-item {
        line-height: 1.17;
        letter-spacing: 0.04em;
    }
}

@media screen and (min-width: 1158px) {
    .header-address-link {
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0.02em;
        padding-block: 24px;
    }
}

.header-address-link:is(:hover, :focus) {
    color: var(--pressed-state);
}

/* -------------------------------hero--------------------------------------------- */
.hero {
    color: white;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding-block: 72px;
    background: linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)), url('../images/bg/Dark-bg.png') no-repeat center  / cover, var(--hero-background);
}

@media screen and (min-resolution: 192dpi) {
    .hero {
        background: linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)), url('../images/bg/Dark-bg-2x.png') no-repeat center  / cover, var(--hero-background);
    }
}


@media screen and (min-width: 768px) {
    .hero {
        max-width: 768px;
        margin: 0 auto;
        padding-block: 112px;
        background: linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)), url('../images/bg/Dark-bg-tablet.png') no-repeat center  / cover, var(--hero-background);
    }
}

@media screen and (min-width: 768px) and (min-resolution: 192dpi) {
    .hero {
        background: linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)), url('../images/bg/Dark-bg-tablet-2x.png') no-repeat center  / cover, var(--hero-background);
    }
}


@media screen and (min-width: 1158px) {
    .hero {
        max-width: 1440px;
        padding-block: 188px;
        background: linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)), url('../images/bg/people-office.png') no-repeat center  / cover, var(--hero-background);
    }
}

@media screen and (min-width: 1158px) and (min-resolution: 192dpi) {
    .hero {
        background: linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)), url('../images/bg/people-office-2x.png') no-repeat center  / cover, var(--hero-background);
    }
}

.hero-title {
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.02em;
    line-height: 1.11;
    max-width: 216px;
    margin: 0 auto 72px;
}

@media screen and (min-width: 768px) {
    .hero-title {
        font-weight: 700;
        font-size: 56px;
        letter-spacing: 0.02em;
        line-height: 1.07;
        max-width: 496px;
        margin: 0 auto 36px;
    }
}

.hero-button {
    line-height: 1.5;
    letter-spacing: 0.04em;
    font-weight: 500;
    color: var(--white-background);
    background-color: var(--primary-brand);
    cursor: pointer;
    border-radius: 4px;
    padding: 16px 32px;
    outline: none;
    border: none;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-button:is(:hover, :focus) {
    background-color: var(--pressed-state);
}

@media screen and (min-width: 1158px) {
    .hero-title {
        margin: 0 auto 48px;
    }
}

/*------------------------ our features------------------------------------- */
.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;
}

.our-features-list {
    display: flex;
    flex-direction: column;
    gap: 72px;
    /*background-color: orange;*/
}

.our-features-icon {
    display: none;
}

.our-features-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.11;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 8px;
}

.our-features-text {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--text);
}

@media screen and (min-width: 768px) {
    .our-features-list {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 24px;
    }

    .our-features-list > li {
        width: calc((100% - 24px) / 2);
    }

    .our-features-icon {
        display: none;
    }

    .our-features-title {
        text-align: left;
    }
}

@media screen and (min-width: 1158px) {
    .our-features-list {
        gap: 24px;
    }

    .our-features-list > li {
        width: calc((100% - (3 * 24px)) / 4);
    }

    .our-features-icon {
        border: 1px solid var(--subtle-text);
        width: 100%;
        height: 112px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 8px;
        background-color: var(--light);
        border-radius: 4px;
    }

    .our-features-title {
        font-size: 20px;
        font-weight: 500;

    }

    .our-features-text {
        font-weight: 400;

    }
}

/*------------------------ our team --------------------------------------------*/

.our-team {
    background-color: var(--light);
}

.our-team-title {
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 72px;
}

.our-team-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;
}

.our-team-item {
    width: 100%;
    max-width: 264px;
    box-shadow: 0 2px 1px 0 rgba(46, 47, 66, 0.08), 0 1px 1px 0 rgba(46, 47, 66, 0.16), 0 1px 6px 0 rgba(46, 47, 66, 0.08);
    background-color: var(--white-background);
    border-radius: 0 0 4px 4px;
}

.our-team-img {
    width: 100%;
    object-fit: cover;
}

.our-team-item-title {
    color: var(--dark);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 8px;
}

.our-team-item-text {
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 8px;
}

.our-team-item-description {
    padding: 32px 16px;
}

.our-team-social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.our-team-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    background-color: var(--logo-color);
    border-radius: 50%;
    align-items: center;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.our-team-social-link-img {
    fill: var(--light);
}

.our-team-social-link:is(:hover, :focus) {
    background-color: var(--pressed-state);
}

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

    .our-team-items {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        row-gap: 64px;
    }

    .our-team-item {
        /*width: calc((100% - 24px) / 2);*/
        width: 264px;
        /*justify-content: center;*/
    }
}

@media screen and (min-width: 1158px) {
    .our-team-item {
        width: calc((100% - (24px * 3)) / 4);
    }
}

/*------------------------------ portfolio --------------------------------*/

.portfolio-title {
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.02em;
    line-height: 1.11;
    text-align: center;
    margin-bottom: 72px;
}

.portfolio-items {
    display: flex;
    flex-direction: column;
    gap: 48px 24px;
    flex-wrap: wrap;
}

.portfolio-img-container {
    position: relative;
    overflow: hidden;
}

.portfolio-item {
    /*width: calc((100% - (24px * 2)) / 3);*/
    transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;

}

@media screen and (max-width: 1157px) {
    .portfolio-item {
        box-shadow: 0 2px 1px 0 rgba(46, 47, 66, 0.08), 0 1px 1px 0 rgba(46, 47, 66, 0.16), 0 1px 6px 0 rgba(46, 47, 66, 0.08);
    }
}

@media screen and (min-width: 1158px) {
    .portfolio-item:hover {
        box-shadow: 0 2px 1px 0 rgba(46, 47, 66, 0.08), 0 1px 1px 0 rgba(46, 47, 66, 0.16), 0 1px 6px 0 rgba(46, 47, 66, 0.08);
    }
}

.portfolio-item:hover .overlay {
    transform: translateY(0);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-brand);
    transform: translateY(100%);
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 32px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--light);
}

.portfolio-item-title {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.portfolio-item-text {
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: var(--text);
}

.portfolio-item-description {
    border-left: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    padding: 32px 16px;
}

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

    .portfolio-item {
        width: calc((100% - 24px) / 2);
    }

    .portfolio-img-container {
        position: relative;
        overflow: hidden;
    }
}

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

    .portfolio-items {
        gap: 48px 24px;
    }

    .portfolio-item {
        width: calc((100% - (24px * 2)) / 3);
    }
}

/*----------------------------------- footer ------------------------------------*/

.footer {
    background-color: var(--hero-background);
    color: var(--light);
    padding-block: 96px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.footer-logo {
    display: block;
    margin-bottom: 16px;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.17;
    text-align: center;
    font-weight: 700;
}

.footer-text {
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.footer .our-team-social-icons {
    gap: 16px;
}

.footer .our-team-social-link:is(:hover, :focus) {
    background-color: var(--success);
}

.footer .social-media-title {
    margin-bottom: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--white-background);
    text-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    text-align: center;
}

.footer-text-subscribe {
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    text-align: center;
}

.footer-email-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}


.footer-email-input {
    padding: 8px 16px;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--white-background);
    outline: none;
    border: 1px solid var(--white-background);
    background-color: transparent;
    /*flex-grow: 1;*/
    height: 40px;
    width: 264px;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 #00000026;
    transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-email-input:is(:hover, :focus) {
    border-color: var(--success);
}

.footer-email-input::placeholder {
    color: #fff;
}

.footer-submit-btn {
    background-color: var(--primary-brand);
    outline: none;
    border: none;
    border-radius: 4px;
    color: var(--white-background);
    cursor: pointer;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 40px;
    font-weight: 500;
    line-height: 1.5;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-submit-btn:is(:hover, :focus) {
    background-color: var(--success);
}

.footer-email-svg {
    fill: var(--white-background);
}

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

    .footer-menu {
        margin-inline: auto;
        max-width: calc(264px * 2 + 24px);
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: flex-start;
        gap: 72px 24px;
    }

    .footer-logo {
        text-align: left;
    }

    .footer .column {
        max-width: 264px;
    }

    .footer .social-media-title {
        text-align: left;
    }

    .footer .subscribe-column {

    }

    .footer-text-subscribe {
        text-align: left;
    }

    .footer-email-wrapper {
        flex-direction: row;
        gap: 24px;
    }
}

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

    .footer {
        padding-block: 100px;
    }

    .footer-menu {
        display: flex;
        max-width: 1158px;
        flex-wrap: nowrap;
        align-items: baseline;

    }

    .footer .column {
        max-width: 264px;
        flex-shrink: 0;
    }

    .footer .column + .column {
        margin-left: 120px;
    }

    .footer .column.subscribe-column {
        max-width: none;
        margin-left: auto;
        /*margin-left: 80px;*/
    }

    .footer-email-wrapper {
        align-items: center;
        gap: 24px;
    }
}

/*----------------MODAL WINDOW------------------*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(46, 47, 66, 0.4);
    z-index: 99;
    pointer-events: none;
    opacity: 0;

}

.modal-overlay.is-open {
    pointer-events: all;
    opacity: 1;
}

.modal-window {
    max-width: 288px;
    max-height: 80%;
    overflow-y: auto;
    background-color: var(--modal-background);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    box-shadow: 0 1px 1px 0 #00000024, 0 1px 3px 0 #0000001F, 0 2px 1px 0 #00000033;
}

@media screen and (min-width: 768px) {
    .modal-window {
        max-width: 408px;
        max-height: 80%;
        padding: 24px;
    }
}

@media screen and (min-width: 1158px) {
    .modal-window {
        max-width: 408px;
        max-height: 80%;

    }
}

.modal-close-button {
    align-self: flex-end;
    border-radius: 100%;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    cursor: pointer;
    background-color: var(--accent);
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close-svg {
    fill: var(--dark);
    transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close-button:is(:hover, :focus) {
    background-color: var(--pressed-state);
}

.modal-close-button:is(:hover, :focus) .modal-close-svg {
    fill: var(--white-background);
}


.modal-form-title {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 16px;
}

.modal-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
}

.name-wrapper, .email-wrapper, .phone-wrapper {
    position: relative;
    margin-bottom: 8px;
}

.input-name-label, .input-email-label, .input-phone-label, .textarea-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.17;
    letter-spacing: 0.04em;
    color: var(--subtle-text);
    margin-bottom: 4px;
    display: block;
}

.name-svg, .email-svg, .phone-svg {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 18px;
    height: 24px;
    fill: #2e2f42;
    transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--modal-background);
}


.input-name, .input-email, .input-phone {
    padding: 8px 16px 8px 38px;
    border: 1px solid rgba(46, 47, 66, 0.4);
    border-radius: 4px;
    outline: none;
    width: 100%;
    height: 40px;
    color: var(--text);
    /*background-color: coral;*/
    transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

:is(.input-name, .input-email, .input-phone):is(:focus) {
    color: var(--primary-brand);
    border: 1px solid var(--primary-brand);
}

:is(.name-wrapper, .email-wrapper, .phone-wrapper):focus-within .svg {
    fill: var(--primary-brand);
}

.textarea {
    font-size: 12px;
    line-height: 1.17;
    letter-spacing: 0.04em;
    resize: none;
    height: 120px;
    padding: 8px 16px;
    color: #75757580;
    margin-bottom: 16px;
    outline: none;
    border: 1px solid rgba(46, 47, 66, 0.4);
    border-radius: 4px;
    transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.textarea:focus {
    border: 1px solid var(--primary-brand);
    color: var(--primary-brand);
}

.checkbox-wrapper {
    margin-bottom: 24px;
    align-items: center;
    display: flex;
}

.checkbox-label {
    display: flex;
    font-size: 12px;
    gap: 4px;
    line-height: 1.17;
    letter-spacing: 0.04em;
    color: var(--subtle-text);
}

.check-icon {
    display: flex;
    margin-right: 8px;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(46, 47, 66, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.check-svg {
    fill: transparent;
    transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox:checked + .checkbox-label .check-icon {
    background-color: var(--pressed-state);
    border-color: var(--pressed-state);
}

.checkbox:checked + .checkbox-label .check-svg {
    fill: var(--light);
}

.checkbox-label-link {
    text-decoration: underline;
    color: var(--primary-brand);
}

.submit-button {
    padding: 16px 32px;
    max-width: 169px;
    width: 100%;
    align-self: center;
    border-radius: 4px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: white;
    background-color: var(--primary-brand);
    box-shadow: 0 4px 4px 0 #00000026;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}


.submit-button:is(:hover, :focus) {
    background-color: var(--pressed-state);
}


/*-----------MOBILE-MENU-----------*/
.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.is-open {
    pointer-events: all;
    visibility: visible;
    opacity: 1;
}


.mobile-menu-wrapper {
    padding: 24px 24px 40px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    background-color: #fff;
}

.mobile-menu .close-button {
    align-self: flex-end;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 100%;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-block {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 48px;
}

.mobile-menu-list {
    /*font-family: var(--font-family);*/
    font-weight: 700;
    font-size: 36px;
    line-height: 1.11;
    letter-spacing: 0.02em;
    /*color: var(--ocean);*/
}

.mobile-menu-item:not(:last-child) {
    margin-bottom: 40px;
}

.mobile-menu address {
    font-style: normal;
    /*font-family: var(--font-family);*/
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    /*color: var(--iris);*/
}

.mobile-menu-address-item:not(:last-child) {
    margin-bottom: 24px;
}

.mobile-menu .our-team-social-icons {
    margin-top: auto;
    justify-content: space-between;
}

.mobile-menu .our-team-social-icons {
    gap: 40px;
}

.mobile-menu .our-team-social-link {
    width: 40px;
    height: 40px;
}

.mobile-menu .active-menu-item{
    color: var(--pressed-state);
}

.mobile-menu .active-address-item{
    color: var(--primary-brand);
}

@media screen and (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}