@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito/Nunito-Regular.ttf");
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    box-sizing: border-box;
    font-family: Nunito, sans-serif;
}

.container {
    width: 80%;
    margin: auto;
}

header {
    position: relative;
    width: 100vw;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    background: #fff;
}

.logo__container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.logo__container img {
    height: 100%;
    margin: 0 15px;
}

.menu__container, 
.menu__items {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.menu__container .menu__items {
    text-decoration: none;
    font-weight: 500;
    padding: 5px 20px;
    color: #1d1e1f;
}

.menu__items:hover {
    color: #1d1e1f99;
}

.icon__humburger {
    width: 25px;
    height: 25px;
    display: none;
}

@media screen and (max-width: 692px) {

    .menu__container {
        position: absolute;
        top: 90px;
        width: 100%;
        height: 40px;
        background: #fff;
        border-radius: 1px solid #00000066;
    }

}

.banner {
    text-align: center;
    padding: 50px;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/banner.jpg') center/cover;
    filter: blur(1px);
    z-index: -1;
}
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: -1;
}

.banner h1,
.banner p,
.stick {
    position: relative;
    z-index: 1;
    margin: 8px 0;
}

.stick {
    display: inline-block;
    padding: 10px 15px;
    color: #3996f3;
    background: #3996f333;
    border-radius: 50px;
    font-size: 14px;
}

.banner p {
    font-weight: 300;
}

.main__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
    margin-top: 10px;
}


@media screen and (max-width: 692px) {

    .main__content {
        display: flex;
        flex-direction: column;
    }

}

.info__box,
.form__container {
    border-radius: 10px;
    padding: 20px;
}

.form__container {
    border: 1px solid #00000046;
}

.info__box {
    background: #37d0fe23;
}

.info__box li {
    padding: 5px;
    margin: 5px;
}