@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400..700;1,400..700&family=Nanum+Gothic&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
	padding: 0px;
	margin: 0px;
}





html{
	scroll-behavior: smooth;
}

.container{
	max-width: 1300px!important;
}

h1, h2, h3, h4, h5{
	font-family: "Libre Baskerville", serif;
}

p, a, label{
	font-family: 'Inter', sans-serif;
}

ul{
	list-style: none;
	margin-bottom: 0px;
}


:root{
	--first-color:#ffd600;
	--second-color:#06BDDD;
	--white-color:#fff;
	--black-color:#000;
	--blue-color:#30a6de;
	--border-color:#E4E4E4;
	--red-color:#e52f55;
}
.first-color{
	color: #FCB531!important;
}

.second-color{
	color: #06BDDD!important;
}

 
a:hover{
	color: #000;
	text-decoration: none;
}
/*@font-face {
  font-family: myFirstFont;
  src: url(sansation_light.woff);
}
*/

p{
	font-size: 15px;
}


.common-section{
	padding: 80px 0px;
	position: relative;
}
/*--------start-header-here---------*/








/*---------top-header-here----------*/

.header-section {
    background-color: var(--blue-color);
    z-index: 99;
    position: relative;
    padding: 15px 0px;
}

.d-flex-common {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-box .items .box-phone i {
    width: 35px;
    height: 35px;
    background-color: var(--white-color);
    color: var(--blue-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Phone-number{
    border-radius: 10px;
    padding: 8px;
    margin-left: auto;
    height: 100%;
    width: 80%;
    border: 1px solid var(--blue-color);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    position: relative;
    font-size: 14px;
    animation: phonenumber 1s ease-in-out infinite;
    overflow: hidden;
    z-index: 999;
}

.Phone-number .img img{
    width: 50px;
    height: 50px;
    border-radius: 100px;
}

.Phone-number  p a{
    font-size: 20px;
}


@keyframes phonenumber{
    0% {
        box-shadow: 0 0 0 0 hsl(199.31deg 72.5% 52.94% / 72%);
    }

    50% {
        box-shadow: 0 0 0 15px hsl(199.31deg 72.5% 52.94% / 72%);
    }
    100% {
        box-shadow: 0 0 0 0 hsl(199.31deg 72.5% 52.94% / 72%);
    }
}

/*---------------End-header-here-----------*/


.header{
	background-color: var(--white-color);
	padding: 15px 0px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.fixed-header{
	position: fixed;
	width: 100%;
	left: 0px;
	top: 0px;
	z-index: 999;
	animation: header 1s 1 alternate;
	border-bottom: 4px solid var(--blue-color);
	box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
	border-radius: 0px 0px 20px 20px;
}

@keyframes header{
	0% {
    transform: translateY(-100%);
	}
	100% {
	    transform: translateY(0%);
	}
}


.dropdown-toggle::after{
	display: none;
}
.dropdown-menu{
	padding: 11px;
	min-width: 230px!important;
	top: 14px!important;
	border: 1px solid var(--first-color);
}

.hamburger{
	margin-left: 20px;
}


.hamburger .line{
  width: 30px;
  height: 2px;
  background-color: var(--blue-color);
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}


#hamburger-1.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}


.menu-list-link{
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 35px;
}
.menu-list-link .item a{
	font-size: 14px;
	transition: 0.4s ease;
	color: var(--black-color);
}
.menu-list-link .item .active,
.menu-list-link .item a:hover{
	color: var(--blue-color);
}

.mobile-menu.menu-list-link{
	flex-direction: column;
  gap: 10px;
  align-items: inherit;
}


/*---------------End-stores-details-section-banner-here------------*/





/*------------------mobile-menu-box-menu-box------*/

.mobile-menu-box{
	position: fixed;
	width: 100%;
	height: 100%;
	left: -100%;
	top: 0px;
	background-color: #0000009c;
	z-index: 9999;
	transition: 0.3s ease;
}

.mobile-menu-box-active{
	left: 0%;
	transition: 0.3s ease;
}

.mobile-menu-box .inner-box{
	width: 75%;
	background-color: var(--white-color);
	height: 100%;
	padding: 20px 10px;
	position: relative;
	z-index: 999;
}
.mobile-menu-box .overlay-box{
	width: 100%;
	position: absolute;
	z-index: -1;
	height: 100%;
}
.mobile-menu-box .main-box{
	width: 150px;
}
.mobile-menu-box .inner-box .logo-box {
	justify-content: center;
}
.mobile-menu-box .inner-box .logo-box .close-box i{
	color: var(--first-color);
	cursor: pointer;
	font-size: 18px;
}
.phone-menu-list{
	height: 400px;
	overflow: auto;
}
.submenu-mobile{
	margin-left: 7px;
}

.mobile-menu .slide-close{
    border: 1px solid var(--border-color);
    padding: 10px;
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: 0.2s ease;
}
.mobile-menu .slide-close.active,
.mobile-menu .slide-close:hover{
    background-color: var(--blue-color);
    color: var(--white-color);
    border-color: transparent;
}


/*-------------End-mobile-menu-box-here-----------*/

.tourz-search {
    padding: 80px 0px 80px;
    background: url(../img/home-page-img/banne.png) center bottom / 100% no-repeat rgb(255, 214, 0);
    position: relative;
}

.train-banner-section{
    background-image: linear-gradient(180deg, rgb(0 36 54 / 75%) 20%, rgba(0, 36, 54, 0) 71%), url(../img/train-img/couple-cafe-window-view.jpg);
    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
}

.tourz-search-1 {
    padding: 0px 15px 0px;
    width: 100%;
    margin: 0px auto;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.flight-offer-items .flight-offer-content{
     background-color: #fff;
}
.flight-offer-items .flight-offer-thumb{
    height: 210px;
}
.flight-offer-items .flight-offer-thumb img{
    height:100%;
}
.flight-offer-items{
    margin-bottom: 30px;
}
.Flight-items span{
    border: 1px solid rgb(59 130 246 / 50%);
    border-radius: 100px;
    font-size: 12px;
}
.Flight-items{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.Popular-Airlines span{
    border: 1px solid rgb(59 130 246 / 100%);
    border-radius: 10px;
    color:rgb(59 130 246 / 100%);
}
.abc.bg-white{
    height:100%;
    margin-bottom:30px;
}

.flight-tourz-search{
    padding: 20px 15px 20px;
    margin-bottom: 30px;
    background-color: #00000040;
}
.tourz-search-1 h1 {
    font-size: 56px;
    padding-bottom: 10px;
    color: rgb(0, 0, 0);
    font-weight: 800;
}
.tourz-search-1 p {
    font-size: 20px;
}


.tab-box-wapper{
	background-color: var(--white-color);
	border-radius: 20px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.tab-header-box{
	background-color:#eef4fb;
	padding: 10px 10px;
	border-radius: 20px 20px 0px 0px;
}

.nav-tabs{
	border-bottom: none!important;
}
.nav-tabs .nav-item{
	margin: 5px 10px;
}
.nav-tabs .nav-link{
	border-radius: 5px!important;
	border: 0px!important;
	background-color: #e1edfb;
}
.form-control:focus,
.nav-link:focus,
.common-btn:focus{
	box-shadow: none!important;
	outline: none!important;
	border-color: var(--blue-color);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active{
	background-color: var(--blue-color);
	color: #fff;
}


.fields {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .6rem;
    align-items: end;
}
.Trip-fields{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


.field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.field .label {
  font-size: 14px;
  color: #253b56;
  margin-bottom: 2px;
}

.input, .select {
    width: 100%;
    padding: .75rem .85rem;
    border: 1px solid #e3e6ea;
    border-radius: 10px;
    font-size: .98rem;
    background: #fff;
    outline: none;
}
.form-control{
	margin-bottom: 10px;
}

.common-btn{
	background-color: var(--blue-color);
	color: var(--white-color);
	font-size: 14px;
	padding: 10px 20px;
	border: 4px solid transform;
}
.common-btn.Clear{
	background-color:#eef4fb;
	color: var(--black-color);
}

.common-btn:hover{
	background-color: var(--white-color);
	color: var(--blue-color);
	border-color: var(--blue-color);
}


.hom-quick-acc {
    position: relative;
    background-image: url(../img/index-img/hotel-img.jpg);
    border-radius: 45px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 40px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 12px -3px;
}

.hom-quick-acc-car-Rentals{
     background-image: url(../img/index-img/car-rental.jpg);
}

.hom-quick-acc-Flights{
     background-image: url(../img/index-img/Flights-img.jpg);
}

.hom-quick-acc-Trains{
     background-image: url(../img/index-img/train-img.jpg);
}

.hom-quick-acc-Cruise{
     background-image: url(../img/index-img/Cruise-img.jpg);
}


.hom-quick-acc:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 45px;
    background-color: #00000094;
}

.hom-quick-acc h2 {
    color: var(--white-color);
    font-size: 23px;
    font-weight: 500;
    line-height: 38px;
    padding-bottom: 10px;
    margin: 0px;
    position: relative;
    z-index: 99;
}
.hom-quick-acc p,
.hom-quick-acc a{
    position: relative;
    z-index: 99;
}

.hom-quick-acc h2 span {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 500;
    display: block;
    line-height: 38px;
}

.cta-1 {
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 60px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    color: var(--white-color);
    font-size: 13px;
    transition: all 0.5s ease 0s;
    background: transparent;
    border: 2px solid var(--white-color);

}
.hom-quick-acc:hover .cta-1 {
    background: var(--white-color);
    color: var(--black-color);
    box-shadow: rgba(29, 29, 33, 0.09) 0px 14px 12px -3px;
    border: 2px solid var(--black-color);
}
.hom-quick-acc img {
    position: relative;
    width: 90%;
    right: 0px;
    bottom: 0px;
}

 
.services-section .services-box{
	margin-bottom: 30px;
}

 

.spe-title h2 {
    margin-bottom: 0px;
    padding-bottom: 20px;
    margin-top: 0px;
    text-transform: capitalize;
    font-size: 35px;
    color: rgb(37, 61, 82);
}

.spe-title h2 span {
    color: rgb(244, 54, 79);
    font-weight: 600;
}
.title-line {
    margin-top: -10px;
}
.tl-1 {
    width: 80px;
    height: 1px;
    display: inline-block;
    background: rgb(238, 238, 238);
}
.tl-2 {
    display: inline-block;
    height: 12px;
    margin: 0px 5px;
    position: relative;
    top: 5px;
    width: 12px;
    border: 1px solid var(--red-color);
    border-radius: 50px;
}
.tl-3 {
    width: 80px;
    height: 1px;
    display: inline-block;
    background: rgb(238, 238, 238);
}
.spe-title p {
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 300;
    padding-top: 12px;
    color: var(--black-color);
    line-height: 30px;
}

.tour-mig-like-com {
    position: relative;
    border-radius: 10px;
    margin-bottom: 19px;
    background: rgb(20, 173, 219);
    transition: all 0.5s ease 0s;
}

.tour-mig-like-com::before {
    content: "";
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 10%, rgba(84, 84, 84, 0.35) 80%);
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    border-radius: 5px;
}
.tour-mig-lc-img img {
    width: 100%;
    border-radius: 5px;
}
.tour-mig-like-com:hover img {
    transition: all 0.5s ease 0s;
    opacity: 0.5;
}

.tour-mig-lc-con {
    position: absolute;
    width: 100%;
    margin-top: -128px;
    padding: 20px 20px 0px;
    display: block;
    text-align: right;
}
/*div::after {
    content: "";
    display: table;
}*/

.tour-mig-lc-con h5 {
    font-size: 28px;
    color: rgb(255, 255, 255);
    padding-top: 10px;
    padding-bottom: 0px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 2px;
    font-weight: 500;
}

.tour-mig-lc-con p {
    color: rgb(193, 193, 193);
}

.tour-mig-lc-con p span {
    text-align: left;
    float: left;
    font-size: 20px;
    color: rgb(238, 238, 238);
}

.yellow-background{
	background-color: #30a6de57;
}
.copyright-box {
	background-color: var(--blue-color);
	padding: 20px 20px;
}
.copyright-above {
	background-color: var(--blue-color);
	padding: 20px 20px;
}
footer {
    background: #ffd600;
    padding: 20px 0;
    color: #666666;
    background-position: 18% 43%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

footer a{
    color: #333333;
    text-decoration: none;
    background-color: transparent;
}

.radio-btn .form{
    display: flex;
    align-items: center;
    gap: 10px;
}

.Holiday-heading h1:after{
    left: 54%;
}

.form label {
    cursor: pointer;
}
.form .input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;

}
.form label {
    display: flex;
    align-items: center;
    margin: 10px 0px 0px;
}

.input-radio.on:checked {
    box-shadow: 0px 0px 0px 4px var(--blue-color);
    background-color: var(--blue-color);
}
.input-radio.off:checked {
    box-shadow: 0px 0px 0px 4px var(--blue-color);
    background-color: var(--blue-color);
}

.banner_bottom {
    padding: 80px 0;
}

.small_icon {
    padding: 15px;
    background: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .1);
    text-align: center;
    margin: 15px 0px;
    border-radius: 8px;
    min-height: 210px;
    transition: 0.3s ease;
    border-bottom: 5px solid var(--blue-color);
}

.small_icon:hover{
    margin-top: -10px;
}


.small_icon i {
    background: var(--blue-color);
    width: 85px;
    height: 85px;
    font-size: 34px;
    line-height: 85px;
    color: #fff;
    border-radius: 48px;
    margin: -41px 0 9px 0;
    border: 5px solid #e9e9e9;
    box-shadow: 0px 0px 10px rgba(0 0 0 /  10%);
}
.small_icon h4 {
    font-size: 18px;
    color: var(--blue-color);
    font-weight: 600;
    margin: 5px 0 6px;
    font-family: 'Fira Sans', sans-serif;
}
.small_icon p {
    font-size: 15px;
    color: #000;
    line-height: 22px;
    margin: 0;
}

.fav_dst {
    width: 100%;
    min-height: 310px;
    border-bottom: 5px solid var(--blue-color);
    display: table;
    border-radius: 10px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.28);
    /* border: 1px solid #ffe7e7; */
}
.fav_dst img {
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 3px;
    width: 100%;
    height: auto;
}
.fav_dst h3 {
    font-size: 19px;
    font-weight: 500;
    color: #000;
    padding: 8px 10px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.fav_dst p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    padding: 2px 10px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.cars-banner-section{
    background-image: linear-gradient(180deg, rgb(0 36 54 / 75%) 20%, rgba(0, 36, 54, 0) 71%), url(../img/cars-img/cars-banner.jpg);
    background-color: black;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
}


.car-box-dts{
    min-height: auto;
    height: 92%;
    padding-bottom: 15px;
}
.car-box-dts span h4 sub{
    font-size: 12px;
}

.rental-deal-box{
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    border-radius: 10px;
    margin-top: 30px;
    transition: 0.3s ease;
}

.rental-deal-box:hover{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}

.rental-deal-box .content-box{
    display: flex;
    align-items: top;
    justify-content: space-between;
}

.rental-deal-box .content-box h4{
    font-size: 18px;
    margin-bottom: 2px;
}
.rental-deal-box .content-box p{
    font-size: 12px;
}

.car-companies img{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    background-color: var(--white-color);
    border-radius: 20px;
}

.flight-banner-section{
     background-image: linear-gradient(180deg, rgb(0 36 54 / 75%) 20%, rgba(0, 36, 54, 0) 71%), url(../img/flight-img/3-s29o1brX.jpg);
}

.flight-offer-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 1px 16px 0px rgba(139, 139, 139, 0.16);
    margin-bottom: 30px;
    position: relative;
    height: 91%;
}

.flight-offer-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #6a2e4d;
    opacity: 0;
    transition: .3s ease-in-out;
}

.flight-offer-content {
    padding: 25px 30px;
}

 .flight-offer-content .title {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
}

 .flight-offer-content span {
    color: #6a2e4d;
    font-weight: 500;
    font-size: 15px;
    display: block;
    margin-bottom: 20px;
}
 .flight-offer-content p {
    color: #6a2e4d;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}

 .flight-offer-content .price {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
}

.flight-offer-item .content-bottom {
    margin-top: 35px;
}
.flight-offer-item.offer-item-two .flight-offer-content {
    padding: 28px 18px 11px
}
.offer-item-two .overlay-content .title, .offer-item-two .flight-offer-content .title {
    font-size: 16px;
}
.flight-offer-item.offer-item-two .overlay-content span, .flight-offer-item.offer-item-two .flight-offer-content span {
    margin-bottom: 10px;
}
.overlay-content p, .flight-offer-content p {
    color: #6a2e4d;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}
 
 .feature-card {
    text-align: center;
    margin-bottom: 30px;
}
.feature-card__icon {
    margin-bottom: 20px;
}
.feature-card__title {
    font-size: 20px;
}

.feature-card__text {
    margin-bottom: -0.5em;
}
.Hotels-banner-section{
    background-image: linear-gradient(180deg, rgb(0 36 54 / 75%) 20%, rgba(0, 36, 54, 0) 71%), url(../img/hotel-img/bg.webp);
}

 

.tg-location-shape {
    position: absolute;
    bottom: 0px;
    left: -50px;
}

.z-index-1 {
    z-index: 1;
}

.tg-round-25 {
    border-radius: 25px;
}
.p-relative {
    position: relative;
}
.bg-white {
    opacity: 1;
    background-color: var(--white-color);
}

.tg-location-wrap {
    border: 1px solid #dbdbdb;
    border-radius: 25px;
    padding: 24px 24px 24px 24px;
    margin-bottom: 30px;
    background: var(--white-color);
}
.tg-location-thumb {
    border-radius: 12px;
    overflow: hidden;
}
.tg-location-thumb img {
    border-radius: 12px;
    transition: all 0.5s ease;
}

.tg-location-time {
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 4px;
    display: inline-block;
    padding: 6px 10px;
    line-height: 1;
    transform: translateY(-13px);
}

.tg-location-border {
    position: absolute;
    border: 1px solid #d1d1d1;
    border-radius: 20px;
    width: 97%;
    height: 100%;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.tg-location-border.two {
    bottom: -10px;
    width: 94%;
}
.tg-location-title a{
    color: var(--blue-color);
    font-size: 20px;
}
.tg-location-wrap:hover .tg-location-thumb img {
    transform: scale(1.1);
}

/*.tg-location-area{
    background-image: url(../img/flight-img/bc-img.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}*/

.hotel-field{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hotels-box .img-box img{
    border-radius: 10px 10px 0px 0px;
}

.best-rooms-box{
    background-color: var(--white-color);
    padding: 10px;
    border-radius: 15px;
}

.best-rooms-box .image-box{
    overflow: hidden;
    transition: all 0.5s ease;
    border-radius: 15px;
}
.best-rooms-box .image-box img{
    transition: all 0.5s ease;
    border-radius: 15px;
}

.best-rooms-box:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}


 .mphb-loop-room-type-attributes{
    background-color: #F2FFFF;
    padding: 10px;
    border-radius: 100px;
 }

.mphb-loop-room-type-attributes li{
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 15px;
    padding-left: 10px;
    position: relative;
    min-height: 30px;
    margin-bottom: 5px;
}

.mphb-loop-room-type-attributes li div .icon{
    width: 40px;
    display: inline-flex;
    height: 40px;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
}

.mphb-loop-room-type-attributes li div .icon i{
    font-size: 16px;
}

.mphb-loop-room-type-attributes li .mphb-adults-title {
    display: flex;
    align-items: center;
    gap: 10px;
 }

.cruise-banner-section{
    background-image: linear-gradient(180deg, rgb(0 36 54 / 75%) 20%, rgba(0, 36, 54, 0) 71%), url(../img/cruise-img/cruise-bc.jpg);
}

.cruise-box{
    padding: 10px;
    box-shadow: 0px 1px 16px 0px rgba(139, 139, 139, 0.20);
}
.cruise-box .img-box img{
    border-radius: 10px;
}
.Featured-offers img{
    border-radius: 10px;
}

.boxes-content .feature-card__icon{
    width:100px;
    height:100px;
    background-color:#fff;
    margin: 0px auto;
    border-radius:100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.boxes-content .feature-card__icon i{
    color: #3cb371;
    font-size: 37px;
}
.dest_ct_bx {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
}

.dest_ct_bx {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 20px;
    background: #fff;
}
.dest_ct_bx .dest_bx_dls {
    text-align: center;
}
 

.dest_ct_bx p.contdsnp {
    font-size: 15px;
    color: #00537e;
    padding: 5px;
    border-radius: 0px 5px 5px 0px;
}

.pagebanner {
    position: relative;
}
.pagebanner h1 {
    position: absolute;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    color: #fff;
}

.pd50 {
    padding: 50px 0;
}
element.style {
}
.about_sec2 h2{
    color: #333;
    font-size: 25px;
    font-weight: 600;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
