@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/* font-family: "Spectral", serif; */
/* font-family: "Inter", sans-serif; */
/* font-family: "League Spartan", sans-serif; */


:root {
    --white: #fff;
    --redColor: #FF0000;
    --blueColor: #4169E1;
    --greenColor: #00FF00;
    --orangeColor: #FF8C00;
    --purpleColor: #9932CC;
    --cyanColor: #00FFFF;
    --yellowColor: #FFFF00;
    --deepPinkColor: #FF1493;
    --yellowishGreen: #99CC00;
    --darkGrey: #011C2A;
    --lightPurple: #970FF2;
    --bg-black: #000000;
    --text-white: #ffffff;
    --input-bg: #f3f3f3;
    --btn-blue: #0050ff;
    --radius-top-right: 4.5rem;

}

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

body {
    background: #fff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 4rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
}


.header.scrolled {
    padding-bottom: 3rem;
}

.header.scrolled .logo img {
    display: none;
}


.logo img {
    height: auto;
    width: 180px;
    margin-bottom: -3rem;
}

nav.nav {
    background-color: var(--darkGrey);
    padding: 2rem 2rem;
    margin-right: -4rem;
    border-radius: 0 0 0 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-list a {
    position: relative;
    font-weight: 200;
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-list a.active {
    font-weight: 500;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        z-index: 99;
        position: relative;
    }

    .logo img {
        height: auto;
        width: 130px;
        margin-bottom: -1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span {
        background: #ffffff;
    }

    .nav {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 30px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .nav-list a {
        font-size: 1.5rem;
        padding: 12px 0;
        display: block;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}



/* FULL EDGE TO EDGE */
.circles-container {
    /* position: fixed; */
    inset: 0;
    width: 100vw;
    pointer-events: none;
}

/* BASE CIRCLE */
.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.9;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-origin: center;
    pointer-events: auto;
}

.circle:hover {
    transform: scale(1.2);
    /* z-index: 5; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* =========================
   LEFT SIDE (EDGE TOUCH)
========================= */
.c1 {
    width: 28rem;
    height: 28rem;
    border: 1rem solid var(--redColor);
    top: 164vh;
    right: -8.5vw;
}

.c2 {
    width: 1.625rem;
    height: 1.625rem;
    border-color: var(--blueColor);
    top: 10%;
    right: -2vw;
}

.c3 {
    width: 6rem;
    height: 6rem;
    border: 0.5rem solid var(--greenColor);
    top: 11%;
    right: 4vw;
}

.c4 {
    width: 3.125rem;
    height: 3.125rem;
    border: 0.3rem solid var(--orangeColor);
    top: 15%;
    right: 18vw;
}

.c5 {
    width: 10rem;
    height: 10rem;
    top: -4rem;
    border: 0.5rem solid var(--purpleColor);
    left: 0;
    right: 0;
    margin: auto;
}

.c6 {
    width: 3.25rem;
    height: 3.25rem;
    border: 0.3rem solid var(--cyanColor);
    top: 100vh;
    left: 50vw;
}

.c7 {
    width: 7.375rem;
    height: 7.375rem;
    border: 0.3rem solid var(--blueColor);
    top: 102vh;
    right: 19%;
}

.c8 {
    width: 6vw;
    height: 6vw;
    left: -3%;
    top: 75%;
    border: 0.6rem solid var(--deepPinkColor);
}

.c9 {
    width: 3.375rem;
    height: 3.375rem;
    border: 0.3rem solid var(--blueColor);
    top: 72vh;
    right: -2%;
}

.c10 {
    width: 2.75rem;
    height: 2.75rem;
    border: 0.3rem solid var(--purpleColor);
    top: 100vh;
    left: 28vw;
}

.c11 {
    width: 4.25rem;
    height: 4.25rem;
    border: 0.3rem solid var(--yellowishGreen);
    top: 113vh;
    left: 62%;
}

.c12 {
    width: 1.875rem;
    height: 1.875rem;
    border: 0.3rem solid var(--redColor);
    top: 86vh;
    left: 46%;
}

.c13 {
    width: 8.625rem;
    height: 8.625rem;
    border: 0.3rem solid var(--yellowColor);
    top: 137vh;
    right: 25%;
}

/* MOBILE */
@media (max-width: 768px) {
    .circle:hover {
        transform: scale(1.4);
    }
}

/* Overlay for mobile menu */
@media (max-width: 768px) {
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

    .mainTopSec {
        flex-direction: column;
        gap: 3rem;
    }

    .c1 {
        top: 210vh;
        right: -8.5vw;
        z-index: -1;
    }

    .c6,
    .c7,
    .c10,
    .c11,
    .c12,
    .c12,
    .c12,
    .c13 {
        display: none;
    }

    nav.nav {
        margin-right: 4.125rem;
        height: 100%;
    }

}






.mainTopSec {
    display: flex;
    padding: 10rem 3.7rem 0rem;
    justify-content: space-between;
    align-items: center;
}

.mainTopSec h1 {
    flex: 0 0 40%;
    color: var(--darkGrey);
    font-family: "League Spartan", sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 8.5625vw, 8.5625rem);

}

.mainTopSec .rightSec {
    flex: 0 0 45%;
}

.mainTopSec .about-us {
    padding-right: 5rem;
    padding-left: 5rem;
}

.mainTopSec .about-us h2 {
    background: var(--darkGrey);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    margin-left: -5rem;
    max-width: max-content;
    border-radius: 0 1rem 0 0;
    -webkit-border-radius: 0 1rem 0 0;
    -moz-border-radius: 0 1rem 0 0;
    -ms-border-radius: 0 1rem 0 0;
    -o-border-radius: 0 1rem 0 0;
}

.mainTopSec .about-us p {
    font-family: "Spectral", serif;
    font-size: 1.375rem;
    list-style: 1.5;
    font-weight: 300;
    margin-top: 1.5rem;
}

.mainTopSec .about-us .highlight {
    color: var(--lightPurple);
}


.servicesArea {
    padding: 5rem 0 0;
}

.servicesArea h2 {
    font-family: "League Spartan", sans-serif;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    color: var(--darkGrey);
    padding: 1.7rem 4rem;
}

.servicesArea h2 span {
    display: flex;
    padding-top: 0.5rem;
}

.services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-left: -2px;
}

/* LI */
.services li {
    display: inline-flex;
    align-self: flex-start;
    position: relative;
    border-radius: 0 20px 0 0;
    color: #fff;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
    overflow: hidden;
    z-index: 99;
}

/* hover width expands */
.services li:hover {
    max-width: 65%;
    /* back content space */
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

/* CONTENT WRAP */
.services .content {
    position: relative;
}

/* FRONT */
.services .content .front {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity .3s ease, transform .3s ease;
    font-size: 2.4375rem;
    font-style: normal;
    font-weight: 200;
    padding: 16px 4rem;
}

.services .content .front .smallTxt {
    font-size: 1.75rem;
}

/* BACK (hidden from flow initially) */
.services .content .back {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s ease;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 300;
    font-family: "Spectral", serif;

}

.services .content .back a {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.services .content .back p {
    padding: 1.5rem 1.25rem 1.5rem 4rem;
}

.services .content .back .arrow {
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

/* HOVER SWITCH */
.services li:hover .front {
    position: absolute;
    opacity: 0;
    transform: translateY(-8px);
}

.services li:hover .back {
    position: relative;
    /* 🔥 enters flow → LI expands */
    opacity: 1;
    transform: translateY(0);
}

/* ICON */
.services .content .icon {
    width: 52px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}

/* COLORS */
.services li.uiux {
    background: #8e2de2;
}

.services li.brand {
    background: #0099ff;
}

.services li.editorial {
    background: #4cd137;
}

.services li.uxStrategy {
    background: #00B58D;
}

.services li.app {
    background: #e84118;
}

.services li.ads {
    background: #005eff;
}

.services li.social {
    background: #F2B705;
}

.services li.printM {
    background: #FF3B6F;
}


/* ++++++++++++++++++ contact  css ++++++++++++++++++++ */

.contact-section {
    background: var(--bg-black);
    color: var(--text-white);
    padding: 4rem;
    font-family: "Inter", sans-serif;
    border-radius: 0 100px 0 0;
    z-index: 1;
    position: relative;
}

/* Inner rounded card (top‑right) */
.contact-inner {
    max-width: 100%;
    margin: 0 auto;
    background: var(--bg-black);
    border-radius: 0 var(--radius-top-right) 0 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* left wider, right form */
    column-gap: 4rem;

}

/* Left side */
.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-left h2 {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-left p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-left a {
    text-decoration: none;
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
    font-size: 0.98rem;
}

.contact-item .icon {
    font-size: 1.1rem;
}

/* Right side form */
.contact-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.contact-form input {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    border: none;
    padding: 0 1.25rem;
    background: var(--input-bg);
    font-size: 0.98rem;
    outline: none;
    border-radius: 0 1rem 0 0;
}

.contact-form input::placeholder {
    color: #888;
}

.contact-form button {
    height: 60px;
    border-radius: 0;
    border: none;
    background: var(--btn-blue);
    color: #fff;
    font-weight: 500;
    font-size: 1.3rem;
    cursor: pointer;
    max-width: 170px;
}

/* Hover */
.contact-form button:hover {
    filter: brightness(1.05);
}



/* workSec */
.workSec {
    max-width: 1260px;
    margin: 0 auto;
    padding: 7.3rem 0.5rem 2rem;
}

.workSec h2 {
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    margin: auto;
    text-align: center;
}

ul.workThumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 1rem;
}

ul.workThumb li {
    flex: 0 0 calc(33% - 0rem);
    padding: 1.5rem;
    list-style: none;
    margin: 0;
}

ul.workThumb li .thumbBox {
    display: flex;
}

ul.workThumb li .thumbBox img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 25px;
}

ul.workThumb li a {
    text-decoration: none;
    color: #2d2d2d;
}

ul.workThumb li h3 {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    font-family: "League Spartan", sans-serif;
    color: #2d2d2d;
    padding-top: 1.5rem;
}

ul.workThumb li P {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
}



.teamSec {
    max-width: 1260px;
    margin: 25px auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 62px;
    padding: 0px 0px;
    background: #fff;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
}


.teamSec {
    max-width: 1260px;
    margin: 25px auto 40px;
    display: flex;
    gap: 12px;
    padding: 0px 0px;
    background: #fff;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border-radius: 1rem;
    margin-top: 4rem;
}

.teamSec .team-img {
    flex: 1;
}

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

.teamSec .teamText {
    flex: 1;
    padding: 0 3rem;
}

.teamSec .teamText h2 {
    font-size: 1.25rem;
    color: #111;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 50px 0px 2rem 0px;
    text-align: left;
}


.teamSec .teamText p {
    color: #000;
    font-family: Inter;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 164%;
}


.contact-container {
    max-width: 1260px;
    margin: 25px auto 40px;
    display: flex;
    gap: 12px;
    padding: 0.5rem;
    background: #fff;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border-radius: 1rem;
    margin-top: 4rem;
}

h3.subHead {
    color: #011C2A;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contactInfo {
    background: #0a2a43;
    color: #fff;
    max-width: 491px;
    padding: 2.4rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.contactInfo h2 {
    color: #FFF;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0px; text-align: left;
}

.contactInfo .contactcontent {
    color: #C9C9C9;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    margin-top: 14px;
}

.detailPnl {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detailPnl a {
    color: var(--white);
    text-decoration: none;
}

.detailPnl p.contactdetials {

    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.socialIconArea {
    display: flex;
    padding: 2rem 0 0;
    gap: 1.5rem;
}



.contact-container .contact-formNew {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    flex: 4;
}

.contact-container .contact-formNew form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.contact-container .contact-formNew label {
    display: block;
    margin-bottom: 6px;
    color: #8D8D8D;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.contact-container .contact-formNew input,
.contact-container .contact-formNew textarea,
.contact-container .contact-formNew select {
    border: none;
    border-bottom: 2px solid #8D8D8D;
    background: transparent;
    padding: 10px 0px;
    font-size: 14px;
    outline: none;
    width: 100%;
    font-family: Inter;
    height: 35px;
}

.contact-container .subject-group {
    grid-column: span 2;
}

.contact-container .radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 38px;
    margin-top: 10px;
}


.contact-container .radio-options [type="radio"]:checked,
.contact-container .radio-options [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.contact-container .radio-options [type="radio"]:checked+label,
.contact-container .radio-options [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.contact-container .radio-options [type="radio"]:checked+label:before,
.contact-container .radio-options [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.contact-container .radio-options [type="radio"]:checked+label:after,
.contact-container .radio-options [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.contact-container .radio-options [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.contact-container .radio-options [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.contact-container .radio-options label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.contact-container .subject-group {
    grid-column: span 2;
}

.contact-container .buttonss {
    text-align: right;
}

.contact-container .contact-formNew button {
    background: #0a2a43;
    color: #fff;
    font-size: 1rem;
    padding: 0.7em 1em;
    border: none;
    padding: 15px 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
    border-radius: 8px;
}


@media (max-width: 640px) {
    .mainTopSec {
        padding: 5rem 2.7rem 2rem;
        align-items: flex-start;
    }

    .mainTopSec h1 {
        font-size: clamp(3.5rem, 8.5625vw, 8.5625rem);
        max-width: 75%;
    }

    .c4 {
        width: 3.125rem;
        height: 3.125rem;
        top: 30%;
        right: 3vw;
    }


    .mainTopSec .about-us {
        padding-right: 1rem;
        padding-left: 2rem;
    }

    .mainTopSec .about-us h2 {
        margin-left: -3rem;
    }

    .mainTopSec .about-us p {
        font-size: 1rem;
        font-weight: 500;
        margin-top: 1.5rem;
    }

    .servicesArea {
        padding: 0rem 0 0;
    }

    .services {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 1.25rem;
        margin: 1.5rem;
    }

    .services li {
        flex: 0 0 calc(50% - 0.75rem);
        display: inline-flex;
        align-self: flex-start;
        position: relative;
        border-radius: 0 20px 0 0;
        color: #fff;
        cursor: pointer;
        transition: transform .35s ease, box-shadow .35s ease;
        overflow: hidden;
    }

    .servicesArea h2 {
        font-size: 2rem;
        padding: 1.7rem 1.5rem 0;
    }

    .services li {
        border-radius: 12px;
        height: 180px;
        align-items: center;
        justify-content: center;
    }

    .services .content .front {
        font-size: 1.3rem;
        font-style: normal;
        font-weight: 200;
        padding: 16px 0.5rem;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .services .content .front .smallTxt {
        font-size: 1rem;
    }

    .services .content .back .arrow {
        display: none;
    }

    .services .content .back p {
        padding: 0.5rem;
        font-size: 10px;
        line-height: 1.25;
    }

    .services li:hover {
        max-width: 75%;
        transform: translateX(0px) scale(1);
        box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    }

    nav.nav {
        margin-right: 0px;
    }

    ul.workThumb li {
        flex: 0 0 calc(50% - 0rem);
        padding: 1.5rem;
    }

    .c1 {
        position: fixed;
    }

    .teamSec {
        max-width: 1260px;
        margin: 25px 1rem 40px;
        display: flex;
        gap: 12px;
        padding: 0px 0px 1.5rem;
        background: #fff;
        box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        border-radius: 1rem;
        margin-top: 4rem;
        flex-direction: column;
    }

    .workSec {
        padding: 4.3rem 0.5rem 2rem;
    }

    .contact-container {
        flex-direction: column-reverse;
    }

    .contact-container .contact-formNew {
        padding: 1rem;
    }

    .contact-container .contact-formNew form {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .contact-container .radio-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        flex-direction: column;
    }

    .contact-inner {
        flex-direction: column;
        display: flex;
        gap: 3rem;
    }

    .c5 {
        width: 6rem;
        height: 6rem;
        top: -4rem;
        border: 0.2rem solid var(--purpleColor);
        left: 0;
        right: 0;
        margin: auto;
    }

    .c2 {
        top: 8%;
        right: 0vw;
    }

    .c9 {
        right: 0%;
    }

    .c3 {
        width: 4rem;
        height: 4rem;
        top: 15%;
        right: 4vw;
    }

    .c4 {
        width: 2.125rem;
        height: 2.125rem;
        top: 28%;
        right: 3vw;
    }

    .c8 {
        border: 0.25rem solid var(--deepPinkColor);
    }
}