@font-face {
    font-family: Gilroy;
    src: url("Gilroy-Regular.ttf");
}

@font-face {
    font-family: GilroyT;
    src: url("Gilroy-Thin.ttf");
}

@font-face {
    font-family: GilroyTI;
    src: url("Gilroy-ThinItalic.ttf");
}

::-webkit-scrollbar {
    display: none;
}

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

:root {
    --white: #dadada;
    --gray: #777;
    --graydark: #555;
    --black: #1a1818;
}

*::selection {
    background-color: var(--gray);
    color: var(--black);
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: var(--white);
}

.underlineW::after {
    content: "";
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    transition: ease-in 0.15s;
}

.underlineW:hover::after {
    width: 100%;
}

.underlineB::after {
    content: "";
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--black);
    transition: ease-in 0.15s;
}

.underlineB:hover::after {
    width: 100%;
}

#circle {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: #999;
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: difference;
    display: grid;
    place-items: center;
}

#circle p {
    color: var(--black);
    font-size: 0.2vw;
    letter-spacing: 0.05vw;
    font-family: Gilroy;
    white-space: nowrap;
    text-align: center;
}

#circle p span {
    color: var(--white);
    font-family: Gilroy;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5vw;
    position: fixed;
    top: 0;
    z-index: 9;
    padding: 0 6vw;
    width: 100%;
    background-color: var(--white);
}

nav ul li {
    display: inline;
    list-style-type: none;
    margin-left: 2.5vw;
}

nav a {
    position: relative;
    text-decoration: none;
    color: var(--gray);
    font-family: Fjalla one, sans-serif;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 1.4vw;
    letter-spacing: 0.05vw;
    z-index: 11;
    transition: all ease-in 0.15s;
}

nav .menu-cv {
    padding: 0.5vw 2vw;
    background-color: var(--white);
    border: 1.5px solid var(--gray);
    transition: all linear 0.2s;
}

nav .menu-cv:hover {
    color: var(--white);
    background-color: var(--black);
}

nav a:hover {
    color: var(--black);
}

nav img {
    width: 2.8vw;
    cursor: pointer;
}

#main {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.loader1 {
    height: 100vh;
    width: 100%;
    background-color: var(--black);
    z-index: 11;
    position: absolute;
    top: 0;
}

.loader2 {
    height: 100vh;
    width: 100%;
    background-color: var(--gray);
    z-index: 12;
    position: absolute;
    top: 0;
}

.loader3 {
    height: 100vh;
    width: 100%;
    background-color: var(--white);
    z-index: 13;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    overflow: hidden;
}

.loader3 img {
    width: 3.8vw;
}

.loader3 .loader-logo {
    border-right: 2px solid var(--black);
    padding-right: 15px;
    overflow: hidden;
}

.loader3 p {
    font-family: Fjalla one, sans-serif;
    color: var(--gray);
    text-transform: uppercase;
    font-size: 1.8vw;
    letter-spacing: 2px;
    font-weight: 100;
}

/* LANDING PAGE */

#landing-page {
    height: 100vh;
    width: 100vw;
    background-color: var(--white);
    position: relative;
    padding: 1vw 6vw;
}

#landing-page .profile {
    margin-top: 7vw;
    position: relative;
    width: 100%;
    height: 18vw;
    display: flex;
    align-items: last baseline;
    justify-content: flex-start;
    gap: 15.75vw;
}

#landing-page h1 {
    color: var(--gray);
    font-size: 12vw;
    font-family: Fjalla one, sans-serif;
    font-weight: 100;
    line-height: 1;
    letter-spacing: -3px;
}

.mobile {
    display: none;
}

.profile-img {
    width: 25%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img img {
    width: 16vw;
    height: 16vw;
    object-fit: cover;
    object-position: center top;
    margin-top: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--black);
}

.bounding {
    width: fit-content;
    overflow: hidden;
}

.boundingelem {
    transform: translateY(100%);
}

.black {
    color: var(--black)
}

/* ABOUT */

#about {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-color: var(--white);
    padding: 0 6vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#about h3 {
    font-family: Fjalla one, sans-serif;
    color: var(--gray);
    font-weight: 100;
    font-size: 8vw;
    line-height: 1.4;
}

#about-dets {
    position: relative;
    width: 100%;
    padding: 0 6vw;
    padding-bottom: 8vw;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    background-color: var(--white);
}

#about-dets .left {
    position: relative;
    width: 38%;
    display: flex;
}

.about-portrait-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--black);
}

.about-portrait-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.portrait-badge {
    position: absolute;
    bottom: 2vw;
    left: 2vw;
    background: var(--black);
    color: var(--white);
    font-family: Gilroy, sans-serif;
    font-size: 1.1vw;
    font-weight: 500;
    padding: 0.8vw 1.6vw;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6vw;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.portrait-badge i {
    color: #ff4757;
    font-size: 1.3vw;
}

#about-dets .right {
    position: relative;
    width: 58%;
    padding: 1vw 0;
    padding-left: 2vw;
    overflow: hidden;
}

#about-dets .right h1 {
    font-size: 8vw;
    color: var(--black);
    letter-spacing: -3px;
    font-weight: 100;
    border-bottom: 3px solid var(--black);
    line-height: 1;
    font-family: Fjalla One, sans-serif;
    margin-bottom: 2.5vw;
    width: fit-content;
}

