/*copyright© EspoZ*/
@import url('https://fonts.googleapis.com/css2?family=Iceland&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');


/*1st font*/
.iceland-regular {
    font-family: "Iceland", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  

/*2nd font*/

.comic-neue-light {
    font-family: "Comic Neue", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .comic-neue-regular {
    font-family: "Comic Neue", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .comic-neue-bold {
    font-family: "Comic Neue", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .comic-neue-light-italic {
    font-family: "Comic Neue", serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .comic-neue-regular-italic {
    font-family: "Comic Neue", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .comic-neue-bold-italic {
    font-family: "Comic Neue", serif;
    font-weight: 700;
    font-style: italic;
  }

  /*3rd font*/

.quicksand {
    font-family: "Quicksand", serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

  
  html{
    scroll-behavior: smooth;
    font-size: 16px;
  }

  @media (max-width: 768px) {
    html {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    html {
      font-size: 13px;
    }
  }

  
*{
    background: #010A26;
    font-family: "Quicksand", serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    overflow-x: hidden;
    width: 100%;
}

:root{
    --espoz-red: #F20519;
    --espoz-blue-dark: #010024; 
    --espoz-blue-med: #0711D9;
    --espoz-blue-darkest: #010A26;
    --espoz-cyan: #05F2DB; 
}

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

div , a , img , h1, p , svg , label, span, select,  input, button, li, ul, i,sup{
    background-color: transparent;
}

h1, h2, h3, h4, h5, h6,p{
    color: #ffffff;
}

#background-body{
    width: 100%;
    height: 100vh;
    position: fixed;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    margin: auto;
}

#background-body div{
    position: absolute;
    border-radius: 100%;
    animation: gradient 4s infinite;
}

@keyframes gradient {
    70%{
        transform: scale(1.2) translate(50px);
    }
}

#background-body div:nth-child(1){
    top: -10%;
    left: -29%;
    width: 80%;
    height: 50%;
    background-color: var(--espoz-red);
}

#background-body div:nth-child(2){
    top: -12%;
    right: -12%;
    width: 70%;
    height: 76%;
    background-color: var(--espoz-blue-darkest);
    animation-delay: 8s;
}

#background-body div:nth-child(3){
    bottom: -15%;
    right: -20%;
    width: 50%;
    height: 60%;
    background-color: var(--espoz-cyan);
    animation-delay: 0.3s;
}

#background-body div:nth-child(4){
    bottom: 10%;
    left: -18%;
    width: 75%;
    height: 50%;
    background-color: var(--espoz-blue-darkest);
    animation-delay: 1.2s;
}

#background-body::after{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    backdrop-filter: blur(80px);
}

.main{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.468); */
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

#header{
    width: 100%;
    background-color: transparent;
    height: auto;
    padding: 0.6rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header a{
    background-color: transparent;
    text-transform: uppercase;
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 700;
    font-family: "Comic Neue", serif;
}

#header a:hover{
    color: var(--espoz-cyan);
    transition: .6s ease-in-out;
}

a{
    font-weight: 600;
}

a:hover{
    color: var(--espoz-cyan);
    transition: .3s ease-in-out;
}

#header .dot{
    height: 0.2rem;
    width: 0.35rem;
    background: #05F2DB;
}

#header .acc-btn{
    border: 1px solid #ffffff49;
    padding: 1rem 1.3rem;
    border-radius: 10px;
    font-size: clamp(0.8rem, 2vw, 1rem);
    box-shadow: 0 2px 3px 1px #373737;
    transition: all 0.3s ease;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


#body{
    padding: clamp(1rem, 5vw, 2rem);
    margin-top: clamp(3rem, 10vw, 5rem);
    border:1px solid transparent;
    background-color: rgba(0, 0, 0, 0.211);
    backdrop-filter: blur(2px);
    box-shadow: 0px 0px 20px 0px #ffffff49;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 5rem;
}

