/* footer  */
footer{
    background-color: var(--primary-clrOne);
    padding: 60px 0px 40px;
}
footer .footer-body{
 padding: 40px 30px;
 background-color: #fff;
 border-radius: 20px;
 box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}   
footer .footer-body  h5{
    font-size: 17px;
    color: #434343;
    margin-bottom: 8px;
}
footer .footer-body ul{
    margin: 10px 0px;

}
footer .footer-body ul li a {
    text-decoration: none;
    color: #7a7a7a;
}
footer .footer-body ul li{
    margin-bottom: 3px;
    font-size: 15px;
}
footer .footer-body .box {
    width: 25%;
    border-right: 1px solid #a9a4a463;
    margin-right: 20px;
}
footer .footer-body .box:last-child{
    border: unset;
    width: 27%;
} 
footer .footer-body .box:nth-child(3){
    border: unset;
    width: 16%;
}

footer .footer-body .box .top-destination ul li{
    width: 23%;
    height: 70px;
    margin-bottom: 6px;
    overflow: hidden;
    cursor: pointer;
    
}
footer .footer-body .box .top-destination ul li:hover img{
 transform: scale(1.2);
}
footer .footer-body .box .top-destination ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
    transition: all ease-in-out 0.5s;
}


footer .footer-body .contact-box ul li{
    margin-bottom: 5px;
}
footer .footer-body .contact-box ul li:first-child a{
    font-size: 27px;
}
footer .footer-body .contact-box ul li a {
    text-decoration: none;
    color: #5c5c5c;
    font-size: 20px;
    font-weight: 600;
}
footer .footer-body .contact-box ul li img{
    transform: translateY(5px);
    width: 21px;
    margin-right: 4px;
    border-radius: 5px;
}
footer .social_links{
    margin: 30px 0;
    text-align: center;
}
footer  .social_links ul li{
 display: inline-block;
 margin: 3px;
}
footer .social_links ul li a{
    border-radius: 100%;
    width: 44px;
    height: 44px;
    display: flex;
    border: 2px solid #fff;
    justify-content: center;
    align-items: center;
}
footer .social_links ul li a img.img-fluid {
    width: 19px;
}
footer .footer-body .certified {
    margin: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
footer .footer-body .certified img {
    border: 1px solid #b3b3b3;
    border-radius: 5px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    object-fit: cover;
    margin: 7px 0;
    width: 60px;
}

footer .copyright {
    margin-top: 20px;
    border-top: 1px solid #fffc;
    padding-top: 25px;
}
footer .copyright p{
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-weight: 500;
}


/* popup model  */
.popUp {
    width: 100%;
    background-color: #000000ab;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none;
}
.popUp .heading{
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
}
.popUp .heading h2 {
    font-size: 28px;
    font-family: Poppins-Medium;
    font-weight: 200;
    background-color:var(--primary-clrOne);
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    color: #fff;
    padding: 12px 0px;
}
.popUp-body {
    background-color: #fff;
    width: 42%;
    text-align: center;
    border-radius: 15px;
}
.popUp form{
    margin: 30px 0px;
}

.popUp form input, .popUp form select {
    width: 46%;
    margin: 5px 4px !important;
}
.popUp form input[type="submit"]{
    width: 94% !important;
font-size: 19px;
padding: 15px;
}
.popUp .heading .close{
    position: absolute;
    top: -15px;
    background-color: #fff;
    right: -15px;
    height: 38px;
    width: 38px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popUp .heading .close img{
    width: 13px;
}