.about-lead {
    font-family: Gilroy, sans-serif;
    font-size: 1.65vw;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 3vw;
}

.about-lead strong {
    font-weight: 600;
}

.about-highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    margin-bottom: 3vw;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2vw;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    padding: 1.5vw 2vw;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--black);
    transform: translateX(6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.highlight-item i {
    font-size: 2vw;
    color: var(--white);
    background: var(--black);
    padding: 0.8vw;
    border-radius: 12px;
    line-height: 1;
}

.highlight-item h4 {
    font-family: Fjalla One, sans-serif;
    font-size: 1.6vw;
    color: var(--black);
    margin-bottom: 0.4vw;
    letter-spacing: 0.5px;
}

.highlight-item p {
    font-family: Gilroy, sans-serif;
    font-size: 1.15vw;
    color: var(--graydark);
    line-height: 1.4;
    margin: 0;
}

.about-quote-box {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding: 2vw 2.5vw;
    border-radius: 16px;
    margin-bottom: 3vw;
}

.about-quote-box i {
    font-size: 2.2vw;
    color: var(--gray);
    margin-bottom: 0.8vw;
    display: block;
}

.about-quote-box p {
    font-family: Gilroy, sans-serif;
    font-size: 1.25vw;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

.about-actions .cv-btn {
    font-family: Gilroy, sans-serif;
    font-weight: 600;
    font-size: 1.3vw;
    letter-spacing: 1px;
    color: var(--white);
    background-color: var(--black);
    padding: 1vw 2.8vw;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8vw;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
    white-space: nowrap;
}

.about-actions .cv-btn:hover {
    background-color: transparent;
    color: var(--black);
}

.about-actions .talk-btn {
    font-family: Gilroy, sans-serif;
    font-weight: 600;
    font-size: 1.3vw;
    letter-spacing: 1px;
    color: var(--black);
    background-color: transparent;
    padding: 1vw 2.8vw;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8vw;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
    white-space: nowrap;
}

.about-actions .talk-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

/* PROJECT */

#projects {
    padding: 10vw 4vw;
    padding-top: 6vw;
    width: 100%;
    position: relative;
    background-color: var(--black);
}

#projects>h1 {
    position: relative;
    width: fit-content;
    font-size: 10vw;
    color: var(--white);
    letter-spacing: -5px;
    font-weight: 100;
    text-align: left;
    border-bottom: 3px solid var(--white);
    line-height: 1;
    font-family: Fjalla one;
}

#projects-container {
    position: relative;
    width: 100%;
    margin-top: 6vw;
}

#projects .project-wrapper {
    position: relative;
    width: 100%;
}

.project-anim {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    background-color: var(--white);
    width: 100%;
    transition: linear 0.25s;
}

.project-wrapper:hover .project-anim {
    height: 101%;
}

.project {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: linear 0.2s;
    height: 28vh;
    width: 100%;
    border-bottom: 2px solid var(--white);
    padding: 0 1.5vw;
    transition: linear 0.4s;
}

.first {
    border-top: 2px solid var(--white);
}

.project:hover {
    padding: 0 0.5vw;
}

.project img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 150%;
    width: 35%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    z-index: 7;
    filter: brightness(0.9);
}

.project a {
    text-decoration: none;
}

.project h1 {
    font-size: 5vw;
    font-family: Fjalla one;
    font-weight: 100;
    color: var(--white);
    letter-spacing: -0.1vw;
    position: relative;
    z-index: 11;
    line-height: 2.65;
    text-transform: uppercase;
    width: 700%;
    overflow: hidden;
    mix-blend-mode: difference;
}

.project i {
    font-size: 6vw;
    color: var(--white);
    position: relative;
    margin-right: -1.25vw;
    z-index: 11;
    font-weight: normal;
    mix-blend-mode: difference;
}

/* SKILLS */

/* BLACK & WHITE DUAL-TONE COMBINATION SKILLS SECTION */

#skills {
    width: 100vw;
    position: relative;
    background-color: var(--white);
    padding: 8vw 6vw;
    border-top: 1.5px solid var(--black);
}

.skills-bw-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.skills-bw-header {
    margin-bottom: 5vw;
}

.skills-bw-header h1 {
    font-family: Fjalla One, sans-serif;
    font-size: 6.5vw;
    color: var(--black);
    letter-spacing: -2px;
    line-height: 1;
    text-transform: uppercase;
}

.skills-bw-header h1 span {
    font-family: Gilroy, sans-serif;
    font-style: italic;
    color: var(--graydark);
    font-weight: 300;
    margin-right: 1.5vw;
}

.skills-bw-header p {
    font-family: Gilroy, sans-serif;
    font-size: 1.4vw;
    color: var(--graydark);
    margin-top: 1vw;
    font-weight: 300;
    max-width: 700px;
}

.skills-bw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2vw;
    width: 100%;
}

.bw-card {
    border-radius: 20px;
    padding: 2.5vw;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* BLACK CARD VARIANT */
.bw-card.card-black {
    background-color: var(--black);
    color: var(--white);
    border: 1.5px solid var(--black);
}

.bw-card.card-black .card-num {
    color: var(--gray);
}

.bw-card.card-black .card-badge {
    color: var(--black);
    background: var(--white);
}

.bw-card.card-black h3 {
    color: var(--white);
}

.bw-card.card-black .card-desc {
    color: var(--gray);
}

.bw-card.card-black .bw-tag {
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--white);
}