.nav{
    width: 100%;
}


@media (min-width:990px) {
    .mob-nav{
        display: none;
    }
}

@media (max-width:989px) {
    #header{
        z-index: 200000;
        padding: 0.8rem 1rem;
    }
    .nav{
        display: none !important;
    }

    .mob-nav{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        z-index: 200000;
        gap: 1rem;
    }
    .dropdown-btn{
        background: none;
        cursor: pointer;
        z-index: 200000;
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 2.5rem;
        min-height: 2.5rem;
    }
    .dropdown-btn:hover{
        color: #05F2DB;
        transition: 0.5s ease;
    }
    .nav-mob{
        display: none;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        position: absolute;
        z-index: 200000;
        background-color: rgba(28, 28, 28, 0.334);
        left: 0;
        top: 100%;
        padding: 2rem 1rem;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    .mob-nav a{
        font-size: clamp(1.2rem, 4vw, 2rem);
    }
    .nav-mob.show{
        display: flex;
    }
    #body{
        z-index: 2000;
        position: relative;
    }
}


.hero{
    padding: clamp(1rem, 3vw, 2rem);
    height: auto;
    min-height: 70vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
    flex-wrap: wrap;
    width: 100%;
}

#hero-content{
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3rem);
    width: min(100%, 50%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#hero-content h1{
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.2;
    word-break: break-word;
}

#hero-content p{
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    max-width: 100%;
    word-break: break-word;
}

#hero-content .btn{
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1.25rem, 3vw, 1.5rem);
    border: 1px solid #ffffff49;
    min-width: 140px;
    min-height: 44px;
    border-radius: 10px;
    text-align: center;
    font-size: clamp(0.875rem, 2vw, 1.2rem);
    transition: all 0.3s ease;
    cursor: pointer;
    touch-action: manipulation;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#hero-content .btn:hover,
#hero-content .btn:focus{
    box-shadow: 0px 0px 20px 0px rgba(134, 132, 132, 0.653);
    transition: .2s ease-in-out;
    border: 1px solid transparent;
    filter: drop-shadow(0px 0px 20px 0px rgba(134, 132, 132, 0.653));
}

#hero svg #path1{
    stroke-dasharray: 7240;
    stroke-dashoffset: 7240 ;
    animation: logo-animation 6.4s ease-in-out forwards;
    animation-play-state: running;
}
#hero svg #path2{
    stroke-dasharray: 1596;
    stroke-dashoffset: 1596;
    animation: logo-animation 6.4s ease-in-out forwards;
    animation-play-state: running;
}
#hero svg #path3{
    stroke-dasharray: 1480;
    stroke-dashoffset: 1480;    
    animation: logo-animation 6.4s ease-in-out forwards;
    animation-play-state: running;
}

#hero svg:hover {
    #path1,#path2,#path3{
        animation-play-state: running;
    animation-iteration-count: infinite;
    animation-delay: .5s;
    }
    cursor: pointer;
}

@keyframes logo-animation {
    to{
        stroke-dashoffset: 0;
    }
}

@media (max-width: 700px) {
    #hero h1{
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    #header a{
        font-size: clamp(0.8rem, 3vw, 1.2rem);
    }

    #hero {
        flex-direction: column-reverse;
    }
}

#hero svg{
    width: clamp(200px, 40vw, 500px);
    height: clamp(200px, 40vw, 500px);
    max-width: 90vw;
}

@media (max-width:850px) {
    #hero svg{
        width: clamp(150px, 35vw, 350px);
        height: clamp(150px, 35vw, 350px);
    }
}

@media (max-width:640px) {
    #hero svg{
        width: clamp(150px, 50vw, 300px);
        height: clamp(150px, 50vw, 300px);
    }
}


@media (max-width: 287px) {
    #hero h1{
        font-size: 1.5rem;
    }
}

