/* Removes the browser's default spacing */
body {
    margin: 0;

    background-color: #07111c;
    color: #f5f1e8;

    font-family: Arial, sans-serif;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 42px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    background-color: rgba(7, 17, 28, 0.92);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);


}


/* BRAND AREA */

.brand {
    display: flex;
    align-items: center;
    gap: 16px;

    color: inherit;
    text-decoration: none;
}


.brand-logo {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid #d6a44b;

    color: #d6a44b;

    font-family: Georgia, serif;
    font-size: 35px;
}


.brand-text {
    display: flex;
    flex-direction: column;
}


.brand-name {
    color: #d6a44b;

    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.brand-title {
    margin-top: 2px;

    color: #8695a7;

    font-size: 14px;

    letter-spacing: 1.5px;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    gap: 36px;
}


.main-nav a {
    position: relative;

    display: inline-block;

    color: #8797a9;

    font-size: 12px;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;

    transform: scaleX(1);
    transform-origin: center;

    transition:
        letter-spacing 0.3s ease,
        transform 0.3s ease;
}

.main-nav a:hover {
    color: #d6a44b;

    letter-spacing: 2.6px;
    transform: scaleX(1.06);
}

/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    padding: 5px;

    border: 1px solid #d6a44b;

    background-color: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}


.menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 3px auto;

    background: #d6a44b;

    border-radius: 2px;

    flex-shrink: 0;
}

.menu-toggle .menu-close-icon {
    position: absolute;

    top: 50%;
    left: 50%;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        rotate(-90deg)
        scale(0.65);

    pointer-events: none;
}

/* EMPTY CONTENT AREA */

.page-content {
    min-height: calc(100vh - 170px);
}


/* FOOTER */

.site-footer {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 42px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: #718094;
}


.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}


.footer-logo {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid #d6a44b;

    color: #d6a44b;

    font-family: Georgia, serif;
    font-size: 35px;
}


.footer-left p {
    margin: 0;

    font-size: 11px;
}


.footer-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-links a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(135, 151, 169, 0.25);

    color: #8797a9;
    text-decoration: none;

    transform: translateY(0) scale(1);

    transition:
        color 0.4s ease,
        border-color 0.4s ease,
        background-color 0.4s ease,
        transform 0.4s ease;
}

.footer-links svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}

.footer-links a:hover {
    color: #d6a44b;

    border-color: rgba(214, 164, 75, 0.65);
    background-color: rgba(214, 164, 75, 0.07);

    transform: translateY(-3px) scale(1.07);
}

/* HERO SECTION */

.hero {
    min-height: 200px;

    display: grid;
    grid-template-columns: 1fr;
    align-items: center;

    padding: 40px 28px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


/* LEFT SIDE */

.hero-text {
    max-width: 650px;
}


.hero h1 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: clamp(42px,10vw,58px);
    font-weight: 400;
    line-height: 1.08;
}


.gold-text {
    color: #d6a44b;
}


.blue-text {
    color: #718cab;
}


.hero-description {
    max-width: none;

    margin-top: 30px;
    margin-bottom: 30px;

    color: #a9b4c1;

    font-size: 16px;
    line-height: 1.7;
}


.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 18px;

    border: 1px solid #b98535;

    color: #d6a44b;

    font-size: 12px;
    letter-spacing: 2.5px;
    text-decoration: none;
    text-transform: uppercase;
}


.motion-button {
    position: relative;
    overflow: hidden;

    transform: translateY(0);

    transition:
        transform 0.45s ease,
        background-color 0.45s ease,
        box-shadow 0.45s ease;
}

.button-particles {
    pointer-events: none;
    z-index: 0;
}

.motion-button .button-label,
.motion-button .button-arrow {
    display: inline-block;

    transform: translateY(0);

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-button .button-arrow {
    position: relative;
    top: -3px;

    font-size: 15px;
    line-height: 1;
}

.motion-button:hover {
    transform: translateY(-4px);

    background-color: rgba(214, 164, 75, 0.08);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.22),
        0 0 18px rgba(214, 164, 75, 0.06);
}

.motion-button:hover .button-label {
    transform: translateY(3px);
}

.motion-button:hover .button-arrow {
    transform: translateY(6px);
}

/* RIGHT SIDE */


.hero-design {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 700px;

    overflow: hidden;
    pointer-events: none;
    z-index: -1;

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 55%,
        rgba(0, 0, 0, 0.75) 72%,
        rgba(0, 0, 0, 0) 100%
    );

    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 55%,
        rgba(0, 0, 0, 0.75) 72%,
        rgba(0, 0, 0, 0) 100%
    );
}


