@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);
}

html, body {
    scroll-behavior: smooth;
}

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;
}

.section1 .hero .container1 .left a {
    text-decoration: revert;
    color: var(--primary-color);
    width: 10px;
    word-break: break-all;
}

.section1 .hero .container1 .left a:hover {
    color: var(--text-color);
}

@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 {
    margin-top: 40px;
    max-width: 1239px;
    display: flex;
    flex-direction: column;
}

.section1 .hero h1 {
    text-align: center;
}

.section1 .hero .container1 {
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: 20px;
    height: fit-content;
    margin-bottom: 50px;
    column-gap: 40px;
    flex-wrap: wrap;
    margin-left: 20px;
    margin-right: 20px;
}


.section1 .hero .container2 {
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: 20px;
    height: fit-content;
    margin-bottom: 50px;
    column-gap: 40px;
    flex-wrap: wrap;
    margin-left: 20px;
    margin-right: 20px;
}

.section1 .hero .container1 .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section1 .hero .container2 .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Media Queries */
/* Hero Section */

@media screen and (min-width: 800px) and (max-width: 1240px){
    .section1 .hero {
        max-width: 800px;
    }

    .section1 .hero .container1 .right {
        width: 300px;    
    }


    .section1 .hero .container1 .right{
        display:none;
    }

    .section1 .hero .container2 .left{
        display:none;
    }
}

@media screen and (max-width: 800px){
    .section1 .hero {
        flex-wrap: wrap;
    }
    .section1 .hero .container1 .right{
        display:none;
    }

    .section1 .hero .container2 .left{
        display:none;
    }

    .section1 .hero .container1 {
        width:80vw;
        text-align: center;
    }

    .section1 .hero .container1 .left {
        width: 70vw;
    }
    .section1 .hero .container2 {
        width:80vw;
        text-align: center;
    }
}



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

    .section1 .hero .container1 .right p{
        font-size: 1.2rem;
    }
    .section1 .hero .container2 .right {
        width: 50%;
    }

}


/* 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 .mobile-navbar {
        display: none;
    }

    .section1 .hero .container1 .left p{
        font-size: 1rem;
    }

    .section1 .hero .container1 .right p{
        font-size: 1rem;
    }

    .section1 header {
        max-width: 800px;
    }
    .section1 .container2 .right {
        width: 100%;
    }
}

/* 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;
    }
}