@media (max-width:415px) {
    #hero p{
        display: none;
    }
}


.welcome{
    height: auto;
    min-height: 50vh;
    width: 100%;
}

.welcome-container{
    gap: clamp(1.5rem, 5vw, 3rem);
    width: 100%;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media (max-width:834px) {
    .welcome-container{
        flex-direction: column;
    }
}

@media (max-width:834px) {
    .welcome-container img{
        width: clamp(250px, 60vw, 400px);
        height: auto;
    }
}

@media (max-width:492px) {
    .welcome-container img{
        width: clamp(200px, 50vw, 300px);
        height: auto;
    }
}

@media (max-width:405px) {
    .welcome-container img{
        width: clamp(100px, 40vw, 200px);
        height: auto;
    }
}


.welcome-container h1{
    font-size: clamp(2.5rem, 10vw, 6.25rem);
    font-weight: 600;
    line-height: 1.1;
    word-break: break-word;
}

@media (max-width:833px) {
    .welcome img{
        width: clamp(40px, 20vw, 70px);
        height: auto;
    }
}

.sneek-peek , .sneek-peek .card{
    padding: clamp(0.1rem, 1vw, 0.3rem);
    border: 1px solid #ffffff11;
    box-shadow: 0 0 5px #ffffff11;
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
}

.sneak-peek-container , .sneak-peek-container .upper , .sneak-peek-container .lower , .sneak-peek-container .right , .sneak-peek-container .left{
    width: 100%;
    gap: clamp(0.3rem, 1vw, 0.5rem);
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.sneak-peek-container .card{
    border-radius: 5px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    height: clamp(150px, 20vh, 300px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sneek-peek .right .card{
    height: 100%;
}

.sneek-peek .left {
    align-items: flex-start;
}

.sneek-peek .left .card{
    height: clamp(200px, 26vh, 350px);
}

.sneek-peek .card img{
    filter: brightness(20%) saturate(0);
    transition: 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sneek-peek .card img:hover{
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
    filter: brightness(20%) saturate(100%);
}

.sneek-peek .card p{
    position: absolute;
    transform: translate(0,0);
}

@media (max-width:1171px) {
    .sneek-peek p{
        font-size: clamp(1rem, 2vw, 1.25rem);
    }
}

@media (max-width:993px) {
    .sneek-peek p{
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }

    .sneek-peek .right{
        height: auto;
    }
}

@media (max-width:851px) {
    .sneek-peek p{
        font-size: clamp(0.85rem, 1.6vw, 1rem);
    }
}

@media (max-width:763px) {
    .sneek-peek p{
        font-size: clamp(0.8rem, 1.4vw, 0.95rem);
    }
}

@media (max-width:625px) {
    .sneek-peek p{
        font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    }

    .sneek-peek-container .card{
        height: clamp(120px, 18vh, 200px);
    }

    .sneek-peek .upper{
        flex-direction: column;
    }

    .sneek-peek .right{
        height: auto;
    }
}

@media (max-width:409px) {
    .sneek-peek p{
        font-size: clamp(0.75rem, 2vw, 0.9rem);
    }
}

@media (max-width:377px) {
    .sneek-peek .right p{
        font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    }
}

@media (max-width:377px) {
    .sneek-peek .right p{
        font-size: 10px;
    }
}

.full_team{
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3rem);
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: clamp(0.6rem, 1.5vw, 1rem);
    padding: clamp(0.5rem, 2vw, 1rem);
}

.sub-team{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
}

.content-writer, .designer{
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 250px;
}

@media (max-width: 640px) {
    .sub-team{
        flex-direction: column;
    }
    .content-writer, .designer{
        width: 100%;
        flex: 1 1 100%;
    }
}

.title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 55px;
    font-weight: 700;
}

.team{
    padding: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
    gap: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
}

.f1, .codr , .head{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: clamp(0.6rem, 1.5vw, 1rem);
    background: #6b010138;
    border: 1px solid #ff0000;
    box-shadow: 0 0 20px #ff000078,
    inset 0 0 20px #ff00005e;
    border-radius: 10px;
    padding: clamp(0.5rem, 2vw, 1rem);
}

.cfo .codr{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
}

@media (max-width: 640px) {
    .cfo .codr{
        flex-direction: column;
        align-items: center;
    }
}
.name_designation{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:6px;
}
.team .name p{
    font-size: clamp(2rem, 6vw, 3.125rem);
    font-family: "Iceland", sans-serif;
}

.team a{
    color: #ffffffc4;
    transition: all 0.3s ease;
}

.team a i{
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    transition: 0.3s ease-in;
}

.team a i:hover{
    color: #F20519;
    transform: scale(1.1);
}

.team .img{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
    border-radius: 50%;
}

.team img{
    border-radius: 50%;
    width: clamp(100px, 25vw, 150px);
    height: clamp(100px, 25vw, 150px);
    border: 2px solid #ff0000;
    box-shadow: 0 0 10px #ff00005c;
    object-fit: cover;
    max-width: 150px;
    max-height: 150px;
}

.team .social{
    display: flex;
    gap: clamp(0.8rem, 2vw, 1rem);
    flex-wrap: wrap;
    justify-content: center;
}

.team #designation p{
    font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.about{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    /* border: 1px solid #05f2dab9; */
    /* padding: clamp(1rem, 3vw, 1.5rem); */
    border-radius: 10px;
    /* background: #0100245d; */
    /* backdrop-filter: blur(10px);  */
    width: 100%;
    box-sizing: border-box;
}

.about>p{
    font-size: clamp(2rem, 8vw, 2.5rem);
    text-align: center;
    line-height: 1.4;
}

.about>p span{
    color: #F20519;
    font-weight: 600;
}

.about .card{
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    text-align: center;
    padding: clamp(0.5rem, 1.5vw, 0.9rem);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: #0100245d;
    border: 1px solid #ffffff55;
    transition: all 0.3s ease;
}

.about .card:hover {
    border-color: #05F2DB;
    box-shadow: 0 0 10px rgba(5, 242, 218, 0.3);
}

.about .grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
}
.f1, .codr , .cfo, .content-writer, .designer{
    cursor: pointer;
}

@media (max-width:834px) {
    .about .grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:640px) {
    .about .grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width:492px) {
    .about .grid{
        grid-template-columns: 1fr;
    }
}

.r1,.r3{
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.r2{
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
    justify-content: center;
}

.founders{
    display: flex;
    justify-content: space-between;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.grid .card{
    min-height: 150px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 1rem;
}

@media (min-width: 641px) {
    .grid .card{
        height: clamp(150px, 15vw, 250px);
    }
}

.cto{
    width: 100%;
}

.r2 .card{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#home-sneek-peek{
    border-color: #05F2DB;
    background-color: #010a2655;
    backdrop-filter: blur(10px);
}

.roadmap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    color: #ffffff;
    font-size: 30px;
}
.roadmap span{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600
}
.roadmap #gaming,.roadmap #gaming p{
    color: rgb(34 211 238 );
}
.roadmap #data,.roadmap #data p{
    color: rgb(192 132 252);
}
.roadmap #skill,.roadmap #skill p{
    color: rgb(74 222 128 );
}
.roadmap #performance,.roadmap #performance p{
    color: rgb(34 211 238 );
}
.roadmap #esports,.roadmap #esports p{
    color: rgb(255, 3, 3);
}
.roadmap span>i{
    animation: blink 5s ease-in-out infinite;
}
@keyframes blink {
    0% {  opacity: 1; }
    25% {  opacity: 0; }
    50% {  opacity:1; }
    75% {  opacity: 0; }
    100% { opacity: 1; }
}

