* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* letter-spacing: 1px;     */
}

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

@font-face {
    font-family: rio;
    src: url('../fonts/rio-glamour-font/Rioglamour-XPGo.otf') format('truetype'),

}

@font-face {
    font-family: int;
    src: url('../fonts/Inter-VariableFont_opsz\,wght.ttf') format('truetype'),

}

@font-face {
    font-family: int_b;
    src: url('../fonts/Inter_18pt-Medium.ttf') format('truetype'),

}



html {
    overflow-x: clip;

}

body,
html {
    width: 100%;
    font-size: 24px;
    overflow-x: clip;
    transition: all .4s ease;
    scroll-behavior: smooth;
    font-family: var(--font-4);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    position: relative;
    font-weight: 300;
}

:root {

    --primary-color: #ffffff;

    --secondary-color: #080C0F;
    --tertiary-color: #002620;
    --accent-color: rgb(171, 128, 80);
    --font-1: rio;
    --font-2: int;
    --font-2-b: int_b;
    font-family: var(--font-2);

    --heading-size: clamp(45px, 8vw, 65px);
    --para-size: clamp(15px, 3vw, 20px);

    --padding: 70px 78px
}

@media (max-width:1200px) {
    :root {
        --padding: 90px 50px
    }
}

@media (max-width:1050px) {
    :root {
        /* --heading-size: ; */
    }
}

@media (max-width:900px) {
    :root {
        --padding: 80px 45px
    }
}

@media (max-width:760px) {
    :root {
        --padding: 60px 36px
    }
}

@media (max-width:500px) {
    :root {
        --padding: 40px 20px
    }
}

@media (max-width:420px) {
    :root {
        --padding: 35px 18px
    }
}

