:root {
    --bg: #0a0c11;
    --fg: #e9eef7;
    --muted: #8f9bb3;
    --card: #0f1219;
    --btn: #21439D;
    --btn-hover: #3b7cff;
    --ring: rgba(59, 130, 246, .3);
    --radius: 16px;
    --maxw: 1200px;
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'SF Pro REGULAR';
    src: url('SFPRODISPLAYREGULAR.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro BOLD';
    src: url('SFPRODISPLAYBOLD.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --1st: #131313;
    --2nd: rgb(224, 222, 222);
    --3rd: rgb(169, 169, 169);
    --1st-font: 'Jazmin Alt Medium';
    --2nd-font: 'SF Pro REGULAR';
    --3rd-font: 'SF Pro BOLD', sans-serif;

    --links-pad: 20px;
    --links-pad-small: 5px 0;
    --link-pad: 10px 50px;
    --link-pad-small: 5px 10px;
    --padding-large: 100px 50px;
    --padding-small: 50px 25px;
    /* 8wwh799ewee89wu89ueu+rep9u8ep7+u+u89 e*/
    --font-large: 120px;
    --font-medium: 70px;
    --font-small: 40px;
    --font-tiny: 18px;
}

html,
body {

    background: var(--2nd);

    margin: 0;
    font-family: var(--2nd-font);
    line-height: 1.4;
}

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

.container {
    /* 9 */
    margin: 0 auto;
    padding: 0 24px;
    overflow-x: hidden;
}

/* NAVBAR */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: saturate(140%) blur(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
}

.nav-wrap.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

nav {

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: conic-gradient(from 210deg, #2a6cff, #6ad0ff, #2a6cff);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(42, 108, 255, .35);
}

.brand-mark svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 14px;
    color: var(--muted);
}

.nav-links a {
    opacity: .7;
    color: var(--1st);
    filter: drop-shadow(2px 4px 6px black);
    font-size: 15px;
}

.nav-links a:hover {
    color: black;
    opacity: 1;
}

.spacer {
    flex: 1;
}

.lang-pill {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var();
}

.cta {
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--btn);
    color: white;

    font-family: var(--2nd-font);
    border: none;
    cursor: pointer;
    transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 10px 24px rgba(42, 108, 255, .35);
}

.cta:hover {
    background: var(--btn-hover);
    transform: translateY(-1px);
}

/* HERO */
.hero {
    padding: 30px 7%;
}

.eyebrow {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 18px;
}

.title {
    font-size: 3.2vw;

    line-height: 1.06;

    letter-spacing: -0.02em;

    color: var(--2nd);

}

strong {
    font-weight: 800;
    font-family: var(--3rd-font);
}

.visual {
    margin-top: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
}

.visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* FOOTER SPACER */
.pad {
    height: 120px;
}

.l {
    position: relative;
    left: 40%;
}

.logo {
    width: 8vw;
}

.none {
    display: none;
}

.menu {
    position: fixed;
    z-index: 100;
    top: 0;
    color: var(--1st);
    width: 100vw;
    backdrop-filter: saturate(50%) blur(70px);
    filter: drop-shadow(1px 1px 18px black);
}

.links {
    display: flex;
    flex-direction: column;
    font-size: 7vw;
    padding-bottom: 15vh;
}

.no {
    opacity: 0;
}

.block {
    display: block;
}

.icon {
    font-size: 7vw;
    display: block;
}

.links a {
    padding: 0 10%;
    color: var(--2nd);
}

.close {
    font-size: 10vw;
}

.tag {
    font-size: 14px;
    color: var(--3rd);
    border: 1px solid var(--3rd);
    padding: 5px;
    border-radius: 20px;
    display: inline-block;
}

.tags {
    display: flex;
    gap: 4px;
}

.t-cont {
    display: inline-block;
}

.about {
    padding: 5vh 24px;
    padding-top: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.large-txt {
    font-size: 2.2vw;
}

.story-txt,
.about-txt {
    width: 60%;
    text-align: center;
}

.pg-name {
    padding: 5vh 0;
}

.about-txt {
    background: var(--btn);
    color: var(--2nd);
    border-radius: var(--radius);
    padding: 0 24px;
    z-index: 50;
    height: 100%;
}

.story-txt {
    padding-bottom: 100px;
    z-index: 50;

}

.left,
.right {
    display: inline-block;
    /* allows transform to work */
}

.services {
    height: 100vh;
    background: var(--1st);
}

.large-txt i {
    opacity: .7;
}

/* .a-img {
    width: 120px;
    position: absolute;
    transform-origin: top left;
}

.left {
    rotate: -10deg;
}

.right {
    rotate: 10deg;
}

.a1 {
    left: 15%;
    transform: translateY(100px);
}

.a2 {
    right: 15%;
    transform: translateY(100px);
}

.a3 {
    left: 7%;
    transform: translateY(200px);
}

.a4 {
    right: 12%;
    transform: translateY(350px);
}

.a5 {
    left: 12%;
    transform: translateY(350px);
} */

.home {
    background: url("ChatGPT\ Image\ Sep\ 7\,\ 2025\,\ 02_32_15\ PM.png") no-repeat center center/cover;

    height: 100vh;
    width: 100%;
}


.category {
    color: rgb(190, 182, 182);
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.752);
    position: absolute;
    text-transform: uppercase;
    font-size: 25px;
}

.one {
    left: 9%;
    bottom: 54%;
}

.two {
    left: 41%;
    bottom: 51%;
}

.three {
    right: 10%;
    bottom: 50%;
    color: var(--btn);
    padding: 5px 10px;
    border-radius: 20px;
    text-shadow: 2px 2px 10px var(--btn);
}

.four {
    left: 41%;
    bottom: 5%;

}

.five {
    right: 12%;
    bottom: 15%;
    color: var(--btn);
    padding: 5px 10px;
    border-radius: 20px;
    text-shadow: 2px 2px 10px var(--btn);
}

.six {
    transform: perspective(100px) rotateY(35deg) rotate(28deg);
    transform-origin: left center;
    left: 28%;
    bottom: 57%;

}

.a-below {
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.vision {
    width: 50%;
    padding: 0 24px;
}

.a-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    font-family: var(--2nd-font);
}

.about-left {
    flex: 1;
    min-width: 280px;
}

.about-left p {
    font-size: 20px;
    line-height: 1.6;
}

.about-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 40%;
    display: block;
    border-radius: 10px;
}