.bw-card.card-black .bw-tag i {
    color: var(--black);
}

.bw-card.card-black .bw-tag:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.bw-card.card-black .bw-tag:hover i {
    color: var(--white);
}

/* WHITE CARD VARIANT */
.bw-card.card-white {
    background-color: #ffffff;
    color: var(--black);
    border: 1.5px solid var(--black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bw-card.card-white .card-num {
    color: var(--graydark);
}

.bw-card.card-white .card-badge {
    color: var(--white);
    background: var(--black);
}

.bw-card.card-white h3 {
    color: var(--black);
}

.bw-card.card-white .card-desc {
    color: var(--graydark);
}

.bw-card.card-white .bw-tag {
    color: var(--white);
    background: var(--black);
    border: 1px solid var(--black);
}

.bw-card.card-white .bw-tag i {
    color: var(--white);
}

.bw-card.card-white .bw-tag:hover {
    background: #ffffff;
    color: var(--black);
    border-color: var(--black);
}

.bw-card.card-white .bw-tag:hover i {
    color: var(--black);
}

.bw-card.featured-card {
    grid-column: span 2;
}

.bw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.bw-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5vw;
}

.bw-card-top .card-num {
    font-family: Gilroy, sans-serif;
    font-style: italic;
    font-size: 1.6vw;
}

.bw-card-top .card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;
    font-family: Gilroy, sans-serif;
    font-size: 0.9vw;
    font-weight: 600;
    padding: 0.4vw 1vw;
    border-radius: 30px;
    letter-spacing: 1px;
}

.bw-card h3 {
    font-family: Fjalla One, sans-serif;
    font-size: 2vw;
    letter-spacing: 0.5px;
    margin-bottom: 0.8vw;
}

.bw-card .card-desc {
    font-family: Gilroy, sans-serif;
    font-size: 1.1vw;
    line-height: 1.4;
    margin-bottom: 2vw;
    font-weight: 300;
}

.bw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8vw;
    margin-top: auto;
}

.bw-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;
    font-family: Gilroy, sans-serif;
    font-size: 1.05vw;
    padding: 0.6vw 1.2vw;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: default;
}

.bw-tag i {
    font-size: 1.1vw;
}

.bw-tag:hover {
    transform: scale(1.06);
}

@media (max-width: 1024px) {
    .skills-bw-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }
    .bw-card.featured-card {
        grid-column: span 2;
    }
    .skills-bw-header h1 {
        font-size: 9vw;
    }
    .skills-bw-header p {
        font-size: 2.5vw;
    }
    .bw-card-top .card-num {
        font-size: 2.5vw;
    }
    .bw-card-top .card-badge {
        font-size: 1.6vw;
        padding: 0.8vw 1.8vw;
    }
    .bw-card h3 {
        font-size: 3.5vw;
    }
    .bw-card .card-desc {
        font-size: 2vw;
    }
    .bw-tag {
        font-size: 1.8vw;
        padding: 1vw 2vw;
    }
}

@media (max-width: 600px) {
    .skills-bw-grid {
        grid-template-columns: 1fr;
        gap: 6vw;
    }
    .bw-card.featured-card {
        grid-column: span 1;
    }
    .skills-bw-header h1 {
        font-size: 12vw;
    }
    .skills-bw-header p {
        font-size: 4vw;
        margin-top: 2vw;
    }
    .bw-card {
        padding: 6vw;
        border-radius: 16px;
    }
    .bw-card-top .card-num {
        font-size: 4.5vw;
    }
    .bw-card-top .card-badge {
        font-size: 3vw;
        padding: 1.5vw 3.5vw;
    }
    .bw-card h3 {
        font-size: 6vw;
    }
    .bw-card .card-desc {
        font-size: 3.5vw;
        margin-bottom: 4vw;
    }
    .bw-tag {
        font-size: 3.6vw;
        padding: 2vw 3.8vw;
    }
    .bw-tag i {
        font-size: 3.8vw;
    }
}

/* CRAFT */

#craft {
    position: relative;
    height: 100vh;
    padding-top: 3.5vw;
    width: 100vw;
    background-color: var(--white);
    display: grid;
    place-items: center;
    overflow: hidden;
}

#craft .craft-img {
    height: 22vw;
    width: 22vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 24px;
    border: 3px solid var(--black);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background: transparent !important;
}

#craft .craft-img img {
    height: 100%;
    width: 100%;
    margin-top: 0;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    opacity: 0.68 !important;
    mix-blend-mode: multiply !important;
    transition: opacity 0.3s ease;
}

#craft .craft-img:hover img {
    opacity: 1 !important;
}

#craft h1 {
    font-family: Fjalla one, sans-serif;
    font-size: 13vw;
    font-weight: 100;
    color: var(--black);
    letter-spacing: -0.2vw;
    white-space: nowrap;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

#craft .stroke {
    -webkit-text-stroke: 3px var(--gray);
    color: transparent;
    z-index: 3;
    position: relative;
    line-height: 1;
    mix-blend-mode: darken;
}

/* CERTIFICATIONS */

