@import url('https://fonts.googleapis.com/css2?family=Varela&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

* {
    scroll-behavior: smooth;
    scrollbar-width: none;
    font-family: "Varela", sans-serif;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Standard */
}

* a {
    text-decoration: none;
    color: #fff;
}

body {
    background-color: #222831;
    width: 100%;
    height: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

.nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #393e46;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
    background-blend-mode: darken;
    backdrop-filter: blur(15px);
    /* overflow: hidden; */

}

.nav .left {
    height: auto;
    width: 200px;
    display: flex;
    justify-content: center;
    margin-left: 5vw;
}


.nav .left img {
    width: 200px;
}

@media (max-width: 720px) {
    .nav .left img {
        width: 150px;
    }
}

.nav .right {
    height: auto;
    width: 400px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 5vw;
}

@media (max-width: 720px) {

    .nav .right {
        width: auto;
    }

    .nav .right .display {
        display: none;
    }
}

@media (min-width: 721px) {

    .nav .right .menu-container {
        display: none;
    }

    .nav .right .menu-button {
        display: none;
    }

    .nav .right .menu-dropdown {
        display: none;
    }

    .nav .right .menu-dropdown a {
        display: none;
    }

}

.nav .right .menu-container {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.nav .right .menu-button {
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    user-select: none;
    background: transparent;
    border-radius: 5px;
    color: #00adb5;
}

.nav .right .menu-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 59px;
    border: 1px solid #393e46;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    color: #00adb5;
    border-radius: 10px;
    height: auto;
}

.nav .right .menu-dropdown a {
    padding: 16px 16px;
    text-decoration: none;
    display: block;
    color: #fff;
    height: auto;
    border-bottom: 1px solid #393e4688;
    background-blend-mode: darken;
    backdrop-filter: blur(15px);
    z-index: 10;
}

.nav .right .menu-dropdown a:hover {
    background-color: #f0f0f034;
}


.nav .right a {
    width: 100px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav .right a:hover {
    color: #ffffff9d;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav .right a.active {
    color: #00adb5;
    /* border-bottom: #00adb5 2px solid; */
}

.firstpage {
    position: relative;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
    overflow: hidden;
    background-image: url('assets/backgrounds/fpagefcont1.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: #393e46 1px solid;
    z-index: 1;
}

.firstpage h1 {
    margin-left: 5vw;
    width: 50vw;
    min-width: 300px;
    color: #ffffffbd;
    font-size: max(25px, 2.5vw);
}

.firstpage .bar {
    width: 20vw;
    min-width: 150px;
    height: 2px;
    margin-left: 5vw;
    border-bottom: #00adb5 min(0.5vw, 3px) solid;
}

.firstpage .bottom {
    position: absolute;
    bottom: 0;
    width: 90vw;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 5vw;
    margin-right: 5vw;
    border-top: #00adb5 1px solid;
}

.firstpage .bottom div {
    margin-right: 5vw;
    margin-left: 5vw;
    color: #ffffff9f;
}

.firstpage .bottom div img {
    width: 20px;
    margin-right: 2px;
    vertical-align: -5px;
    /* Keep only one */
}

@media (max-width:720px) {

    .firstpage .bottom div img,
    .firstpage .bottom div svg {
        display: none;
    }

    .firstpage .bottom div p {
        font-size: max(12px, 1vw);

    }

}

.firstpage .bottom div svg {
    width: 25px;
    margin-right: 2px;
    vertical-align: -20px;
    fill: #00adb5;
}

.secondpage {
    height: 80vh;
    min-height: 640px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    border-bottom: #393e46 1px solid;
    scroll-snap-align: center;
}

@media (max-width:720px) {
    .secondpage {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.secondpage .left {
    width: 30vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width:720px) {
    .secondpage .left {
        height: 50px;
        margin-bottom: 20px;
        margin-top: 20px;
        text-align: center;
        width: 70vw;
    }

    .secondpage .left .bar {
        display: none;
    }
}

.secondpage .left .bar {
    width: 150px;
    border-bottom: #00adb5 min(0.5vw, 5px) solid;
}

.secondpage .left h2 {
    color: #ffffffbd;
    font-size: max(25px, 2.5vw);
    margin-top: 0px;
}

@media (max-width:720px) {
    .secondpage .left h2 {
        font-size: max(30px, 6vw);
    }
}

.secondpage .right {
    width: 40vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    /* border-bottom: #0adbb5 1px solid; */
}

@media (max-width:720px) {
    .secondpage .right {
        width: 80vw;
        height: auto;
    }
}

.secondpage .right h3 {
    color: #00adb5;
    font-size: max(20px, 1.5vw);
    margin-top: 0px;
}

.secondpage .right p {
    color: #ffffff9f;
    font-size: max(15px, 1vw);
    margin-top: 0px;
}

.thirdpage {
    width: 100%;
    height: 80vh;
    min-height: 670px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000b0c63;
    position: relative;
}

.thirdpage .top {
    border-bottom: #0adbb5 1px solid;
}

.thirdpage .top h2 {
    color: #0adbb5;
    font-size: max(25px, 2.5vw);
    height: 5vw;
    min-height: 60px;
    margin-bottom: 0;
}

.thirdpage .bottom {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 80vw;
}

@media (max-width:720px) {
    .thirdpage .bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .thirdpage .bottom ul{
        margin: 7px;
    }

}

.thirdpage .bottom ul {
    display: flex;
    flex-direction: column;
    color: #ffffff9f;
    gap: 10px;
}

.thirdpage .bottom ul li:hover {
    color: #0adbb5;
    cursor: pointer;
}

.thirdpage .topborder {
    width: 25vw;
    top: 0;
    right: 0;
    border: #0adbb5 2px solid;
    position: absolute;
    animation: moveLeft 15s linear infinite;
}

@keyframes moveLeft {
    0% {
        right: -25vw;
    }

    100% {
        right: 100vw;
        /* how far left you want to go */
    }
}


.thirdpage .bottomborder {
    width: 25vw;
    bottom: 0;
    left: 0;
    border: #0adbb5 2px solid;
    position: absolute;
    animation: moveRight 15s linear infinite;
}

@keyframes moveRight {
    0% {
        left: -25vw;
    }

    100% {
        left: 100vw;
        /* how far left you want to go */
    }
}

.fourthpage {
    width: 100%;
    height: 50vh;
    min-height: 395px;
    display: flex;
    flex-direction: column;
    background-color: #222831;
    align-items: center;
    justify-content: center;
}

.fourthpage .top {
    height: 40px;
    border: #00adb5 2px solid;
}

.fourthpage .bottom {
    margin-top: 30px;
    margin-bottom: 20px;
    width: 80vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.fourthpage .bottom p {
    color: #0adbb5;
    font-size: max(20px, 1.5vw);
    margin-top: 0px;
    font-weight: 800;
}

.fourthpage .bottom a {
    color: #ffffff9d;
    font-size: max(15px, 1vw);
    border: #00adb5 3px solid;
    padding: 10px 20px;
    margin-top: 20px;
}

.fourthpage .bottom a:hover {
    color: #ffffff;
    border: #0adbb5 3px solid;
    transition: all 0.3s ease;
    scale: 1.01;
}

/* footercss */

.footer {
    color: #ffffff9d;
    background-color: #000b0c63;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 8vw;
    padding-top: 80px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
}

.footer-content-left img {
    width: 150px;
}

.footer-content {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.footer .footer-content-left p {
    margin: 0;
    margin-left: 10px;
    margin-top: 5px;
    font-size: max(15px, 0.7vw);
}

.footer-content-left,
.footer-content-right,
.footer-content-center {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0px;
}

.footer-content-left ul,
.footer-content-right ul,
.footer-content-center ul {
    margin-top: 0;
}

.footer-content-left li,
.footer-content-right li,
.footer-content-center li {
    margin-bottom: 10px;
    font-size: max(15px, 0.7vw);
}

.footer-content-left a,
.footer-content-right a,
.footer-content-center a {
    color: #ffffff9d;
}

.footer-content-left a:hover,
.footer-content-right a:hover,
.footer-content-center a:hover {
    color: #0adbb5;
}

.footer-content-right h2,
.footer-content-center h2 {
    color: #00adb5;
    font-size: max(17px, 1.2vw);
}

.footer-social-icons {
    margin-top: 25px;
}

.footer-social-icons img {
    width: max(1.8vw, 30px);
    margin-right: 7px;
    margin-left: 7px;
}

/* media footer css */

@media (max-width: 750px) {

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .footer-copyright {
        text-align: center;
    }

}