.card i{
    font-size: clamp(1.5rem, 4vw, 1.875rem);
    animation: blink_2 10s ease-in-out infinite;
}

@keyframes blink_2 {
    0% {  color: rgb(34 211 238 ); }
    25% {  color: rgb(192 132 252); }
    50% {  color: rgb(74 222 128 ); }
    75% { color: rgb(34 211 238 ); }
    100% {  color: rgb(255, 3, 3); }
}


#analysis i{
    animation: blink_3 10s ease-in-out infinite;
    animation-delay: 2s;
}
@keyframes blink_3 {
    0% {  color: rgb(192 132 252); }
    25% {  color: rgb(34 211 238 ); }
    50% {  color: rgb(74 222 128 ); }
    75% { color: rgb(252, 255, 67); }
    100% {  color: rgb(255, 3, 3); }
}
.r2 .card i{
    animation: blink_4 10s ease-in-out infinite;
    animation-delay: 2.5s;
}
@keyframes blink_4 {
    0% {  color: rgb(74 222 128 ); }
    25% {  color: rgb(192 132 252); }
    50% {  color: rgb(0, 26, 255); }
    75% { color: rgb(34 211 238 ); }
    100% {  color: rgb(255, 3, 3); }
}
#marketplace i{
    animation: blink_5 10s ease-in-out infinite;
    animation-delay: 3s;
}
@keyframes blink_5 {
    0% {  color: rgb(34 211 238 ); }
    25% {  color: rgb(146, 38, 255); }
    50% {  color: rgb(144, 247, 9); }
    75% { color: rgb(43, 255, 15); }
    100% {  color: rgb(255, 3, 3); }
}
#career i{
    animation: blink_6 10s ease-in-out infinite;
    animation-delay: 3.5s;
}
@keyframes blink_6 {
    0% {  color: rgb(255, 3, 3); }
    25% {  color: rgb(192 132 252); }
    50% {  color: rgb(74 222 128 ); }
    75% { color: rgb(34 211 238 ); }
    100% {  color: rgb(105, 23, 101); }
}