#certifications {
    width: 100vw;
    position: relative;
    background-color: var(--white);
    padding: 3vw 6vw;
    padding-top: 5vw;
    padding-bottom: 10vw;
}

#certifications h1 {
    position: relative;
    width: fit-content;
    font-size: 10vw;
    color: var(--black);
    letter-spacing: -5px;
    font-weight: 100;
    text-align: left;
    border-bottom: 3px solid var(--black);
    line-height: 1;
    font-family: Fjalla one;
    margin-bottom: 3.5vw;
}

#certifications .cert-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

#certifications .cert {
    height: 45vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8vw;
    overflow: hidden;
    padding: 0 5vw;
}

#certifications .cert a {
    text-decoration: none;
    color: var(--black);
}

#certifications .cert h3 {
    font-family: Fjalla one, sans-serif;
    font-weight: 100;
    font-size: 5.25vw;
    line-height: 1;
    text-transform: uppercase;
    width: 50%;
    line-height: 1.25;
    position: relative;
}

#certifications .cert h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--black);
    transition: all ease-in 0.18s;
}

#certifications .cert h3:hover::after {
    width: 95%;
}

#certifications .cert h3 span {
    color: var(--black);
    font-family: GilroyTI;
}

#certifications .cert .cert-img {
    position: relative;
    height: 100%;
    width: 40%;
    overflow: hidden;
    display: grid;
    place-items: center;
    transition: linear 0.2s;
}

#certifications .cert .cert-img img {
    width: 100%;
    object-fit: contain;
}

/* CONTACT */

#contact {
    padding: 4vw 6vw;
    padding-top: 5vw;
    width: 100vw;
    position: relative;
    background-color: var(--black);
}

#contact h1 {
    position: relative;
    width: fit-content;
    font-size: 10vw;
    color: var(--gray);
    letter-spacing: -5px;
    font-weight: 100;
    text-align: left;
    border-bottom: 3px solid var(--gray);
    line-height: 1;
    font-family: Fjalla one;
    margin-bottom: 3.5vw;
}

#contact .cont-wrapper {
    width: 100%;
    display: flex;
    position: relative;
    background-color: var(--black);
}

.cont-wrapper .left {
    position: relative;
    width: 60%;
    padding-right: 4vw;
}

.cont-wrapper .left h3 {
    font-family: Fjalla one, sans-serif;
    font-size: 4vw;
    font-weight: 100;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 1vw;
}

.cont-wrapper .left p {
    font-family: Gilroy, sans-serif;
    font-size: 1.6vw;
    color: var(--gray);
    line-height: 1.3;
    margin-bottom: 3vw;
}

.cont-wrapper .left form {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cont-wrapper .left .sub-wrapper {
    position: relative;
    display: none;
}

.cont-wrapper .left .submit-res {
    margin-top: 4vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 1vw;
    border-top: 1.5px solid var(--graydark);
    padding: 4vw 0;
}

.cont-wrapper .left .submit-res h2 {
    font-family: Gilroy, sans-serif;
    color: var(--white);
    font-size: 2.25vw;
    font-weight: 100;
}

.cont-wrapper .left .submit-res p {
    font-family: Gilroy, sans-serif;
    color: var(--gray);
    font-size: 1.6vw;
}

.cont-wrapper .left form .input-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cont-wrapper .left form .input-wrapper input,
.cont-wrapper .left form textarea {
    font-family: Gilroy, sans-serif;
    padding: 1vw 0;
    border: none;
    border-bottom: 1px solid var(--white);
    background-color: var(--black);
    color: var(--white);
    margin: 1vw 0;
    font-size: 1.4vw;
    outline: none;
    resize: none;
}

.cont-wrapper .left form input {
    width: 47%;
}

.cont-wrapper .left form button {
    padding: 1vw 2.5vw;
    border-radius: 100px;
    border: 1.8px solid var(--white);
    color: var(--gray);
    background-color: var(--black);
    width: fit-content;
    font-family: Gilroy, sans-serif;
    font-size: 1.6vw;
    margin-top: 2vw;
    transition: all ease-in 0.15s;
    outline: none;
    cursor: pointer;
}

.cont-wrapper .left form button:hover {
    color: var(--white);
}

.cont-wrapper .right {
    position: relative;
    width: 40%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4vw;
    padding-left: 4vw;
}

.cont-wrapper .right .cont-links h4,
.cont-wrapper .right .location h4,
.cont-wrapper .right .cont-cv {
    font-family: Fjalla one, sans-serif;
    color: var(--gray);
    font-size: 2.25vw;
    font-weight: 100;
    margin-bottom: 1.25vw;
}

.cont-wrapper .right .cont-cv {
    background-color: var(--black);
    text-decoration: none;
    position: relative;
    color: var(--gray);
    border: 1.8px solid var(--white);
    padding: 0.5vw 4.5vw;
    border-radius: 100px;
    transition: all ease-in 0.15s;
}

.cont-wrapper .right .cont-cv:hover {
    color: var(--white);
}

.cont-wrapper .right .cont-links a,
.cont-wrapper .right .location p {
    position: relative;
    text-decoration: none;
    font-family: Gilroy, sans-serif;
    font-size: 1.6vw;
    color: var(--white);
    line-height: 2.25;
}

.cont-wrapper .right .cont-links a img {
    width: 1.5vw;
}

#contact .footer {
    width: 100%;
    margin-top: 10vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

#contact .footer p {
    color: var(--gray);
    font-size: 1.2vw;
    font-family: Gilroy, sans-serif;
}