.about-right {
    flex: 1;
    min-width: 280px;
    background: var(--btn);
    /* blue card */
    color: var(--2nd);
    padding: 30px;
    border-radius: 12px;
}

.about-right h3 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #93c5fd;
}

.about-right p {
    font-size: 20px;
    line-height: 1.6;
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    background: var(--2nd);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--3rd);
}

.stat {
    flex: 1;
    border-left: 1px solid var(--3rd);
}

.nb {
    border-left: none;
}

.stat h2 {
    font-size: 24px;
    margin: 0;
    color: var(--btn);
    font-family: var(--3rd-font);
}

.stat p {
    font-size: 14px;
    margin: 5px 0 0;
    color: #555;
}

.new-nav {
    opacity: 1;
    position: relative;
}




.services {
    background: var(--btn);
    height: 300vh;
    width: 100%;
    color: var(--2nd);
    padding: 5vh 24px;
    padding-top: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;


}

.cards {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5vh;
    padding: 5vh 24px;
}

.card {

    background: var(--2nd);
    padding: 0 24px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 0 40px #000;
}

.card-h1 {
    color: var(--1st);
    font-family: var(--2nd-font);
}

.card-img {
    background-image: url("fav.PNG");
    width: 20%;
}

.card-details {
    width: 35%;
}

.card-details p {
    color: var(--1st);

}

.services {
    background-image:
        linear-gradient(to right, rgba(128, 128, 128, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128, 128, 128, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
}

.card .tag {
    color: #727272;
    border: 1px solid #727272;
}

.about {
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(224, 222, 222), #21439D, rgb(130, 151, 222));
    background-size: 200% 200%;
    animation: shine 6s ease-in-out infinite;
    color: var(--2nd);
}

.c-container {
    display: flex;
    height: 100vh;
    font-family: var(--2nd-font);
    flex-direction: column;
}

.form-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-section h1 {
    color: var(--1st);
}

.form-section p {
    color: var(--1st);
    margin-bottom: 30px;
}

.form-section a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--btn);
    font-weight: bold;
}

form {
    margin-top: 20px;
}

.row {
    display: flex;
    gap: 15px;
}

input,
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid var(--3rd);
    border-radius: 10px;
    font-size: 14px;

}

input[type="checkbox"] {
    width: auto;
}