.aim{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    border: 1px solid #05f2dab9;
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 10px;
    background: #0100245d;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center
}

.aim h1{
    font-size: clamp(2rem, 6vw, 3.125rem);
    font-weight: 700;
}
.aim>p{
    font-size: clamp(1.3rem, 4vw, 1rem);
    text-align: center;
    line-height: 1.4;
}


.aim_grid{
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 3vw;
}
.aim_card{
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    text-align: center;
    padding: clamp(0.5rem, 1.5vw, 0.9rem);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: #0100245d;
    border: 1px solid #ffffff55;
    width: 50%;
    transition: all 0.3s ease;
}

.aim_card p{
    font-size: clamp(0.875rem, 2.5vw, 1.25rem);
    line-height: 1.5;
}
.aim_card p, .aim_card h2{
    background: none;
}
.aim_card h2{
    font-size: clamp(1.25rem, 4vw, 1.875rem);
    font-weight: 600;
}
.aim_card i{
    font-size: clamp(1.5rem, 4vw, 1.875rem);
    font-weight: 700;
    color: #05f2dab9;
}
.aim_card:hover {
    border-color: #05F2DB;
    box-shadow: 0 0 10px rgba(5, 242, 218, 0.3);

}

.footer{
    width: 100%;
    padding: clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 1.5vw;
    color: #ffffffaa;
    background: #00000054;
}
.footer-logo img{
    width: 120px;
}
.all_links{
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: start;
}
.footer-links{
    display: flex;
    flex-direction: column;
}
.all_links p{
    font-size: 26px;
    font-weight: 700;
    text-decoration: underline;
    color: #000000;
}
.all_links a{
    color: #000000;
    font-weight: 600;
}
.all_links a:hover{
    color: #ff2a4a;
    transition: 0.3s ease-in-out;
}
.footer-bottom{
    text-align: center;
}
.footer-content{
    display: flex;
    flex-direction: column;
    gap: clamp(0.9rem, 1.9vw, 1.4rem);
    width: 100%;
    align-items: start;
    justify-content: space-between;
    height: 100%;
}

