.contact-form-container{
    margin: 80px 0px;
}
.overflow{
    overflow:hidden
}
.geeting-msg{
    display: none !important;
    font-weight: 600;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
    background: rgba(0, 128, 0, 0.895);
    margin-bottom: 10px;
    position: relative;
    animation: greeting 1s;
}
@keyframes greeting {
    0%{
        left: -250px;
    }
    100%{
        left: 0px;
    }
}

/* // contact form column 1 start  */
.contact-form-inner-container{
    width: 80%;
}
.contact-form-col-1{
    
    height: 100%;
    background-color: var(--primary);
    padding: 20px ;
    display: grid;
    place-items: center;
}
.contact-form-inner-container{
    width: 80%;
}
.contact-form-col-1 h1{
    color:var(--secondary)
}
.contact-form-col-1 p{
    color:white;
}
.contact-detail-container{
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-detail-div{
    display: flex;
    align-items: center;
}
.contact-media-icon{
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px; 
    font-size: 1.2rem;
    display: grid;
    place-items: center;
    background-color: var(--secondary);
    color: var(--primary);
}


.media-title-p{

    font-size: 1rem;
    color: var(--secondary) !important;
    font-weight: 600;
}
.contact-media-text{
    margin-left: 13px;
}
.form-horizontal-center{
    width: 100%;
    display: grid;
    place-items: center;
}
/* // contact form column 1 end  */




/* // Contact Form Column 2  Start//  */

.contact-form-col-2{
    height: 100%;
    padding: 50px;
    background-color: #F8F9FA;
    border: .5px solid rgb(218, 216, 216);
}
.input-div {
    margin-bottom: 30px;
}
.input-div p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    padding-left: 5px;
    color: #333;
}
.input-div input{
    width: 100%;
    padding: 15px 15px;
    border-radius: 5px;
    border: .5px solid rgb(218, 216, 216);
}
.input-div input:focus{
    outline: 1px solid var(--secondary);
}
.input-div textarea{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: .5px solid rgb(218, 216, 216);
}
.input-div textarea:focus{
    outline: 1px solid var(--secondary);
}
.contact-btn{
    display: inline-block;
    padding: 10px 48px;
    color: white;
    background-color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    float: right;
    margin-bottom: 50px;
    transition: all .3s;
    font-weight: 500;
}
.contact-btn:hover{
 color: var(--primary);
 background-color: transparent;
}

.contact-map{
    margin: 50px 0px;
    margin-bottom: 50px;
}
/* // Contact Form Column 2  End//  */

@media (max-width:450px){
    .contact-form-col-2{
        padding: 50px 25px;
    }
}
.error-message{
    color: rgb(156, 22, 22);
    font-weight: 600;
    opacity: .9;
    padding-top:10px;
    padding-bottom: 0px;
    display: none;
    padding-left: 5px;
}

a.book-btn-card {
    margin-bottom: 50px;
}
a.book-btn-card {
    background: #fac316;
}