@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;500;600;700;800;900&display=swap');

/* Global */
:root {
    --background-color: #181818;
    --primary-color: rgba(16, 182, 235);
    --secondary-color: rgba(16, 182, 235, 0.08);
    --text-color: #EAEAEA;
}

* {
    list-style: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
}

/* .swiper {
    z-index: 2!important;
} */

html, body {
    scroll-behavior: smooth;
}

nav {
    background-color: var(--background-color);
}

.swiper {
    width: 60vw;
    text-align: center;
    border-radius: 20px;
}

.swiper h1 {
    margin-top: 50px;
}
.swiper-slide {
    margin-top: 20px;
    margin-bottom: 60px;
    height: 500px;
    line-height: 300px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 50%;
    height: 400px;
}
.section1 .hero .content {
    margin-top: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section1 .hero .content h1 {
    margin: 0;
    margin-bottom: 20px;
}


.section1 .hero .content p {
    max-width: 60vw;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Desktop NavBar */
.section1 header {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: var(--background-color);
}

.section1 header .desktop-navbar ul{
    position: absolute;
    width: 51%;
    top: 10%;
    left: 45.7%;
    display: flex;
    justify-content: space-between;
}

.section1 header .desktop-navbar ul li > * {
    font-weight: bold;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.section1 header .desktop-navbar ul li > *:hover {
    color: var(--primary-color);
}

.section1 header .desktop-navbar ul li .here {
    color: var(--primary-color);
}

/* Mobile NavBar */
.section1 header .mobile-navbar {
    width: 80vw;
}

.section1 header .mobile-navbar .logo {
    position: relative;
}

.section1 header .mobile-navbar .menu {
    position: absolute;
    z-index: 2;
    cursor: pointer;
}

.section1 header .mobile-navbar ul {
    position: fixed;
    background-color: var(--text-color);
    height: 100vh;
    width: 40vw;
    margin: 0;
    top: 0%;
    right: 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    animation: slide 0.5s ease;
    z-index: 2;
}

@keyframes slide {
    0% {
        right: -60vw;
    }
    100% {
        right: 0%;
    }
}

.section1 header .mobile-navbar ul li {
    padding-top: 20px;
}

.section1 header .mobile-navbar ul li > * {
    font-weight: 700;
    color: var(--background-color);
    transition: all 0.3s ease;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.section1 header .mobile-navbar ul li > *:hover {
    color: var(--primary-color);
}

.section1 header .mobile-navbar ul li .here {
    color: var(--primary-color);
}

.section1 .hero .carousel {
    height: 600px;
    perspective: 250px;
}
.section1 .hero .carousel .carousel-item {
    width: 450px;
}
.section1 .hero .carousel .carousel-item img {
    width: 100%;
}

/* Desktop Size */
@media screen and (min-width: 800px) {
    .section1 header .mobile-navbar {
        display: none;
    }
    .section1 .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 70px;
    }

}


/* Tablet Size */
@media screen and (max-width: 1240px) {
    .section1 header .desktop-navbar ul li > * {
        font-size: 0.9rem;
    }

    .section1 header .desktop-navbar .logo {
        width: 800px;
    }

    .section1 header .desktop-navbar ul{
        top: 0;
        left: 44%;
    }

    .section1 header {
        max-width: 800px;
    }
    .swiper-slide img {
        width: 80%;
        object-fit: contain;
    }
}

/* Phone Size */
@media screen and (max-width: 800px) {
    .section1 header .desktop-navbar {
        display: none;
    }

    .section1 header .mobile-navbar {
        display: flex;
        padding-left: 10px;
    }

    .section1 header .mobile-navbar .menu {
        right: 2%;
        top: 28%;
    }

    .section1 {
        width: 100%;
    }
    h1 {
        font-size: 2.4rem;
    }
}