.about>p{
    font-size: 20px;
}
.wwd{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    border: 1px solid #05f2dab9;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: #010a265b;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center
}
.wwd .title{
    font-size: 30px;
}

.wwd .grid{
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;

}
.espoz, .espotrain{
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
    justify-content: space-between;
}
.wwd .card{
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    text-align: center;
    padding: clamp(0.5rem, 1.5vw, 0.9rem);
    gap: 1rem;
    border-radius: 10px;
    border: 1px solid #ff0000;
    box-shadow: 0 0 20px #ff000078,
    inset 0 0 30px #ff00006a;
    height: 19.5vw;
    width: 100%;
    display: flex;
    backdrop-filter: unset;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ld{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: transparent;
    transition: 0.3s ease-in-out;
}
.wwd .list{
    display: flex;
    flex-direction: column;
    gap: clamp(0.3rem, 1vw, 0.5rem);
    border: none;
    background: none;
    backdrop-filter: unset;
    transition: 0.3s ease-in-out;
}
.wwd .card .info .title>i{
    font-size: 40px;
    animation: none;
    transition: 0.3s ease-in-out;
}
.row{
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
    justify-content: center;
    width: 100%;
}
.row .card{
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
}

@media (max-width: 640px) {
    .row{
        flex-direction: column;
    }
    .row .card{
        width: 100%;
        flex: 1 1 100%;
    }
}

.espokart, .espofit{
    width: 100%;
}

.wwd .card:hover{
    border-color: #ff00fb;
    box-shadow: 0 0 10px #ff00fb78,
                inset 0 0 30px #ff00fb78;
backdrop-filter: blur(10px);
    transition: 0.3s ease-in-out;

}
.wwd .card:hover .info i{
    color: #ff00fb;
    transition: 0.3s ease-in-out;
}

.wwd .card .info{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;    
}
.wwd .info .title{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}
.info .title>i{

    font-weight: 500;
    transition: 0.3s ease-in-out;
}
.footer-socials a i{
    color: #000000;
}
.diff{
    width: 100%;
}
.points{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    align-items: center;
    justify-content: center;
    border: 1px solid #05f2dab9;
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 10px;
    background: #0100245d;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}
.points .rows{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.7rem;
    border: 1px solid #ff0000;
    border-radius: 10px;
    box-shadow: 0 0 10px #ff00005c,
                inset 0 0 20px #ff00005c;
    font-size: 25px;
    font-weight: 300;
}
.points .rows div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
}
.others span i{
    font-size: 15px;
    color: #ff0000;
}
.others span{
    background: #ff00004f;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border:  1px solid #ff0000;
 }

 .espoz-why span i{
    font-size: 15px;
    color: #0dff00;
}
.espoz-why span{
    background: #0dff004f;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border:  1px solid #0dff00;
 }

.topic{
    font-weight: 700;
}
.rows.heading{
    font-size: 30px;
    font-weight: 700;
    .topic{
        color: transparent;
    }
}

.mission_vision{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    padding: 0 7rem ;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center
}
.vision{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.7rem, 2vw, 1rem);
    border: 1px solid #ff0000;
    box-shadow: 0 0 20px #ff00005c,
    inset 0 0 20px #ff00005c;
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 10px;
    background: #ff00001e;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}
.vision span{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    background: #ffffff2e;
    box-shadow: 0 0 20px #ffffff68;
    padding: clamp(0.5rem, 2vw, 0.3rem) clamp(0.75rem, 3vw, 1rem);
    border-radius: 50%;
}
.vision span>i{
    border: none;
    box-shadow: none;
    backdrop-filter: unset;
    background: none;
    font-size: 50px;
}
.vision .content{
    font-size: 34px;
}
.mission{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.7rem, 2vw, 1rem);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}
.mission .card{
    border: 1px solid var(--espoz-cyan);
    border-radius: 10px;
    width: 25vw;
    padding: clamp(1rem, 3vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    align-items: center;
    justify-content: center;
    height: 17vw;
}
.mission .card:hover{
    box-shadow: 0 10px 20px #05f2da85;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.mission .card .title{
    font-size: 40px;
    color: var(--espoz-cyan);
}
.mission .card span{
    padding: .5rem .9rem;
    border-radius: 50%;
    border: 1px solid var(--espoz-cyan);
    background: var(--espoz-cyan);
    animation: border_blick 10s ease-in-out infinite;
}
@keyframes border_blick {
    0% {  background: rgba(34, 211, 238, 0.122); ;border-color: rgb(34 211 238 ); }
    25% {  background: rgba(192, 132, 252, 0.122); border-color: rgb(192 132 252); }
    50% {   background: rgba(74, 222, 128, 0.122); border-color: rgb(74 222 128 ); }
    75% { background:rgba(34, 211, 238, 0.122); border-color: rgb(34 211 238 ); }
    100% {  background: rgba(255, 3, 3, 0.122); border-color: rgb(255, 3, 3); }
}

.future{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;padding: 1rem 10rem;
}
.future .content{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #ff0000;
    box-shadow: 0 0 20px #ff00005c,
    inset 0 0 20px #ff00005c;
    padding: 1.5rem 4rem;
    border-radius: 10px;
    background: #0600ae30;
    backdrop-filter: blur(15px);
    box-sizing: border-box;
}
.future .content .title{
    font-size: 5vw;
    font-weight: 700;
    font-family: "Iceland", sans-serif;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000b9;
}
.future .content i{
    font-size: 3rem;
    color: #ff0000;
}
.future .content .desc{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    font-size: 26px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.future .content .desc .p1{
    width: 78%;
    flex-wrap: wrap;
}
.future .content .desc .p2{
    font-size: 20px;
    width: 70%;
    flex-wrap: wrap;
    color: #ffffffde;
}
.connect{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    align-items: center;
    justify-content: center;
    width: 100%;
}

.connect p{
    font-size: 25px
}
.connect .contact{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    align-items: center;
    justify-content: center;
    width: 100%;    
    padding: 1rem 10rem;
}
.connect .contact .card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    border: 1px solid #ff0000;
    box-shadow: 0 0 20px #ff00005c,
    inset 0 0 20px #ff00005c;
    padding: 1.5rem 4rem;
    border-radius: 10px;
    background: #001aff09;
    box-sizing: border-box;
}
.connect .contact .card .list{
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    align-items: start;
    justify-content: flex-start;
    width: 100%;
    backdrop-filter: unset;
    transition: 0.3s ease-in-out;
    text-align: left;
}
.connect .contact .card i{
    font-size: 3rem;
}
.connect .contact .card .info{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff0000;
    box-shadow: 0 0 20px #ff00005c,
    inset 0 0 20px #ff00005c;
    padding: 1.5rem;
    border-radius: 50%;
    background: #ff000020;
    box-sizing: border-box;
}
.connect .contact .card .list .title{
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
    align-items: start;
    justify-content: flex-start;
}
.numbers a,.email a,.link a{
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 2rem);
    width: 100%;
    text-decoration: underline;
    word-break: break-word;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
}
.build{
    display: flex;
    flex-direction: column;
    gap: clamp(0.7rem, 2vw, 1rem);
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 10rem;
    border: 1px solid #ff0000;
    box-shadow: 0 0 20px #ff00005c,
    inset 0 0 20px #ff00005c;
    padding: 1.5rem 4rem;
    border-radius: 10px;
    background: #001aff5e;
    box-sizing: border-box;
}
.build p{
    font-size: 23px;
    text-align: center;
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}