.design-mark {
    color: rgba(214, 164, 75, 0.10);

    font-family: Georgia, serif;
    font-size: 300px;
    line-height: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.chevron-line {
    fill: none;
    stroke: rgba(113, 140, 171, 0.35);
    stroke-width: 1.5;
    vector-effect: non-scaling-stroke;
}

.chevron-gold {
    stroke: #d6a44b;
    stroke-width: 2;
}


.tile-gold path {
    fill: none;

    stroke: rgba(214, 164, 75, 0.85);
    stroke-width: 1;

    stroke-linecap: square;
    stroke-linejoin: bevel;

    vector-effect: non-scaling-stroke;
}


.pattern-fill {
    opacity: 0.9;
}


.pattern-gold-fill {
    opacity: 0;

    transition: opacity 0.5s ease;
}


.hero.gold-active .pattern-gold-fill {
    opacity: .75;
}


.tile-lines {
    fill: none;

    stroke: rgba(65, 91, 113, 0.35);
    stroke-width: 1.25;

    stroke-linecap: square;
    stroke-linejoin: bevel;

    vector-effect: non-scaling-stroke;
}


.tile-gold {
    fill: none;

    stroke: rgba(214, 164, 75, 0.95);
    stroke-width: 1.8;

    stroke-linecap: square;
    stroke-linejoin: bevel;

    vector-effect: non-scaling-stroke;

    filter: drop-shadow(0 0 4px rgba(214, 164, 75, 0.35));
}

/* FEATURED RESEARCH SECTION */

.research-section {
    padding: 34px 40px 60px;
}


.research-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}


.research-heading h2 {
    margin: 0;

    color: #d6a44b;

    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    white-space: nowrap;
}


.research-line {
    height: 1px;

    flex: 1;

    background-color: rgba(214, 164, 75, 0.55);
}


.research-heading a {
    display: inline-block;

    color: #718cab;

    font-size: 11px;
    letter-spacing: 1.8px;
    text-decoration: none;
    text-transform: uppercase;

    white-space: nowrap;

    transform: scaleX(1);
    transform-origin: center;

    transition:
        letter-spacing 0.4s ease,
        transform 0.4s ease;
}

.research-heading a:hover {
    color: #d6a44b;

    letter-spacing: 2.7px;
    transform: scaleX(1.05);
}

/* PROJECT GRID */

