
.hero {
    position: relative;
    width: 100%;
    height: 400px;

    margin-top: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    display: flex;
    flex-direction: column;

    background: url('/assets/backgrounds/Art-background-1.jpg') no-repeat center center/cover;

    
    color:#4d4d4d;
    z-index: 0;

}
/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: #000000a4; 
    z-index: 1;
} */
.contact-message{
    z-index: 2;
}

.contact{
    width: 100%;
    
}
.contact-message{
    width: 100%;
    text-align: center;
    color: #a77e19;
    margin-top: 100px;
    margin-bottom: 100px;
    align-items: center;
}
.contact-message img{
    width: 350px;
}
.contact-message h2{
    color: #bbb198;
    
}
.wrapper{
    
    width: 100%;
    /** ensure contact details display in column on different screens */
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.contact-form{
    width: 50%;
    padding: 50px;
    margin-left: 175px;
    /* border-style: solid;
    border-width: 1px;
    border-color: #a77e19; */

}

#meetingForm{
    display: flex;
    flex-direction: column;
}
form label{
    color: #a77e19;
}
form input{

    background-color: #bbb198;
    border-style: none;
    border-radius: 5px;
    height: 25px;
    padding-left: 10px;
    margin-bottom: 20px;
}
form textarea{
    background-color: #bbb198;
    border-style: none;
    border-radius: 5px;
    padding: 10px;
}
.g-recaptcha{
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
    align-self: center;
}


.contact-form .cta-container button{
    margin: 0;
    width: 100%;
}
/* contact details */

.contact-details{
    margin-top: 50px;
    width: 50%;
    
}
.contact-details div{
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.contact-details div img{
    width: 50px;
}
.contact-details div .sub-title-h3{
    margin-left: 20px;
}

/* gallery details */

.main-container .border{
    border: #856411 solid 1px;
    padding: 20px;
    width: fit-content;
}

.gallery-details .wrapper-h{
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.wrapper-h div{
    margin-left: 50px;
    align-content: left;
}
.wrapper-h div 

.fine-art-gallery-logo{
    width: 100px;
    height: auto;
}

/* contact success */
.success-message .cta-container{
    width: 100%;
}
/* contact failed */
.success-message .main-container .email-details{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 150px;
}
.email-details img{
    width: 50px;
    height: auto;
}
.email-details .sub-title-h3{
    margin-left: 20px;
}


@media (max-width: 450px){

    .contact .wrapper{
        flex-direction: column;
    }
    .contact-form{
        margin: 0;
        width: 100%;
        padding: 40px;
    }
    .contact-details{
        width: 100%;
    }
    .contact-details div img{
        width: 12%;
    }
    .contact-message h2{
        font-size: 20px;
        font-weight: 300;
    }

    .gallery-details .wrapper-h{
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    .gallery-details .wrapper-h img{
        padding: 20px;
        width: 100%;
    }

    .gallery-details .wrapper-h div{
        margin: 0;
        margin-left: 20px;
    }
    .gallery-details .wrapper-h div p{
        text-align: left;
   
    }
    .success-message .wrapper{
        display: flex;
        flex-direction: column;
    }
    .contact-form{
        margin-left: 0;
        width: 96%;
        margin-top: 50px;
        padding: 0;
    }
    .main-container .divider{
        width: 100%;
        padding: 0;
        margin-left: 0;
    }

}