.hero-section-container {
    width: 100%;
    height: 700px;
    position: relative;
}

.hero-img {
    width: 100%;
    position: relative;
    height: 700px;
    filter: brightness(60%);
    z-index: 1;
}

.hero-sub-container {
    position: absolute;
    top: 0;
    color: #fff;
    z-index: 1;
    width: 100%;
    height: 600px;
}

.hero-content-container {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 40px 0;
}

.hero-text-container {
    width: 700px;
    margin-top: 100px;
}

.hero-head{
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text{
    font-size: 20px;
    font-weight: 500;
    text-align: justify;
}

.form-container {
    width: 400px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #333;
    padding: 25px;
    /* grid-gap: 20px; */
    border-radius: 10px;
}

.form-input {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-content: center;
    /* grid-gap: 20px; */
}

.input-field {
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
}

.form-submit-btn {
    padding: 5px 15px;
    border: none;
    border-radius: 4px;
    background-color: #0798ff;
    color: #fff;
}

.form-submit-btn:hover {
    opacity: 0.9;
}

.upcoming-container {
    padding: 70px 0;
    background-color: #282f31;
    text-align: center;
}

.upcoming-head{
    font-size: 35px;
    text-align: center;
    margin-bottom: 40px;
    color: #0798ff !important;
    font-weight: 700;
}

.upcoming-text{
    font-size: 25px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-weight: 500;
}

.about-us-container {
    padding: 70px 0px;
    text-align: center;
    background: #111;
    color: #fff;
}

.about-us-text {
    font-size: 18px !important;
}

.about-us-sub-container {
    margin: 0 10%;
}

@media (max-device-width: 1200px) {
    .hero-text-container {
        width: 500px;
    }
    .hero-img{
        height: 750px;
    }
    .hero-section-container {
        height: 750px;
    }
}

@media (max-device-width: 992px) {
    .hero-text-container {
        width: auto;
    }

    .hero-content-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .form-container {
        margin: 40px auto;
    }

    .hero-section-container {
        height: 620px;
    }

    .hero-img {
        height: 620px;
    }

    .hero-text-container {
        margin-top: 20px;
        text-align: center;
    }

    .form-container{
        width: 600px;
    }
}

@media (max-device-width: 768px){
    .form-container{
        width: 100%;
    }
    
    .hero-img {
        height: 620px;
    }
    
    .hero-section-container {
        height: 620px;
    }
}

@media (max-device-width: 576px) {
    .hero-img {
        height: 700px;
    }

    .hero-section-container {
        height: 700px;
    }
}

@media (max-device-width: 429px) {
    .hero-img {
        height: 750px;
    }

    .hero-section-container {
        height: 750px;
    }
}

@media (max-device-width: 400px){
    .hero-img {
        height: 750px;
    }

    .hero-section-container {
        height: 750px;
    }
    .hero-head {
        font-size: 35px;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .hero-text{
        font-size: 17px;
    }
}
