/* Importing Google font - Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    
}

body {
    height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom, #eab4b4 23%, #e05252 95%);
}

.header {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
}

.navbar {
    display: flex;
    align-items: center;
    max-width: 1500px;
    margin: auto;
    max-height: 25%;
}

.navbar .logo a {
    font-size: 1.8rem;
    text-decoration: none;
    color: #fff;
}

.navbar .links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 15px;

}
.text{
    margin-bottom: 1rem;
}
.text-end{
    margin-bottom: 1rem;
}
.navbar .links a {
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: 0.2s ease;
    color: black;
}

.navbar .links a:hover {
    color: #47b2e4;
}

.navbar .buttons a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    padding: 15px 0;
    transition: 0.2s ease;
}

.navbar .buttons a:not(:last-child) {
    margin-right: 5px;
}

.navbar .buttons .signin:hover {
    color: #47b2e4;
}

.navbar .buttons .login {
    border: 1px solid black;
    padding: 10px 20px;
    border-radius: 0.375rem;
    text-align: center;
    transition: 0.2s ease;
}

.navbar .buttons .login:hover {
    background-color: #e45c47;
    color: #fff;
}

.hero-section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 50vh;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section .hero {
    max-width: 50%;
    color: #fff;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: black;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: black;
}

.hero-section .img img {
    width: 517px;
}

.hero-section .buttons {
    margin-top: 30px;
}

.hero-section .buttons a {
    text-decoration: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: 0.2s ease;
    display: inline-block;
}

.hero-section .buttons a:not(:last-child) {
    margin-right: 5px;
}

.buttons .join {
    background-color: #47b2e4;
}

.hero-section .buttons .learn {
    border: 1px solid #fff;
    border-radius: 0.375rem;
}

.hero-section .buttons a:hover {
    background-color: #47b2e4;
}
#menu-toggle {
    display: none;
}

#hamburger-btn {
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
    order: 1;
}

@media screen and (max-width:1023px) {
    .navbar .logo a {
        font-size: 1.5rem;
    }

    .links {
        position: fixed;
        left: -100%;
        top: 75px;
        width: 100%;
        height: 100vh;
        padding-top: 50px;
        background: #175d69;
        flex-direction: column;
        transition: 0.3s ease;
    }

    .navbar #menu-toggle:checked~.links {
        left: 0;
    }

    .navbar #hamburger-btn {
        display: block;
    }

    .header .buttons {
        display: none;
    }

    .hero-section .hero {
        max-width: 100%;
        text-align: center;
    }

    .hero-section img {
        display: none;
    }



}

.form-control {
    border-radius: 10px;
    /* padding: 2px; */
    font-size: 15px;
}

.form-control::-webkit-file-upload-button {
    /* background-image: linear-gradient(red, #000); */
    background-color: blue;
    color: #fff;
    /* padding: 1px 10px; */
    border: none;
    border-radius: 10px;
    cursor: pointer;
}