.c-services {
    margin: 15px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.c-services label {
    font-size: 14px;
}

button {
    width: 100%;
    background: var(--btn);
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-family: var(--3rd-font);
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 24px;
}

button:hover {
    background: var(--btn-hover);
    transform: translateY(-1px);
}

a:hover {

    transform: translateY(-3px);
    transition: .1s linear all;
}

.map-section {
    flex: 1;
    height: 300px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.nos {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.form-section {
    color: var(--2nd);
}

.contact form {
    background: var(--btn);
    border-radius: 12px;
    padding: 10px 24px;
    box-shadow: 0 0 40px var(--1st);
}

.contact button,
.work button {
    background: var(--btn-hover);
    color: var(--2nd);
    font-weight: bold;
    transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 10px 24px rgba(9, 79, 230, 0.35);
}

.work button {
    margin: 50px 0;
}

.contact button:hover {
    background: var(--btn);
    color: white;
    box-shadow: 0 0 40px var(--1st);
}

.work button:hover {
    background: var(--btn);
    color: white;
    box-shadow: 0 0 40px var(--1st);
}




.transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 2;
    pointer-events: none;
}

.transition-row {
    flex: 1;
    display: flex;
}

.transition-row.row-1 .block {
    transform-origin: top;
}

.transition-row.row-2 .block {
    transform-origin: bottom;
}

.block {
    flex: 1;
    background-color: var(--btn);
    transform: scaleY(1);
    will-change: transform;
}

.six:hover {

    transition: .4s ease-out all;
}

.work {
    background-image: linear-gradient(to right, rgba(128, 128, 128, 0.2) 1px, transparent 1px), linear-gradient(to bottom, rgba(128, 128, 128, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    background-color: var(--btn);
    min-height: 150vh;
    overflow: hidden;
    transition: height 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 5vh 0;



}

.work.expanded {
    min-height: unset;
    /* remove restriction */
    height: auto;
    overflow: visible;
}

.w-categories {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: left;
    padding: 24px 24px;
    margin: 30px 24px;
    background: var(--2nd);
    border-radius: 12px;
    max-width: 1200px;
}

.w-categories span {
    cursor: pointer;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3s;
    background: var(--btn);
    color: var(--2nd);
}

.categories span:hover {}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.work-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    /* placeholder */


    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    font-size: 18px;
    font-weight: bold;
    color: #777;
}

.w-up {
    height: 60%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
}

.work-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: .3s ease-out all;
}

.pg-name {
    text-align: center;
}

.w-categories span.active {
    background: var(--1st);
    /* your highlight bg */
    color: var(--2nd);
    /* text color change */
}

.w-up {

    height: 300px;
    border-radius: 6px;
}

.w-h1 {
    margin: 10px 0;
    color: var(--1st);
}

.no-w {
    display: none;
}

.clients-section {
    text-align: center;
    margin: 20vh 0;
    width: 100%;
    padding: 30px 20px;
    background: #fff;

    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.clients-section h2 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
}

.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 15px 0;
    background-color: #fff;
}

.carousel {
    position: relative;
    overflow: hidden;
    /* hide the overflow logos */
}

.carousel::before,
.carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 30px;
    /* how wide the fade is */
    height: 100%;
    z-index: 2;
    pointer-events: none;
    /* so clicks pass through */
}

.carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), transparent);
}

.carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), transparent);
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.carousel-row {
    display: flex;
    gap: 40px;
    padding: 10px 0;
}

.carousel-row img {
    height: 60px;
    max-width: 150px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

/* .carousel-row img:hover {
      filter: grayscale(0%);
    } */
.cta {
    margin: 0;
}

.open {
    display: none;
}

.stats {
    box-shadow: 0 0 40px #000;
}

.logo {
    /* padding: 20px; */
}

.open {
    color: var(--1st);
}

.old-nav {
    background-color: var(--2nd);
}

.links {
    padding: 5vh 0vh 15vh 0;
}

.process {

    background-color: var(--2nd);
}

.counter-title {
   
    height: 60px;
    background: var(--2nd);
    z-index: 10;
    width: 100vw;
    padding: 0 2em;
}

.empty {
    opacity: 0;
}

.counter-title h2 {
    border-radius: 20px;
    border: 2px solid var(--1st);
    padding: 0 5px;
    width: fit-content;
}


.steps {
    display: flex;
    overflow: hidden;
    padding: 15vh 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}


.p-cards {
    display: flex;
    width: max-content;
    gap: 5vw; /* spacing between cards */
    padding: 0 2em;
    will-change: transform;
    z-index: 100;
    align-items: stretch;
    overflow: hidden; /* ensures all cards are same height */
}
.step-about{
    padding: 1em 2em;
    width: 100%;
    max-width: 1000px;
}
.p-card {
    width: 30vw;
    height: 60vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0.5em;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.p-card-img {
    height: 80%; /* fixed height for images */
    overflow: hidden;
    border-radius: 0.5em 0.5em 0 0;
}

.p-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps image ratio, fills the box */
}

.p-card-content {
    padding: 0 1em;
    flex-shrink: 0;
    height: 20%;
    background: var(--btn);
    color: var(--2nd); /* prevents content from shrinking */
}

.card-content p {
    text-align: left;
    color: var(--1st);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

.old-nav {
    box-shadow: 0 0 40px #000;
}
.c-tag{
    border: 1px solid var(--1st);
    color: var(--1st);
}
@media (max-width:900px) {
    .counter-title {
        /* height: 30px;  */

    }

    .counter-title h1 {
        font-size: 30px;

    }
    
   

}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 🔥 Responsive */
@media (max-width: 1024px) {
    .carousel-row {
        gap: 30px;
    }

    .carousel-row img {
        height: 50px;
    }
    .step-about p{
        font-size: 3vw;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 20px;
    }

    .clients-section h2 {
        font-size: 1.3rem;
    }

    .carousel-row {
        gap: 25px;
    }

    .carousel-row img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .clients-section h2 {
        font-size: 1.1rem;
    }

    .carousel-row {
        gap: 20px;
    }

    .carousel-row img {
        height: 30px;
        max-width: 100px;
    }
}

@media(max-width: 900px) {
    .logo {
        padding: 10px;
    }

    .c-container {
        flex-direction: column;
    }

    .map-section {
        height: 300px;
    }

    .form-section {
        padding: 60px 24px;
    }

    .open {
        display: block;
    }
}

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}




/* Responsive */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }

    .stats {
        gap: 20px;
    }
}

