.hero-container{
    background-image: url('../images/contact-hero-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 300px;
}

.hero-head{
    color: #C6D93B;
    font-weight: 700;
    height: 300px;
    font-size: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-main-container{
    background-color: #282f31;
    color: #fff;
    overflow: hidden;
}

.form-sub-container{
    display: flex;
    flex-direction: row;
}

.address-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-box{
    width: 75%;
}

.form-container{
    padding: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* grid-gap: 17px; */
    background-color: #0798ff;
}

.form-input{
    display: flex;
    flex-direction: row;
    /* grid-gap: 17px; */
}

.input-field{
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
}

.form-submit-btn{
    width: 120px;
    height: 40px;
    background-color: #fff;
    color: #0798ff;
    border: none;
    border-radius: 4px;
}

@media (max-device-width: 992px){
    .form-sub-container{
        flex-direction: column;
        grid-gap: 50px;
        /* padding: 50px 0; */
    }
    .address-container{
        padding-top: 50px;
    }
    .form-container{
        padding-bottom: 50px;
    }
}

@media (max-device-width: 576px){
    .address-box {
        width: 90%;
    }
    .form-container{
        padding: 40px 10px;
    }
}