#hero .image img {
    height: 527px;
    object-fit: cover;
}
#hero .bottom {
    background: #F2EBE3;
    position: relative;
    padding: 80px 100px;
}
#hero .icon {
    background: #F2EBE3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translatex(-50%);
}
#hero .icon img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
}
#hero .tagline{
    margin-bottom: 0;
    color: #B56D33;
    font-weight: 500;
}
#hero h1{
    margin: 5px 0 30px;
    color: #473026;
    font-size: 33px;
    line-height: 41px;
}
#details{
    padding: 80px 0;
}
#details .container-fluid{
    padding: 0 100px;
}

#details h3{
    font-size: 22px;
    line-height: 31px;
    padding: 0 0 10px;
    color: #000000;
    position: relative;
    margin-bottom: 30px;
}
#details h3::after{
    content: '';
    height: 1px;
    width: 80px;
    left: 50%;
    transform: translatex(-50%);
    background: #294F2B;
    position: absolute;
    bottom: 0;
}
#details .inner{
    width: 100%;
    color: #473026;
    font-weight: 300;
}
#details a{
    color: #294F2B;
    text-decoration: none;
    font-weight: 400;
    font-size: 21px;
}
#form {
    background: #284F2B;
    padding: 50px 0;
}
#form h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}
#form .container-fluid {
    padding: 0 100px;
}
#form input,
#form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    height: 45px;
    font-weight: 300;
    color: #fff;
}
#form textarea {
    height: 145px;
}
#form ::placeholder {
    color: #fff;
}
#form .btn {
    display: block;
    margin: 20px auto 0;
}
@media(max-width: 991px){
    #details .container-fluid, #form .container-fluid{
        padding: 0 10px;
    }
    #details{
        padding: 50px 0;
    }
    #hero .image, #hero .icon{
        display: none;
    }
    #hero .bottom {
        background: #F2EBE3;
        position: relative;
        padding: 70px 10px 50px;
    }
    #form .btn {
        width: 100%;
    }
}