.gradient-text {
    background: linear-gradient(to top, #106B84, #2FBAE0 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.glow-1 {
    border-radius: 50%;
    width: 386px;
    height: 386px;
    filter: blur(100px);
    background: rgb(20, 64, 93, 0.8);
    position: absolute;
    right: -230px;
    top: 20vh;
    pointer-events: none;
}

.glow-2 {
    pointer-events: none;
    border-radius: 50%;
    width: 386px;
    height: 386px;
    filter: blur(100px);
    background: rgb(20, 64, 93, 0.8);
    position: absolute;
    left: -230px;
    top: 65vh;
    z-index: 5;
}

@media (max-width:500px) {

    .glow-1,
    .glow-2 {
        z-index: revert-layer;
    }

    .glow-1 {
        width: 310px;
        height: 310px;
        right: -220px;
    }
}

main {
    position: relative;
}


section {
    padding: var(--padding);
    min-height: 100vh;
    z-index: 2;
    position: relative;
}

.text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.text p {
    width: min(700px, 100%);
    margin: 0 auto;
}

ul li {
    list-style-type: none;
}

.btn {
    font-size: 17px;
    font-weight: normal;
    background: linear-gradient(to bottom, #03ABD5, #02596F);
    background: #0A829F !important;
    outline: none;
    width: fit-content;
    /* border: unset; */
    /* border: 1px solid rgba(255, 255, 255, 0.125); */
    box-shadow: inset .5px 2.9px 3.3px 0px #9ad9e8d8;
    border-radius: 200px;
    padding: 13px 35px;
    font-weight: 400;
    transition: all .3s ease;
    color: var(--primary-color) !important;
    white-space: nowrap;

    &:hover {
        cursor: pointer;
        transform: translateY(-2px);
    }

}

.active {
    color: #07C6D7;
    font-weight: bolder;
    font-family: var(--font-2-b);
}



h1 {
    font-size: clamp(36px, 5vw, 60px);
    background: linear-gradient(to bottom, #FAFFFF 30%, #A2A4A4 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-1);
    font-weight: lighter;
}

p {
    font-size: clamp(12px, 3vw, 16px);
    font-size: clamp(12px, 2.1vw, 16px);
    font-weight: 300;
    letter-spacing: .9px;
    line-height: 25px;
}

@media (max-width:760px) {
    p {
        letter-spacing: .8px;
        line-height: 20px;
    }

    .btn {
        font-size: 15px;
        font-weight: normal;
        background: linear-gradient(to bottom, #03ABD5, #02596F);
        background: #0A829F !important;
        outline: none;
        width: fit-content;
        /* border: unset; */
        /* border: 1px solid rgba(255, 255, 255, 0.125); */
        box-shadow: inset .5px 2.9px 3.3px 0px #9ad9e8d8;
        border-radius: 200px;
        padding: 12px 30px;
        font-weight: 400;
        transition: all .3s ease;
        color: var(--primary-color) !important;

        &:hover {
            cursor: pointer;
            transform: unset;
        }

    }
}

@media (max-width:500px) {
    p {
        line-height: 17px;
    }

    .btn {
        font-size: 14px !important;
        font-weight: normal;
        background: linear-gradient(to bottom, #03ABD5, #02596F);
        background: #0A829F !important;
        outline: none;
        width: fit-content;
        /* border: unset; */
        /* border: 1px solid rgba(255, 255, 255, 0.125); */
        box-shadow: inset .5px 2.9px 3.3px 0px #9ad9e8d8;
        border-radius: 200px;
        padding: 11px 28px;
        font-weight: 400;
        transition: all .3s ease;
        color: var(--primary-color) !important;
    }
}

/* Navbar  */

main {
    position: relative;
}

header {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: min(1050px, 100%);
    padding: 0px 20px;
    z-index: 900;
}

nav {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

nav .logo {
    width: 150px;
    height: 70px;

    &:hover {
        cursor: pointer;
    }

}

nav .logo img {
    width: inherit;
    height: inherit;
}

nav ul {
    display: flex;
    gap: 18px;
    font-size: clamp(14px, 1.3vw, 16.5px);
    font-family: var(--font-2);
    font-weight: 400;
    background: linear-gradient(to top, #2E2E2E, #060606);
    border: 1px solid #535353;
    border-radius: 100px;

    padding: 13px 30px;
    transition: all .3s ease;

}

nav ul li:hover {
    cursor: pointer;
    transform: translateY(-1px);
}

nav .menu {
    display: none;
}


nav .menu .lines {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

nav .menu .lines .line {
    height: 2.4px;
    border-radius: 100px;
    background-color: var(--primary-color);
    width: 100%;
}

.mobile-menu {
    position: fixed;
    top: 67px;
    left: 0px;
    width: 100%;
    height: 62vh;
    background-color: var(--secondary-color);
    z-index: 999;
    border-bottom: .6px solid rgb(83, 83, 83, 0.7);
    border-top: .6px solid rgb(83, 83, 83, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    background: linear-gradient(to top, #2D3541 20%, #060606);
    transition: all .4s ease;
    transform: translateY(-150%);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 25px;
    width: min(200px, 100%);
}

.mobile-menu ul li {
    font-family: var(--font-2);
    font-size: clamp(19.5px, 5.6vw, 24px);
}

.mobile-menu ul .btn {
    width: 100% !important;
}


.overlay {
    z-index: 997;
    background-color: #19191963;
    backdrop-filter: blur(1px);
    position: fixed;
    width: 100vw;
    height: 100vh;
    transition: all .4s ease;
    top: 67px;

    opacity: 0;
    display: none;
}

header nav .cross {
    width: 30px;
    height: 30px;
}

header .cross .lines {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

header nav .cross .lines .line {
    width: 2.3px;
    background: var(--primary-color);
    height: 26px;
    position: absolute;
    border-radius: 100px;
}

header .cross .lines> :nth-child(1) {
    rotate: -45deg;
}

header .cross .lines> :nth-child(2) {
    rotate: 45deg;

}




.overlay-open {
    opacity: 1;
    display: block;
}

.mobile-drawer-open {
    transform: translateY(0px);
    display: flex;
}

.hide {
    display: none !important;
}

/* footer */

footer {
    padding: var(--padding);
    min-height: 40vh;
    background: linear-gradient(to bottom, #080C0F, #1C2B35);
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

footer .content {
    display: flex;
    justify-content: space-between;
}

footer .content .left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .left p {
    width: min(400px, 100%);
    font-size: 14px;
}

footer .left .socials {
    display: flex;
    gap: 17px;
}

footer .left img {
    width: 32px;

}

footer .right {
    display: flex;
    gap: 90px;

}

footer .right .links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

footer .right .links .link-heading {
    color: #f3f3f3;
    font-weight: 500;
    white-space: nowrap;
    font-size: 16px;
}

footer .right .links a {
    font-size: 14.5px;
    letter-spacing: .9px;
    font-weight: 200;
}


footer .bottom {
    position: relative;

    display: none;
}

footer .bottom h2 {
    font-size: 13.5vw;
    font-family: var(--font-1);
    font-weight: lighter;

    background: linear-gradient(to bottom, #E3F4FF, rgba(21, 30, 36, 0.472));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

footer .bottom .div {
    height: 10px;
    position: absolute;
    background: #1a2831;
    bottom: 0px;
    box-shadow: 0px -30px 21px 35px #1a2831;
    z-index: 2;
    left: 50%;
    transform: translate(-50%, 0px);
    width: 100%;
}




/* Last Section */

.last-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh !important;
}

.last-section .container {
    background: linear-gradient(to bottom, #037793, #023947);
    min-height: 20vh;
    width: 100%;
    border-radius: 27px;
    box-shadow: inset 3px 4px 3px 0px rgb(204, 228, 232, 0.3), 0px 0px 6px 3px #6c9196e4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    padding: 60px 30px;
    text-align: center;
}

.last-section .container h2 {
    font-weight: 300;
    font-size: 50px;
    width: 600px;
}

.last-section .container p {
    width: min(650px, 100%);
}

.last-section a {
    background: linear-gradient(to bottom, #EDEDED, #7B7B7B);
    padding: 11px 36px;
    border-radius: 100px;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 17px;
}






/*  */


.wave-loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: black;
    position: fixed;
    width: 100vw;
    top: 0px;
    left: 0px;
    z-index: 999;
    transition: all .4s ease;
}

.wave-loader {
    display: flex;
    gap: 4px;
}

.wave-bar {
    width: 4px;
    height: 48px;
    background-color: white;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

/* Apply animation to each bar with different delays */
.wave-bar:nth-child(1) {
    animation: wave 1s ease-in-out 0s infinite;
}

.wave-bar:nth-child(2) {
    animation: wave 1s ease-in-out 0.1s infinite;
}

.wave-bar:nth-child(3) {
    animation: wave 1s ease-in-out 0.2s infinite;
}

.wave-bar:nth-child(4) {
    animation: wave 1s ease-in-out 0.3s infinite;
}

.wave-bar:nth-child(5) {
    animation: wave 1s ease-in-out 0.4s infinite;
}



@media (max-width:1000px) {
    .last-section .container h2 {
        font-size: 43px;
        width: min(600px, 100%);
    }

    .last-section .container {
        border-radius: 21px;
        padding: 45px 20px;
    }

    footer .left img {
        width: 28px;
    }

    footer .content {
        flex-direction: column;
        gap: 50px;
    }
}


@media (max-width:900px) {
    header nav> :is(.links, a) {
        display: none;
    }

    nav .menu {
        display: block;
    }

    header {
        padding: 0px 25px;
        top: 25px;
    }
}


@media (max-width:760px) {
    header {
        padding: 0px 25px;
        top: 10px;
    }

    nav .logo {
        width: 120px;
        height: 55px;
    }

    nav .logo img {
        /* object-fit: cover; */
    }

    nav .menu .lines {
        gap: 8px;
    }

    nav .menu .lines .line {
        height: 2.2px;
    }

    .last-section {
        min-height: fit-content !important;
    }

    .last-section .container {
        border-radius: 21px;
        padding: 30px 20px;
        box-shadow: inset 2px 3px 3px 0px rgb(204, 228, 232, 0.3), 0px 0px 5px 1.5px #6c9196e4;
    }

    .last-section .container h2 {
        font-size: clamp(23px, 5vw, 35px);
        width: min(600px, 100%);
    }

    .last-section a {
        font-size: 15.5px;
        padding: 10px 29px;
    }


    footer .right .links .link-heading {

        font-size: 14.5px;
    }

    footer .right {
        gap: 60px;
    }
}

@media (max-width:500px) {

    .last-section .container {
        border-radius: 15px;
        padding: 25px 18px;
        box-shadow: inset 2px 3px 3px 0px rgb(204, 228, 232, 0.3), 0px 0px 5px 1px #6c9196e4;
    }

    .last-section a {
        font-size: 14px;
        padding: 8px 23px;
    }

    footer .content {
        gap: 40px;
    }

    footer .right {
        flex-direction: column;
        gap: 35px;
    }

    footer .right .links {
        gap: 11.5px;
    }

    footer .left img {
        width: 23px;
    }

    footer .left p {
        font-size: 13px;
    }

    footer .right .links a {
        font-size: 13.5px;
    }

    .ticker-container {
        padding: 10px 0px;
    }


}

@media (max-width:420px) {
    h1 {
        font-size: 31px;
    }
}




.ticker-container-2 {
  width: 105vw;
    /* max-width: 1200px; */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translate(-17.5%, 0px);
    margin-bottom: 5px;
}

.ticker-container-2 .ticker-wrapper {
  background: linear-gradient(90deg, #ff6b6b 0%, #ee5a24 100%);
    padding: 5px 0;
    background: #3978b3cc;
    background: linear-gradient(to top, #106B84, #2FBAE0 60%);
    overflow: hidden;
    position: relative;
}

.ticker-container-2 .ticker-wrapper::before,
.ticker-container-2 .ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.ticker-container-2 .ticker-wrapper::before {
    left: 0;
    /* background: linear-gradient(90deg, rgba(255, 107, 107, 1) 0%, rgba(255, 107, 107, 0) 100%); */
}

.ticker-container-2 .ticker-wrapper::after {
    right: 0;
    /* background: linear-gradient(90deg, rgba(255, 107, 107, 0) 0%, rgba(255, 107, 107, 1) 100%); */
}

.ticker-container-2 .ticker {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-container-2 .ticker-item {
  display: inline-flex;
    align-items: center;
    padding: 0 30px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ticker-container-2 .ticker-item::after {
    content: '-';
    margin-left: 30px;
    font-size: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.ticker-container-2 .ticker:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .ticker-container-2 .ticker-item {
        font-size: 18px;
        padding: 0 20px;
    }

    .ticker-container-2 .ticker-item::after {
        margin-left: 20px;
    }
}