.main-home-container{
    position: relative;

    background-size: cover;   
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 60px;
    justify-content: center;
}

.main-home-container::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter : blur(8px);
}

.content-wrapper{
    position: relative;
}

.form-wrapper{
    position: sticky;
    top: 60px;
    width: 100%;

    display: flex;  
    justify-content: flex-end;
}

.content-box{
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.content-box + .content-box{
    margin-top: 60px;
}

.content-box h1,
.content-box h2 {
    font-weight: 400;
    margin-bottom: 20px;
}

#cab-booking-form-container{
    margin: 0px;
    min-width: 400px;
}

#cab-booking-form-container #progressbar{
    margin: 0px;
    margin-bottom: 20px;
}

.content-box img{
    max-width: 120px;
    margin: 10px;
}

@media screen and (max-width : 1024px){
    .main-home-container {
        flex-wrap: wrap;
    }
    
    #cab-booking-form-container{
        max-width: 100%;
    }
    
    .main-home-container p {
        font-size: 14px !important;
    }
    .form-wrapper{
        position: static;
    }
}