.project-grid {
    margin-top: 24px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* INDIVIDUAL PROJECT CARD */

.project-card {
    display: flex;
    flex-direction: column;

    min-height: 490px;

    border: 2px solid rgba(255, 255, 255, 0.1);

    background-color: rgba(8, 20, 31, 0.85);

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}


.project-card:hover {
    transform: translateY(-5px);

    border-color: rgba(214, 164, 75, 0.7);

    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
}


/* PROJECT IMAGE */

.project-image {
    height: 230px;

    overflow: hidden;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


.project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 1s ease;
}


.project-card:hover .project-image img {
    transform: scale(1.04);
}


/* PROJECT TEXT */

.project-content {
    padding: 18px 8px 8px;

    display: flex;
    flex-direction: column;

    flex: 1;
}


.project-category {
    margin: 0 0 12px;

    color: #718cab;

    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.project-content h3 {
    margin: 0;

    color: #f5f1e8;

    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.15;
}


.project-description {
    margin: 18px 0;

    color: #a9b4c1;

    font-size: 13px;
    line-height: 1.65;
}


.project-content a {
    margin-top: auto;

    color: #d6a44b;

    font-size: 11px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 1s ease,
        transform 1s ease;
}


.project-card:hover .project-content a {
    transform: translateX(25px);
}

.project-card{
    cursor:pointer;
}

/* ABOUT SECTION */

.about-section {
    display: grid;

    grid-template-columns:
        clamp(170px, 16vw, 200px)
        minmax(420px, 720px)
        clamp(200px, 18vw, 250px);

    justify-content: center;
    align-items: center;

    gap: clamp(24px, 4vw, 48px);

    padding: 35px 40px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* PHOTO AREA */

.about-image {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;
}


/* BORDERED PHOTO FRAME */

.about-photo {
    width: 100%;
    height: 250px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background-color: rgba(8, 20, 31, 0.85);
}


.about-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* SIGNATURE BELOW PHOTO */

.about-signature {
    width: 100%;
    max-width: 195px;
    height: 50px;

    display: block;

    object-fit: contain;
    object-position: center;
}

/* ABOUT TEXT */

.about-label {
    margin: 0 0 12px;

    color: #d6a44b;

    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.about-content h2 {
    margin: 0;

    max-width: 720px;

    color: #f5f1e8;

    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.25;
}


.about-description {
    max-width: 675px;

    margin: 10px 0 18px;

    color: #a9b4c1;

    font-size: 14px;
    line-height: 1.65;
}


.resume-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 11px 16px;

    border: 1px solid #b98535;

    color: #d6a44b;

    font-size: 11px;
    letter-spacing: 2.5px;
    text-decoration: none;
    text-transform: uppercase;
}




/* SKILLS */

.about-skills {
    display: flex;
    flex-direction: column;
}


/* RIGHT SIDE LOWER FOOTER */

.skill-item {
    min-height: 66px;

    display: flex;
    align-items: center;
    gap: 16px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    color: #d6a34bbc;

    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 1.5px;
}

.skill-icon {
    position: relative;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    flex-shrink: 0;
}

.shape-particles {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    overflow: visible;
}

.skill-symbol {
    position: relative;
    z-index: 2;

    color: #718cab;
    font-size: 9px;

    pointer-events: none;
}

/* CONTENT MODAL */

.content-modal {
    position: fixed;
    inset: 0;

    display: grid;
    place-items: center;

    padding: 28px;

    visibility: hidden;
    opacity: 0;

    z-index: 9999;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.content-modal.is-open {
    visibility: visible;
    opacity: 1;
}



/* DARKENED PAGE BEHIND content */

.content-backdrop {
    position: absolute;
    inset: 0;

    background-color: rgba(2, 8, 14, 0.82);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* content WINDOW */

.content-modal-window {
    position: relative;

    width: min(900px, 92vw);
    height: min(92vh, 1100px);

    overflow: hidden;

    border: 1px solid rgba(214, 164, 75, 0.65);

    background-color: #101a24;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(214, 164, 75, 0.08);

    opacity: 0;
    transform: translateY(30px) scale(0.97);

    transition:
        opacity 0.4s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


.content-modal.is-open .content-modal-window {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* PDF */

.content-frame {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;

    background-color: #ffffff;
}


/*  CLOSE SYMBOL ROTATION */

.custom-close-icon {
    width: 30px;
    height: 30px;

    display: block;

    overflow: visible;

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.4s ease;
}


.close-symbol-main {
    fill: none;

    stroke: #d6a44b;
    stroke-width: 1.25;

    stroke-linejoin: bevel;
}


.close-symbol-outline {
    fill: none;

    stroke: #d6a44b;
    stroke-width: 1.25;

    stroke-linejoin: bevel;
    stroke-linecap: square;
}

/* CLOSE BUTTON */

.content-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid rgba(214, 164, 75, 0.75);

    background-color: rgba(7, 17, 28, 0.92);
    color: #d6a44b;

    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    z-index: 2;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.content-modal-close canvas {
    position: static;
    inset: auto;

    display: block;

    width: 30px;
    height: 30px;

    transform: none;
}

.content-modal-close {
    appearance: none;
    -webkit-appearance: none;
}


.content-modal-close:hover .custom-close-icon {
    transform: rotate(90deg);

    filter:
        drop-shadow(
            0 0 5px
            rgba(214, 164, 75, 0.35)
        );
}


.content-modal-close:active .custom-close-icon {
    transform: rotate(180deg) scale(0.88);
}

.modal-close-canvas {
    transform: translateY(2px);
}

/* PREVENT PAGE SCROLL WHILE OPEN */

body.content-open {
    overflow: hidden;
}


/* TABLET */

@media (max-width: 850px) {

    .site-header {
        height: auto;
        min-height: 82px;

        padding: 12px 24px;
    }

    .brand {
        gap: 12px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;

        font-size: 30px;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-title {
        font-size: 11px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 10px;
        letter-spacing: 1px;
    }


    .hero {
        padding: 48px 28px 56px;
    }

    .hero h1 {
        font-size: clamp(42px, 8vw, 58px);
    }

    .hero-description {
        max-width: 560px;
    }


    .research-section {
        padding: 34px 28px 55px;
    }

    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .project-card {
        min-height: 0;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 18px 16px 16px;
    }


    .about-section {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 28px;

        padding: 45px 28px;
    }

    .about-skills {
        grid-column: 1 / -1;

        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 18px;
    }


    .content-modal {
        padding: 18px;
    }

    .content-modal-window {
        width: 100%;
        height: 94vh;
    }
}


/* MOBILE */

@media (max-width: 700px) {

    html {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    body {
        width: 100%;
        max-width: 100%;
        overflow-x: visible;
    }


    .site-header {
        position: sticky;
        top: 0;

        min-height: 72px;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        gap: 16px;

        padding: 12px 20px;
    }


    .brand {
        width: auto;

        gap: 11px;

        position: relative;
        z-index: 3;
    }


    .brand-logo {
        width: 40px;
        height: 40px;

        font-size: 28px;
    }


    .brand-name {
        font-size: 16px;
        letter-spacing: 1.4px;
    }


    .brand-title {
        font-size: 12px;
        letter-spacing: 1.3px;
    }


    .menu-toggle {
        position: relative;
        z-index: 3;

        display: block;

        flex-shrink: 0;
    }


    .main-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: auto;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 8px 20px 18px;

        border-bottom: 1px solid rgba(214, 164, 75, 0.25);

        background-color: rgba(7, 17, 28, 0.98);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-12px);

        pointer-events: none;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }


    .site-header.menu-open .main-nav {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    .main-nav a {
        width: 100%;

        padding: 16px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.07);

        color: #a9b4c1;

        font-size: 11px;
        letter-spacing: 1.8px;
    }


    .main-nav a:last-child {
        border-bottom: 0;
    }


    /* CHANGE HAMBURGER INTO AN X */

    .site-header.menu-open .menu-toggle span {
        opacity: 0;

        transform: scaleX(0);
    }


    .site-header.menu-open .menu-close-icon {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            rotate(0deg)
            scale(1);
    }


    .site-header.menu-open .menu-toggle:active .menu-close-icon {
        transform:
            translate(-50%, -50%)
            rotate(90deg)
            scale(0.92);
    }


    .hero {
        position: relative;

        min-height: 0;

        padding: 48px 20px 58px;
    }

    .hero-text {
        width: 100%;
        max-width: none;
    }

    .hero h1 {
        font-size: clamp(39px, 12vw, 52px);
        line-height: 1.03;
    }

    .hero-description {
        max-width: 100%;

        margin-top: 26px;
        margin-bottom: 28px;

        font-size: 14px;
        line-height: 1.7;
    }

    .hero-description br {
        display: none;
    }

    .hero-button {
        padding: 12px 15px;

        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .hero-design {
        height: 620px;
    }


    .research-section {
        display: flex;
        flex-direction: column;

        padding: 30px 20px 48px;
    }

    .research-heading {
        display: contents;
    }

    .research-heading h2 {
        order: 1;

        width: 100%;

        display: flex;
        align-items: center;
        gap: 14px;

        margin-bottom: 22px;

        font-size: 12px;
        letter-spacing: 2px;
    }

    .research-heading h2::after {
        content: "";

        flex: 1;
        height: 1px;

        background-color: rgba(214, 164, 75, 0.55);
    }

    .project-grid {
        order: 2;
    }

    .research-heading a {
        order: 3;

        width: 100%;

        display: flex;
        align-items: center;
        gap: 14px;

        margin-top: 24px;

        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .research-heading a::before {
        content: "";

        flex: 1;
        height: 1px;

        background-color: rgba(214, 164, 75, 0.55);
    }

    .research-line {
        display: none;
    }

    .project-grid {
        margin-top: 22px;

        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        width: 100%;
        min-height: 0;
    }

    .project-image {
        height: 230px;
    }

    .project-content {
        padding: 18px 16px 20px;
    }

    .project-content h3 {
        font-size: 26px;
    }

    .project-description {
        font-size: 13px;
    }


    .about-section {
        grid-template-columns: 1fr;
        gap: 28px;

        padding: 42px 20px;
    }

    .about-image {
        width: min(100%, 340px);
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 14px;

        margin: 0 auto;
    }

    .about-photo {
        width: 100%;
        height: auto;


        overflow: hidden;
    }

    .about-photo img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;
        object-position: center top;
    }

    .about-signature {
        width: min(72%, 245px);
        max-width: none;
        height: auto;

        display: block;

        object-fit: contain;

        margin: 0 auto;
    }

    .about-content h2 {
        font-size: 25px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-skills {
        grid-column: auto;

        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .skill-item {
        min-height: 72px;
    }


    .site-footer {
        min-height: 0;

        flex-direction: column;
        align-items: flex-start;

        gap: 22px;

        padding: 26px 20px;
    }

    .footer-left {
        gap: 14px;
    }

    .footer-left p {
        max-width: 240px;

        line-height: 1.5;
    }

    .footer-links {
        width: 100%;
    }


    .content-modal {
        padding: 8px;
    }

    .content-modal-window {
        width: 100%;
        height: 96vh;
    }

    .content-modal-close {
        top: 8px;
        right: 8px;

        width: 38px;
        height: 38px;
    }
}