#contact .footer p>img {
    width: 1.2vw;
    margin: 0 5px;
}

#contact .footer .back-top {
    position: relative;
    color: var(--white);
    cursor: pointer;
}


/* RESPONSIVENESS */


@media (max-width: 1050px) {

    #circle {
        display: none;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .loader3 img {
        width: 8vw;
    }

    .loader3 .loader-logo {
        border-right: 2px solid var(--black);
        padding-right: 15px;
    }

    .loader3 p {
        font-family: Fjalla one, sans-serif;
        color: var(--gray);
        text-transform: uppercase;
        font-size: 5vw;
        letter-spacing: 1.5px;
    }

    .navbar-mob {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 7.5vh;
        width: 100%;
        background-color: var(--white);
        padding: 0 6vw;
    }

    .navbar-mob img {
        width: 5.5vw;
    }

    .navbar-mob h4 {
        font-family: Fjalla one, sans-serif;
        font-size: 3vw;
        letter-spacing: 1.5px;
        color: var(--black);
    }

    #menu {
        height: 0;
        width: 100%;
        position: absolute;
        background-color: var(--black);
        top: 0;
        z-index: 10;
        overflow: hidden;
        border-radius: 0 0 500px 500px;
    }

    #menu .bg1 {
        background-color: var(--white);
        position: absolute;
        top: 0;
        width: 100%;
        height: 0;
        z-index: 11;
        border-radius: 0 0 500px 500px;
    }

    #menu .bg2 {
        background-color: var(--black);
        position: absolute;
        top: 0;
        width: 100%;
        height: 0;
        z-index: 12;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5vh;
        border-radius: 0 0 500px 500px;
    }

    #menu .bg2 a {
        text-decoration: none;
        color: var(--white);
        font-family: Fjalla one, sans-serif;
        font-weight: 100;
        text-transform: uppercase;
        line-height: 1;
        font-size: 7vw;
        opacity: 0;
    }

    #menu .fiver-logo {
        width: 2.3vw;
    }

    #menu a span {
        font-family: GilroyTI;
        text-transform: lowercase;
        font-size: 5vw;
    }

    .menu-social {
        width: 100%;
        position: absolute;
        top: 3.5vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 6vw;
        overflow: hidden;
    }

    #menu .menu-social a {
        font-family: Gilroy;
        font-size: 3vw;
        color: var(--white);
        text-transform: none;
        border-bottom: 1px solid var(--white);
        line-height: 1;
    }

    .menu-footer {
        width: 100%;
        position: absolute;
        bottom: 3.5vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 6vw;
        overflow: hidden;
    }

    #menu .menu-footer p {
        font-family: Gilroy;
        font-size: 3vw;
        color: var(--gray);
        text-transform: none;
        line-height: 1;
    }

    #landing-page {
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    #landing-page .profile {
        height: fit-content;
        justify-content: space-between;
        gap: 0;
        margin: 0;
    }

    #landing-page h1 {
        font-size: 15vw;
        letter-spacing: -2px;
        line-height: 1.15;
    }

    .profile-img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
    }

    .profile-img img {
        width: 26vw;
        height: 26vw;
        min-width: 90px;
        min-height: 90px;
        max-width: 150px;
        max-height: 150px;
        border-radius: 14px;
        object-fit: cover;
        border: 2px solid var(--black);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* ABOUT */

    #about {
        height: auto;
        padding: 12vw 6vw;
        background-color: var(--white);
    }

    #about h3 {
        font-size: 9vw;
        line-height: 1.5;
    }

    #about-dets {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding-bottom: 12vw;
    }

    #about-dets .left {
        width: 100%;
        height: 480px;
        max-height: 60vh;
        margin-bottom: 8vw;
    }

    #about-dets .right {
        width: 100%;
        padding: 4vw 0;
        padding-left: 0;
    }

    #about-dets .right h1 {
        font-size: 14vw;
        margin-bottom: 5vw;
        letter-spacing: -2px;
    }

    .about-lead {
        font-size: 3.8vw;
        line-height: 1.7;
        margin-bottom: 6vw;
    }

    .about-highlights-grid {
        gap: 3.5vw;
        margin-bottom: 6vw;
    }

    .highlight-item {
        padding: 4vw 4.5vw;
        gap: 3.5vw;
        border-radius: 14px;
    }

    .highlight-item i {
        font-size: 5vw;
        padding: 2.2vw;
        border-radius: 10px;
    }

    .highlight-item h4 {
        font-size: 3.8vw;
    }

    .highlight-item p {
        font-size: 2.8vw;
    }

    .about-quote-box {
        padding: 5vw;
        margin-bottom: 6vw;
        border-radius: 14px;
    }

    .about-quote-box i {
        font-size: 5vw;
    }

    .about-quote-box p {
        font-size: 3vw;
    }

    .about-actions {
        flex-direction: column;
        width: 100%;
        gap: 3.5vw;
    }

    .about-actions .cv-btn,
    .about-actions .talk-btn {
        width: 100%;
        justify-content: center;
        font-size: 3.8vw;
        padding: 3vw 0;
        white-space: nowrap;
        border-radius: 50px;
    }

    .portrait-badge {
        font-size: 2.8vw;
        padding: 1.8vw 3.8vw;
        bottom: 3vw;
        left: 3vw;
    }

    .portrait-badge i {
        font-size: 3.2vw;
    }

    /* PROJECT */

    #projects {
        padding: 17vw 6vw;
        width: 100%;
    }

    #projects>h1 {
        font-size: 18vw;
        letter-spacing: -2px;
    }

    #projects-container {
        position: relative;
        width: 100%;
        margin-top: 13vw;
    }

    .project {
        height: 20vh;
        padding: 6vw 0;
    }

    .project img {
        display: none;
    }

    .project h1 {
        font-size: 8vw;
        line-height: 1;
        width: fit-content;
    }

    .project i {
        font-size: 8vw;
    }

    /* SKILLS */

    #skills {
        width: 100vw;
        position: relative;
    }

    #skills .skills-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        position: relative;
        background-color: var(--white);
        padding: 17vw 0;
    }

    #skills .skills {
        width: 100%;
        padding: 0 6vw;
    }

    #skills .skills h1 {
        font-size: 9vw;
        margin-bottom: 7vw;
        padding: 1.5vw 12vw;
        padding-left: 3vw;
        border-radius: 7px 7px 55px 7px;
    }

    .soft-h1 {
        margin-top: 15vw;
    }

    #skills .skills h1 span {
        font-size: 12vw;
    }

    #skills .skills h3 {
        font-size: 5.5vw;
        width: fit-content;
        margin-top: 10vw;
        margin-bottom: 6vw;
        padding: 0 6vw;
        padding-left: 2vw;
        border-radius: 5px 5px 25px 5px;
    }

    #skills .skills .key-skill-over {
        margin-top: 7.5vw;
    }

    #skills .skills p {
        font-size: 3.75vw;
        padding: 1vw;
        padding-left: 3vw;
        border-radius: 5px 5px 25px 5px;
        margin-bottom: 3vw;
        width: 60%;
    }

    /* CRAFT */

    #craft {
        height: 100vh;
        padding: 8vw 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5vh;
        justify-content: center;
        overflow: hidden;
    }

    #craft .craft-img {
        height: 55%;
        width: 45%;
        overflow: hidden;
    }

    #craft .craft-img img {
        width: 100%;
        margin-top: 10%;
        object-fit: cover;
    }

    #craft h1 {
        font-size: 13vw;
    }

    #craft .stroke {
        -webkit-text-stroke: 1px var(--gray);
    }

    /* CERTIFICATIONS */

    #certifications {
        padding: 17vw 6vw;
    }

    #certifications h1 {
        font-size: 17vw;
        margin-bottom: 0;
        letter-spacing: -2px;
    }

    #certifications .cert {
        height: auto;
        margin-top: 18vw;
        padding: 0;
        flex-direction: column;
        gap: 5vw;
    }

    #certifications .cert h3 {
        font-size: 10vw;
        width: 100%;
    }

    #certifications .cert .cert-img {
        width: 100%;
    }

    /* CONTACT */

    #contact {
        padding: 17vw 6vw;
        padding-bottom: 8vw;
    }

    #contact h1 {
        font-size: 18vw;
        margin-bottom: 8vw;
        letter-spacing: -2px;
    }

    #contact .cont-wrapper {
        flex-direction: column;
    }

    .cont-wrapper .left {
        width: 100%;
        padding-right: 0;
    }

    .cont-wrapper .left h3 {
        font-size: 9vw;
        margin-bottom: 2.5vw;
    }

    .cont-wrapper .left p {
        font-size: 3.7vw;
        color: var(--gray);
        line-height: 1.4;
        margin-bottom: 8vw;
    }

    .cont-wrapper .left form .input-wrapper {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .cont-wrapper .left form .input-wrapper input,
    .cont-wrapper .left form textarea {
        padding: 1vw 0;
        margin: 3vw 0;
        font-size: 3.7vw;
        resize: none;
    }

    .cont-wrapper .left form input {
        width: 100%;
    }

    .cont-wrapper .left form button {
        padding: 3.25vw 7vw;
        border: 1px solid var(--white);
        font-size: 3.7vw;
        margin-top: 3vw;
        width: 100%;
        color: var(--white);
        line-height: 1;
    }

    .cont-wrapper .right {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 4vw;
        padding-left: 0;
        padding: 15vw 0;
    }

    .cont-wrapper .right .cont-links h4,
    .cont-wrapper .right .location h4,
    .cont-wrapper .right .cont-cv {
        font-size: 5.5vw;
        margin: 3vw 0;
    }

    .cont-wrapper .right .cont-cv {
        border: none;
        padding: 0;
        border-radius: 0;
        line-height: 1.5;
        transition: all ease-in 0.15s;
        color: var(--white);
        border-bottom: 1px solid var(--white);
        text-transform: uppercase;
    }

    .cont-wrapper .right .cont-cv:hover {
        color: var(--white);
    }

    .cont-wrapper .right .cont-links a,
    .cont-wrapper .right .location p {
        position: relative;
        text-decoration: none;
        font-family: Gilroy, sans-serif;
        font-size: 3.7vw;
        color: var(--white);
        line-height: 2;
    }

    .cont-wrapper .right .cont-links a img {
        width: 3.7vw;
    }

    #contact .footer {
        width: 100%;
        margin-top: 3vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    #contact .footer p {
        color: var(--gray);
        font-size: 2.75vw;
        font-family: Gilroy, sans-serif;
    }

    #contact .footer p>img {
        width: 2.7vw;
        margin: 0 2px;
    }

    #contact .footer .back-top {
        display: none;
    }

}


