﻿/*Flight Deals*/
.hotel-destinatin {
    display: inline-block;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 0;
}
#FlightHomePageDeals {
    padding-bottom: 20px;
}
.hotel-destinatin .heading {
    text-align: center;
    max-width:1200px;
    margin:0 auto;
}
.hotel-destinatin .heading h2 {
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 29px;
}
.hotel-destinatin .dealbox .box {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0 4px;
    height: 220px;
    cursor: pointer;
    background: #191819;
}
.hotel-destinatin .dealbox .box img {
    transition: ease .6s;
    width: 125%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    max-width: unset;
}
.hotel-destinatin .dealbox .box img:hover {
    width: 165%;
}
.hotel-destinatin .dealbox .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background:rgb(7 2 0 / 80%);
}
.hotel-destinatin .dealbox .box h3 {
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
    text-align: center;
/*    text-shadow: 0 0 2px black;*/
    letter-spacing: 0.5px;
    font-weight: normal;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    margin: 10px 0;
    padding: 0;
    font-weight: bold;
}
.dealbox.hotel-destination {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.dealbox.hotel-destination form {
    width: 100%;
    margin-top: 20px;
}

/*Holiday Deal*/
.popular {
    position: relative;
    padding-top: 0px;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    width:80%;
}
.popular li {
    width: 100%;
    display: inline-block;
    list-style-type: none;
}
.dest {
    padding-bottom: 18px;
    position: relative;
    width: 95%;
    height: 306px;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 30px;
}
body .popular li .dest a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-decoration: none;
    color: #fff;
}
.popular li .dest span.city-span {
    display: inline-block;
    position: absolute;
    bottom: 20px;
    left: 50%;
    font-size: 15px;
    color: #fff;
    background: #032e4c;
    padding: 3px 30px;
    border-radius: 1px;
    text-transform: uppercase;
    z-index: 0;
    transform: translate(-50%, 0);
    white-space: nowrap;
}
.popular li .dest img.img-lay {
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    transition: transform .5s ease;
    height: 306px;
    object-fit: cover;
}
.popular li .dest:hover img.img-lay {
    transform: scale(1.5);
}
.popular li .dest span.rate-span {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 15px;
    color: #fff;
    background: rgba(255, 98, 0, 0.8);
    padding: 4px 15px;
    border-radius: 0;
    font-weight: 600;
}
.pricetabs {
    position: absolute;
    top: 14px;
    left: 0;
    z-index: 1;
    background: #04548c;
    border-radius: 0 30px 30px 0;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 1px 15px;
}
span.rate-span small {
    margin-left: 3px;
}
.dest .getqt {
    position: absolute;
    bottom: 20px;
    left: 44%;
    transform: translate(-37%, 0);
    background: #032e4c;
    padding: 5px 18px 5px 18px;
    z-index: 1;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    transition: all .27s cubic-bezier(0, 0, .58, 1);
}
.dest:hover .getqt{
    opacity: 1;
}
.holiday-disclaimer-price p {
    font-size: 14px;
    color: #181818;
    margin: 10px 0;
}