.inner-banner{
    width: 100%;
    height: 50rem;
}
.inner-banner .image{
    width: 100%;
    height: 50rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.inner-banner .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* gallery page styling */
.gallery{
    width: 100%;
    height: 100%;
}
.gallery-container{
    width: 100%;
    height: 100%;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
}
.gallery-container .g-image{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: .5rem;
}
.gallery-container .g-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.heading{
    text-align: center;
    font-size: 2.5rem;
    font-family: var(--font-annabel);
    font-weight: 300;
    color: var(--red);
    padding: 1.5rem 0 2.5rem;
}
.content{
    text-align: center;
    padding: 0 8rem;
}
.contact .res-container{
    width: 100%;
    height: auto;
    margin: 3rem 0;
}
.contact .res-container .res-box{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    background:linear-gradient(45deg, rgb(128, 94, 1), rgb(253, 218, 141));
    border-radius: 1rem;
    padding: 1rem;
    margin: 2rem 0;
}
.contact .res-container .res-box .map-box{
    flex: 1 1 30rem;
    border-radius: 1rem;
    overflow: hidden;
}
.contact .res-container .res-box .content-box{
    flex: 1 1 30rem;
    padding: 1rem;
}
/* content-box styling */
.contact .res-container .res-box .content-box .res-name{
    font-size: 3rem;
    color: var(--white);
    padding-bottom: 1rem;
    text-shadow: 0 .1rem .2rem rgba(0,0,0,0.3);
}
.contact .res-container .res-box .content-box .res-text{
    font-size:1.5rem;
    color: var(--text-black);
    margin: .15rem 0;
}
.contact .res-container .res-box .content-box .btn-box{
    padding-top: 3rem;
}
.contact .res-container .res-box .content-box .btn-box .btn{
    font-size: 1.5rem;
    background: linear-gradient(45deg, rgb(128, 94, 1), rgb(253, 218, 141));
    color: var(--white);
    font-weight: 300;
    border: none;
}
.contact .res-container .res-box .content-box .btn-box .btn:hover{
    background: linear-gradient(45deg,rgb(253, 218, 141), rgb(128, 94, 1));
    transition: 1s linear;
}
/* booking form styling */
.book-appointment{
    width: 100%;
    height: auto;
}
.book-appointment .box-container{
    width: 100%;
    height: auto;
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5rem;
}
.book-appointment .box-container .box{
    flex: 1 1 30rem;
}
.book-appointment .box-container .box .image{
    width: 100%;
    height: 100%;
    padding: 2rem;
}
.book-appointment .box-container .box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.book-appointment .box-container .box form{
    border-radius: .5rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.3);
    padding: 2rem;
}
.book-appointment .box-container .box form input{
    border: .1rem solid rgb(128, 94, 1);
    display: block;
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 1.5rem;
    border-radius: .5rem;
}
.book-appointment .box-container .box form textarea{
    border: .1rem solid rgb(128, 94, 1);
    display: block;
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 1.5rem;
    border-radius: .5rem;
}

