#contact{
    width: 100%;
    min-height: 100vh;
    padding: 70px 0 4% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact .ct-banner{
    width: 100%;
    height: 450px;
    background-image: url('../../image/contact/contact.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
#contact .ct-banner h1{
    width: 320px;
    height: 65px;
    background-color: #ffff;
    display: grid;
    place-items: center;
    font-weight: bolder;
}
#contact form{
    display: flex;
    flex-direction: row;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#contact .ct-input-container{
    width: 65%;
    padding: 4%;
    border: 1px solid rgb(234, 234, 234);
    border-radius: 8px 0 0 8px;
}
#contact .ct-img-container{
    width: 35%;
}
#contact form input{
    width: 100%;
    height: 48px;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    box-shadow: inset 2px -2px 5px rgba(0, 0, 0, 0.1);
}
#contact form .ct-textarea{
    resize: none;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    box-shadow: inset 2px -2px 5px rgba(0, 0, 0, 0.1);
}
#contact form button{
    border: none;
    border-radius: 0.375rem;
    margin-top: 4%;
    font-weight: bold;
    width: 400px;
    height: 48px;
    background-color: #fdbd32;
    color: #000;
}
#contact form button:hover{
    background-color: #e6c171;
}
#contact form img{
    width: 100%;
    height: 100%;
}
#contact .ct-info{
    width: 100%;
    height: auto;
    padding: 5% 0;
}

@media screen and (max-width: 768px){
    #contact .ct-img-container{
        display: none;
    }
    #contact .ct-input-container{
        width: 100%;
    }
    #contact form button{
        width: 100%;
    }
}
@media screen and (max-width: 600px){
    #contact .ct-info{
        padding: 8% 5%;
    }
}
@media screen and (max-width: 450px){
    #contact form button{
        width: calc(100% - 20px);
    }
    #contact .ct-banner h1{
        width: 80%;
    }
}