@media (max-width: 1100px) {
    .p-card{
        width: 70vw;
        height: 40vh;
    }
    .p-cards{
        gap: 2vw;
    }
    .services {
        height: 350vh;
    }

    .about-right p {
        font-size: 14px;

    }

    .about-left p {
        font-size: 14px;

    }


    .card-details {
        width: 100%;
    }

    .card-img {
        width: 50%;
    }

    .home {
        background: url("ChatGPT\ Image\ Sep\ 7\,\ 2025\,\ 02_08_03\ PM.jpg") no-repeat center center/cover;

    }

    .hero {
        padding: 70px 5%;
    }

    .category {
        font-size: 2vw;
    }

    /* .one {
        left: 10%;
        bottom: 18%;
    }

    .two {
        left: 43%;
        bottom: 35%;
    }

    .three {
        right: 15%;
        bottom: 18%;
    } */
    .three {
        right: 5%;
    }

    .five {
        bottom: 23%;
    }

    .six {
        bottom: 53%;
    }

    .story-txt,
    .about-txt {
        width: 80%;
    }

    .story-txt {
        width: 60%;
    }

    .large-txt {
        font-size: 2.8vw;
    }

    .title {
        max-width: 800px;
    }

    .l {

        left: 0;
    }

    .logo {
        width: 13vw;
    }

    .icon-area {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .clients-section {
        margin: 50vh 0;
    }
    .c-section2{
        margin: 80px 0;
        background: transparent;
        padding: 0;
    }
    .car2{
        background: transparent;
        width: 100vw;
    }
    .c-section2::before{
        display: none;
    }
    /* .a-img {
        width: 110px;
        position: absolute;
    }

    .a1 {
        left: 5%;
        transform: translateY(100px);
    }

    .a2 {
        right: 5%;
        transform: translateY(100px);
    }

    .a3 {
        left: 0%;
        transform: translateY(200px);
    }

    .a4 {
        right: 2%;
        transform: translateY(300px);
    }

    .a5 {
        left: 2%;
        transform: translateY(300px);
    } */
}

/* Small screens tweaks */
@media (max-width: 640px) {

    .card {
        align-items: center;
        flex-direction: column;
    }

    .card-details p {
        font-size: 3vw;
    }

    .tag {
        font-size: 10px;
    }

    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 70px 5%;
    }

    .one {
        left: 2%;
        bottom: 52%;
    }

    .two {
        left: 39%;
        bottom: 50%;
    }

    .three {
        right: 5%;
        bottom: 55%;
        color: rgb(190, 182, 182);
        text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.752);
    }

    .four {
        left: 40%;
        bottom: 20%;
    }

    .five {
        right: 5%;
        bottom: 40%;
    }

    .six {
        left: 25%;
        bottom: 50%;
    }

    .category {
        font-size: 2.5vw;
    }

    .story-txt,
    .about-txt {
        width: 95%;
    }

    .large-txt {
        font-size: 4vw;
    }

    .title {
        font-size: 6vw;
    }



    .cta {
        padding: 10px 14px;
        font-size: 14px;
    }

    .logo {
        width: 25vw;
    }

    /* .a1 {
        left: 5%;
        transform: translateY(30px);
    }

    .a2 {
        right: 5%;
        transform: translateY(30px);
    }

    .a3 {
        left: 0%;
        transform: translateY(100px);
    }

    .a4 {
        right: 2%;
        transform: translateY(280px);
    }

    .a5 {
        left: 2%;
        transform: translateY(280px);
    }

    .a-img {
        width: 70px;
    } */
}

.none {
    display: none;
}
