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

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




/* hero section */
/* body input {
    background-color: var(--secondary-color);
    border-radius: 10px;
    border: none;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
    width: 25%;
    height: 30px;
} */

main {
    margin-top: 120px;
    width: 1239px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-self: center;
    align-items: center;
    flex-direction: row;
}

h1 {
    margin: 0 auto;
    margin-bottom: -90px;
    margin-top: 100px;
}

main .left {
    width: 50%;
    height: 100%;
    background-color: rgba(16, 182, 235, 0.08);
    border-radius: 20px 0 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

main .left h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

main .left p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

main .right {
    height: 100%;
    background-color: rgba(16, 182, 235, 0.08);
    border-radius: 0 20px 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
}

main .right form .row1 {
    display: flex;
    column-gap: 20px;
}

main .right form .row1 > input {
    width: 50%;
}
main .right form .row2 {
    display: flex;
    column-gap: 20px;
}

main .right form .row3 {
    width: 100%;
}

main .right form input {
    width: -webkit-fill-available;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: rgba(16, 182, 235, 0.08);
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

main .right form .textarea {
    width: -webkit-fill-available;
    height: 200px;
    border: none;
    border-radius: 5px;
    background-color: rgba(16, 182, 235, 0.08);
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: scroll;
}

main .right form button {
    width: 60%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background-color: rgba(16, 182, 235, 1);
    color: black;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    margin: 0 auto;
    margin-top: 50px;
}

main .right form button:hover {
    background-color: var(--text-color);
    color: var(--background-color);
    transition: all 0.3s ease;

}
 h1 {
    text-align: center;
}


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

    .section1 header {
        max-width: 1239px;
    }
    h1 {
        margin-top: 120px;
        font-size: 3rem;
    }

}

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

    main {
        max-width: 800px;

    }

    h1 {
        margin-top: 60px;
        font-size: 2.5rem;
    }
} */

/* Phone Size */
@media screen and (max-width: 1240px) {
    .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%;
    }
    main {
        max-width: 100%;
        flex-wrap: wrap;
    }

    main .left {
        background-color: #181818;
        padding-top: 20px;
        width: 80vw;
        height: fit-content;
        border-radius: 20px 20px 0 0;
    }

    main .right {
        background-color: #181818;
        width: 80vw;
        border-radius: 0 0 20px 20px;
    }

    main .right form {
        width: 90vw;
    }

    main .right form .row1, .row2 {
        flex-wrap: wrap;
    }

    main .right form .row1 input {
        width: 100%;
    }
    
    main .right form button {
        margin-top: 0;
    }
    footer {
        margin-top: 400px!important;
        display: none;
    }

    main .left h1 {
        font-size: 2rem;
    }

}