:root {
    --h1-font: 'Anton', sans-serif;
    --p-font: 'poppins', sans-serif;
    --primary-color: #064CAA;
    --secondary-color: #0ACDFF;
}

@font-face {
    font-family: Ethnocentric;
    src: url('../res/font/Ethnocentric.otf') format('opentype');
}

@font-face {
    font-family: Anton;
    src: url('../res/font/Anton-Regular.ttf') format('truetype');
}

@font-face {
    font-family: poppins;
    src: url('../res/font/Poppins-Medium.ttf');
}


@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

@keyframes glow {
    from{
    filter: drop-shadow(0 0 7px white);
    }to{
    filter: drop-shadow(0 0 13px rgb(255, 255, 255));
    }
    
}

@property --color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #84ff3d;
}

@property --color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #2eabff;
}

@keyframes gradient-change {
  to {
    --color-1: #2e96ff;
    --color-2: #ff2edc;
  }
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 32vw;
    background: url('/res/bg.png');
    background-size: 100%;
    background-color: rgba(1, 7, 24, 0.674);
    background-blend-mode: overlay;
}

body {
    margin: 0;
    padding: 0;
}

body.loading {
    overflow: hidden;
    height: 100vh;
}

#loader-container {
    background: rgb(1, 7, 24);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    opacity: 1;
}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

section {
    margin: 0;
    padding: 5vw;
    min-height: 100svh;
    overflow-x: hidden;
}

#sec1{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

#sec1 .container{
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 10px white);
    animation: glow 1s ease-in-out infinite alternate;
}

#sec1 .container img{
    width: 40vh;
}

#sec1 .content{
    padding: 3vw;
}

#sec1 .content h1 {
    font-family: var(--h1-font);
    font-size: 9vw;
    color: white;
    text-align: center;
    letter-spacing: 0.1em;
    font-style: italic;
    margin: 0;
    text-align: left;
    text-shadow: -5px -4px 1px var(--primary-color);
    position: relative;
}

#sec1 .content p {
    position: relative;
    font-family: var(--p-font);
    font-size: 4vw;
    font-style: italic;
    color: white;
    text-align: center;
    margin: 0;
    text-align: left;
    z-index: 2;
}

#sec2{ 
    margin-top: -50px;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#sec2 .swiper-container {
    width: 100%;
    min-height: fit-content;
    max-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#sec2 .swiper{
    width: 80%;
    height: fit-content;
}

#sec2 .swipe-slide{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#sec2 .swiper-slide img{
    width: 100%;
    height: 100%;
    position: relative;
    filter: drop-shadow(4px 4px 10px rgb(0, 0, 0));
}

#sec2 .swiper-slide::after{
    content: attr(data-alt);
    position: absolute;
    display: block;
    min-height: 10%;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1vw 1vw 2vw 1vw;
    font-family: var(--h1-font);
    font-size: 7vw;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.591);
    text-align: center;
    letter-spacing: 0.1em;
    text-overflow: wrap;
}

#sec2 table,
#sec2 td,
#sec2 th {
    border: none;
    border-collapse: collapse;
}

#sec2 table {
    background: #F9F5FF;
    margin-top: 2vh;
    border-radius: 3px;
}

#sec2 thead {
    background: #0059ff;
    font-size: 5vw;
    height: 5vh;
    border-radius: 3px;
    color: #eff0ef;
    font-family: var(--p-font);
}

#sec2 td {
    padding: 1vw;
    text-align: center;
    font-family: var(--p-font);
    font-size: 3vw;
    border-bottom: 1px solid #afafaf;
}

#sec2 td:nth-child(1) {
    width: fit-content;
    max-width: 30%;
    font-weight: bold;
}

#sec3{
    display: block;
    margin: auto;
    height: fit-content;
}

#sec3 .container{
    padding: 5%;
    display: flex;
    flex-direction: column;
}

#sec3 .container .card{
    background: #eff0ef;
    padding: 5%;
    margin-top: 5vh;
    border-radius: 10px;
    border-bottom: 10px solid #0059ff;
}

#sec3 .container .card h1{
    font-family: 'Ethnocentric', sans-serif;
}

#sec3 .container .card p{
    font-family: var(--p-font);
    font-weight: bolder;
}

#sec3 .container .card.special{
    background: #0059ff;
    border-bottom: 10px solid #eff0ef;
    color: #eff0ef;
}

footer .footer-content {
    height: fit-content;
    padding: 2vw 5vw;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    font-size: 5vw;
    font-family: var(--p-font);
    color: white;
    background: rgb(0, 7, 19);
    border-radius: 50px 50px 0 0;
}

footer .us {
    animation: 2s linear infinite alternate gradient-change;
    background: linear-gradient(to right in oklch, var(--color-1), var(--color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    font-family: 'Ethnocentric', sans-serif;
}

footer img {
    filter: invert(90%);
    width: 10vw;
}

@media (orientation: landscape) {
    #sec1{
        flex-direction: row;
        padding-top: 0;
    }

    #sec1 .container img{
    width: 30vw;
    }

    #sec1 .content h1{
        font-size: 9vh;
    }
    #sec1 .content p {
        font-size: 4vh;
    }

    #sec2{
        height: fit-content;
    }

    #sec2 table,
    #sec2 td,
    #sec2 th {
        border: none;
        border-collapse: collapse;
    }

    #sec2 .swiper-container {
    width: 50%;
    }


    #sec2 .swiper-slide img{
        height: 100vh;
    }

    #sec2 .swiper-slide::after{
        font-size: 7vh;
    }

    #sec2 table {
        background: #F9F5FF;
        margin-top: 2vh;
        border-radius: 3px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    #sec2 thead {
        font-size: 1.8vw;
        height: 5vh;
        border-radius: 3px;
    }

    #sec2 td {
        padding: 1vw;
        text-align: center;
        font-family: var(--p-font);
        font-size: 1.2vw;
        border-bottom: 1px solid #afafaf;
    }

    #sec2 td:nth-child(1) {
        width: fit-content;
        max-width: 30%;
        font-weight: bold;
    }

    #sec3 .card-container{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
        flex-shrink: 1;
    }

    #sec3 .container .card{
        min-width: 200px;
        max-width: 80%;
    }
    footer .footer-content {
        height: fit-content;
        padding: 2vh 5vh;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        flex-shrink: 1;
        justify-content: space-evenly;
        font-size: 120%;
    }

    footer .social-icons{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 1vw
    }

    footer img {
        filter: invert(90%);
        width: 2vw;
    }
}