@media (max-width: 600px) {

    #circle {
        display: none;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .loader3 img {
        width: 10vw;
    }

    .loader3 .loader-logo {
        border-right: 2px solid var(--black);
        padding-right: 15px;
    }

    .loader3 p {
        font-family: Fjalla one, sans-serif;
        color: var(--gray);
        text-transform: uppercase;
        font-size: 6vw;
        letter-spacing: 1.5px;
    }

    .navbar-mob {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 8vh;
        width: 100%;
        background-color: var(--white);
        padding: 0 6vw;
    }

    .navbar-mob img {
        width: 7vw;
    }

    .navbar-mob h4 {
        font-family: Fjalla one, sans-serif;
        font-size: 4vw;
        letter-spacing: 1px;
        color: var(--black);
    }

    #menu {
        height: 0;
        width: 100%;
        position: absolute;
        background-color: var(--black);
        top: 0;
        z-index: 10;
        overflow: hidden;
        border-radius: 0 0 500px 500px;
    }

    #menu .bg1 {
        background-color: var(--white);
        position: absolute;
        top: 0;
        width: 100%;
        height: 0;
        z-index: 11;
        border-radius: 0 0 500px 500px;
    }

    #menu .bg2 {
        background-color: var(--black);
        position: absolute;
        top: 0;
        width: 100%;
        height: 0;
        z-index: 12;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7.5vh;
        border-radius: 0 0 500px 500px;
    }

    #menu .bg2 a {
        text-decoration: none;
        color: var(--white);
        font-family: Fjalla one, sans-serif;
        font-weight: 100;
        text-transform: uppercase;
        line-height: 1;
        font-size: 10vw;
        opacity: 0;
    }

    #menu .fiver-logo {
        width: 3.3vw;
    }

    #menu a span {
        font-family: GilroyTI;
        text-transform: lowercase;
        font-size: 7vw;
    }

    .menu-social {
        width: 100%;
        position: absolute;
        top: 3.5vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5vw 6vw;
        overflow: hidden;
    }

    #menu .menu-social a {
        font-family: Gilroy;
        font-size: 3.7vw;
        color: var(--white);
        text-transform: none;
        border-bottom: 1px solid var(--white);
        line-height: 1;
    }

    .menu-footer {
        width: 100%;
        position: absolute;
        bottom: 3.5vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5vw 6vw;
        overflow: hidden;
    }

    #menu .menu-footer p {
        font-family: Gilroy;
        font-size: 3.7vw;
        color: var(--gray);
        text-transform: none;
        line-height: 1;
    }

    #landing-page {
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    #landing-page .profile {
        height: fit-content;
        justify-content: space-between;
        gap: 0;
    }

    #landing-page h1 {
        font-size: 18vw;
        line-height: 1.2;
    }

    .profile-img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
    }

    .profile-img img {
        width: 28vw;
        height: 28vw;
        min-width: 85px;
        min-height: 85px;
        max-width: 130px;
        max-height: 130px;
        border-radius: 12px;
        object-fit: cover;
        border: 2px solid var(--black);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* ABOUT */

    #about {
        height: auto;
        padding: 15vw 6vw;
        background-color: var(--white);
    }

    #about h3 {
        font-size: 10vw;
        line-height: 1.5;
    }

    #about-dets {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #about-dets .left {
        width: 100%;
        max-height: 75vh;
        overflow: hidden;
    }

    #about-dets .left img {
        width: 100%;
    }

    #about-dets .right {
        width: 100.5%;
        padding: 20vw 0;
        padding-left: 0;
    }

    #about-dets .right h1 {
        font-size: 20vw;
        margin-bottom: 10vw;
    }

    #about-dets .right p {
        font-size: 4vw;
        margin: 3vw 0;
        line-height: 1.8;
    }

    #about-dets .right p::first-letter {
        font-size: 7vw;
        line-height: 1.3;
    }

    #about-dets .right h4 {
        font-size: 7vw;
        margin-top: 10vw;
    }

    #about-dets .right h4 span {
        font-size: 5vw;
        margin-left: 3vw;
    }

    #about-dets .right .kudosp {
        margin-bottom: 15vw;
    }

    #about-dets .right a {
        font-size: 8vw;
        text-decoration: none;
        background-color: var(--black);
        transition: all ease-in 0.15s;
        padding: 3vw 16vw;
        line-height: 1;
        color: var(--white);
    }

    /* PROJECT */

    #projects {
        padding: 20vw 6vw;
        width: 100%;
    }

    #projects>h1 {
        font-size: 20vw;
    }

    #projects-container {
        position: relative;
        width: 100%;
        margin-top: 15vw;
    }

    .project {
        height: 18vh;
        padding: 6vw 0;
    }

    .project img {
        display: none;
    }

    .project h1 {
        font-size: 10vw;
        line-height: 1;
        width: fit-content;
    }

    .project i {
        font-size: 10vw;
    }

    /* SKILLS */

    #skills {
        width: 100vw;
        position: relative;
    }

    #skills .skills-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        position: relative;
        background-color: var(--white);
        padding: 20vw 0;
    }

    #skills .skills {
        width: 100%;
        padding: 0 6vw;
    }

    #skills .skills h1 {
        font-size: 12vw;
        margin-bottom: 9vw;
        padding: 2vw 15vw;
        padding-left: 4vw;
        border-radius: 7px 7px 55px 7px;
    }

    .soft-h1 {
        margin-top: 20vw;
    }

    #skills .skills h1 span {
        font-size: 15vw;
    }

    #skills .skills h3 {
        font-size: 6vw;
        width: fit-content;
        margin-top: 12vw;
        margin-bottom: 8vw;
        padding: 0 6vw;
        padding-left: 3vw;
        border-radius: 5px 5px 25px 5px;
    }

    #skills .skills .key-skill-over {
        margin-top: 9vw;
    }

    #skills .skills p {
        font-size: 5vw;
        padding: 1vw;
        padding-left: 3vw;
        border-radius: 5px 5px 25px 5px;
        margin-bottom: 4vw;
        width: 76%;
    }

    /* CRAFT */

    #craft {
        height: 100vh;
        padding: 10vw 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3vh;
        justify-content: center;
        overflow: hidden;
    }

    #craft .craft-img {
        height: 35%;
        width: 50%;
        overflow: hidden;
    }

    #craft .craft-img img {
        width: 100%;
        margin-top: 10%;
        object-fit: cover;
    }

    #craft h1 {
        font-size: 16vw;
    }

    #craft .stroke {
        -webkit-text-stroke: 1px var(--gray);
    }

    /* CERTIFICATIONS */

    #certifications {
        padding: 20vw 6vw;
    }

    #certifications h1 {
        font-size: 17.5vw;
        margin-bottom: 0;
    }

    #certifications .cert {
        height: auto;
        margin-top: 20vw;
        padding: 0;
        flex-direction: column;
        gap: 5vw;
    }

    #certifications .cert h3 {
        font-size: 12vw;
        width: 100%;
    }

    #certifications .cert .cert-img {
        width: 100%;
    }

    /* CONTACT */

    #contact {
        padding: 20vw 6vw;
        padding-bottom: 10vw;
    }

    #contact h1 {
        font-size: 20vw;
        margin-bottom: 10vw;
    }

    #contact .cont-wrapper {
        flex-direction: column;
    }

    .cont-wrapper .left {
        width: 100%;
        padding-right: 0;
    }

    .cont-wrapper .left h3 {
        font-size: 11vw;
        margin-bottom: 4vw;
    }

    .cont-wrapper .left p {
        font-size: 5vw;
        color: var(--gray);
        line-height: 1.4;
        margin-bottom: 10vw;
    }

    .cont-wrapper .left form .input-wrapper {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .cont-wrapper .left form .input-wrapper input,
    .cont-wrapper .left form textarea {
        padding: 2vw 0;
        margin: 4vw 0;
        font-size: 4.8vw;
        resize: none;
    }

    .cont-wrapper .left form input {
        width: 100%;
    }

    .cont-wrapper .left form button {
        padding: 3.5vw 7vw;
        border: 1px solid var(--white);
        font-size: 5vw;
        margin-top: 4vw;
        width: 100%;
        color: var(--white);
        line-height: 1;
    }

    .cont-wrapper .right {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 4vw;
        padding-left: 0;
        padding: 15vw 0;
    }

    .cont-wrapper .right .cont-links h4,
    .cont-wrapper .right .location h4,
    .cont-wrapper .right .cont-cv {
        font-size: 7vw;
        margin: 4vw 0;
    }

    .cont-wrapper .right .cont-cv {
        border: none;
        padding: 0;
        border-radius: 0;
        line-height: 1.5;
        transition: all ease-in 0.15s;
        color: var(--white);
        border-bottom: 1px solid var(--white);
        text-transform: uppercase;
    }

    .cont-wrapper .right .cont-cv:hover {
        color: var(--white);
    }

    .cont-wrapper .right .cont-links a,
    .cont-wrapper .right .location p {
        position: relative;
        text-decoration: none;
        font-family: Gilroy, sans-serif;
        font-size: 5vw;
        color: var(--white);
        line-height: 2.25;
    }

    .cont-wrapper .right .cont-links a img {
        width: 5vw;
    }

    #contact .footer {
        width: 100%;
        margin-top: 4vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    #contact .footer p {
        color: var(--gray);
        font-size: 3.5vw;
        font-family: Gilroy, sans-serif;
    }

    #contact .footer p>img {
        width: 3.5vw;
        margin: 0 2px;
    }

    #contact .footer .back-top {
        display: none;
    }

}

/* CERTIFICATE LIGHTBOX MODAL */

.cert-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-modal.active {
    display: flex;
    opacity: 1;
}

.cert-modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cert-modal.active .cert-modal-content {
    transform: scale(1);
}

.cert-modal-close {
    position: absolute;
    top: 3vw;
    right: 4vw;
    color: var(--white);
    font-size: 4vw;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000;
    transition: color 0.2s ease;
    font-family: Gilroy, sans-serif;
    line-height: 1;
}

.cert-modal-close:hover {
    color: var(--gray);
}