h2 {
    font-size: 3.4rem;
    margin-bottom: 2.5rem;
}

section p {
    color:var(--text-gray-color);
    font-size: 1.6rem;
    line-height: 1.4;
}

h6 {
    font-size: 1.8rem;
}

/************************************************************************
        Main picture section
************************************************************************/

.booking-main{
    min-height: 47rem;
    background-position: center;
    background-size: cover;
    position: relative;
}
.booking-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #28489A 0%, #4680F7 100%);
    z-index: 1;
    pointer-events: none;
}

.background-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0.3;
    background: rgb(41,72,154);
    background: linear-gradient(0deg, rgba(41,72,154,1) 0%, rgba(14,3,26,0.9640231092436975) 88%);
}

.booking-main_heading {
    min-height: 30rem;
    position: relative;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.booking-main_heading h1 {
    font-size: 5rem;
    text-transform: capitalize;
}

.booking-main_heading p {
    color: var(--white-color);
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.booking-main_heading a{
    background:var(--primary-color);
    border-radius: .5rem;
    color:var(--white-color);
    font-size: 2rem;
    padding: .8rem 2rem;
    text-transform: uppercase;
}


/************************************************************************
        DISCOVER DESTIONATION
************************************************************************/

.discover-destionation p {
    max-width: 140rem; 
    margin:auto;
    margin-bottom: 2.5rem;
}


/************************************************************************
        SUB VALUES [links]
************************************************************************/

.sub-values{
    --gap: 2rem;
    display: flex;
    gap: var(--gap);
    justify-content: center;
    flex-wrap: wrap;
}


.sub-values > article:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow);
}

.sub-values > article {
    background:tomato;
    border-radius: 1rem;
    min-height: 38rem;
    padding:2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    flex-basis: 16%;
    background-position: center!important;
    background-size:cover!important;
    transition: transform .3s;
    margin-bottom: 2rem;
    
}

.sub-values > article > div {
    text-align: center;
}

.sub-values > article > div h5 {
    font-size: 2rem;
    color:white;
    font-weight: 600;
}

.sub-values > article > div p {
    color:white;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}
.sub-values > article:hover > div p {
    opacity: 1;
}
.sub-values > article > div a {
    background: var(--orange-color);
    color: black;
    padding: 1rem 2.5rem;
    border-radius: .5rem;
    display: inline-block;
    margin-top: 1rem;
}

/************************************************************************
        FEAUTURED DESTINATIONS
************************************************************************/
.featured-dest ul {
    display:flex;
    list-style: none;
    justify-content: center;
    margin-bottom: 4rem;
}

.featured-dest ul li {
    border-bottom: 2px solid var(--border-mainbook-color);
    color: var(--primary-color);
    cursor:pointer;
}

.featured-dest ul li:not(:last-of-type){
    padding-right: 5rem;
}

.featured-dest ul li span {
    padding-bottom: 2rem;
    display: inline-block;
    position: relative;
}

.featured-dest ul li span::after{
    content: '';
    width: 0;
    height: .6rem;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: all 300ms ease-out;
    border-radius: 2rem;
}

.featured-dest ul li.active span::after{
    width: 100%;
    background: var(--primary-color);
}


.featured-dest .feautured {
    display: flex;
    justify-content: center;
    gap:2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.featured-dest .holder {
    display: flex;
    justify-content:center;
    gap:2rem;
    flex-wrap: wrap;
}

.featured-dest article {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    
}
.featured-dest .feautured article {
    flex-basis: 18%;
    flex-grow: 1;
    max-width: 30%;
}
.featured-dest .holder article  {
    flex-basis: 15%;
}

.featured-dest article .bg-image {
    height: 20rem;
    background-position: center center;
    background-size: cover;
    position: relative;
}


.featured-dest article .bg-image .detail-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    opacity:0;
    visibility: hidden;
    transition: all .3s ease-in-out;
	text-align: center;
}

.featured-dest article:hover .bg-image .detail-link {
    opacity: 1;
    visibility: visible;
}



.featured-dest article .title {
    padding:2rem;
    color:var(--primary-color);
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
}

.featured-dest article .title a {
    display: inline-block;
    color:var(--white-color);
    background:var(--primary-color);
    padding: .5rem 1.5rem;
    font-size: 1.4rem;
}
@media (max-width: 1200px) {
    .sub-values > article {
        flex-basis: 25%;
    }
}

@media (max-width: 767px) {
    .sub-values > article {
        flex-basis: 45%;
    }
}

@media (min-width: 1200px) {
    .featured-dest .holder article.feature-box {
        grid-column: span 2;
    }

    .featured-dest .feautured article .bg-image {
        height: 35rem;
    }
    
}

@media (max-width: 767px) {
    .featured-dest .feautured article {
        flex-basis: 100%;
		max-width: 45%;
    }
    .featured-dest .holder article {
        flex-basis: 45%;
    }
    .featured-dest .holder article .bg-image {
        height: 12rem;
    }
    .featured-dest article .title{
        font-size: 1.6rem;
    }
}

/************************************************************************
        VIDEO SECTION
************************************************************************/
.video-heading{
    margin: 6rem 0 2rem 0;
    text-align: center;
}
.video-section{
    background:linear-gradient(0deg, rgba(0, 0, 0, 0.3),
     rgba(0, 0, 0, 0.3));
    height: 50rem;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;
}

.video-section > div {
    cursor: pointer;
}

.video-section p, .video-section i {
    color:white;
}
.video-section i {
    font-size: 5rem;
    margin-bottom: 2rem;
}
.video-section p {
    font-size: 3rem;
    padding:2rem;
}


/*   MOBILE   */

@media (max-width:767px){
    .sub-values{
        --num-cols: 2;
        
    }

    .featured-dest ul li:not(:last-of-type) {
        padding-right: 2rem;
    }

    .section-padding {
        padding:2rem;
    }

    .sub-values > article {
        min-height: 25rem;
    }

    .sub-values > article > div a {
        padding: 1rem;
		font-size: 1.4rem;
    }
	.sub-values > article > div h5{
		font-size: 1.8rem;
	}

    p {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 2.6rem;
    }
}



@media(max-width:1200px) {
        
    .sub-values{
       flex-wrap: wrap;
    }

}

.offer-box {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.offer-box > div {
    max-width: 36rem;
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-box > div img {
    width: 100%;
    border-radius: 1.5rem 1.5rem 0 0;
    height: 23rem;
    object-fit: cover;
    cursor: pointer;
}

.offer-box  .img {
    position: relative;
}

.offer-box .img span {
    position: absolute;
    bottom: 1.5rem;
    right: 1rem;
    background: rgba(255,255,255, .6);
    padding: .5rem 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.offer-box > div h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 1.5rem 0;
}
.offer-box > div .date {
    color: var(--text-gray-color);
    text-align: center ;
    margin: 1rem 0;
}
.offer-box > div p {
    color: var(--text-gray-color);
}
.offer-box > div .cta {
    text-align: center;;
}
.offer-box > div .cta a {
    display: inline-block;
    background-color: var(--primary-color);
    color:white;
    text-align: center;
    font-size: 1.8rem;
    padding:1.5rem;
    margin-top: 1.5rem;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.deal-offer h2 {
    text-align: center;
}

.deal-offer > p {
    color:var(--text-gray-color);
    font-size: 1.8rem;
    text-align: center;
    max-width: 90rem;
    margin: auto;  
    padding: 0 1rem;
    margin-bottom: 3rem;
}

@media(max-width:1440px) {
    .featured-dest .holder article {
        flex-basis: 20%;
    }
    
    }
    
    @media(max-width:1199px) {
    .featured-dest .holder article {
        flex-basis: 30%;
    }
    
    }

    @media(max-width:576px) {
        .featured-dest .holder article {
            flex-basis: 45%;
        }
        
        }

/* .auctions-holder section {
    --gap: 4rem;
    --num-cols: 4;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    gap: var(--gap);
    margin-top: 5rem;
    justify-content: center;
} */

.auctions-holder{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* .auctions-holder section {
    --gap: 4rem;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gap);
    justify-content: center;
    margin-top: 5rem;
    max-width: 1000px;
} */
.auctions-holder section {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

/* .auctions-holder section {
   display: flex
;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
} */

.auctions-holder section article {
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 1rem;
    padding-bottom: 1.5rem;
    max-width: 300px;
}
        

.auctions-holder section article .img {
    height: 20rem;
}

.auctions-holder section article img {
    height: 100%;
    object-fit: cover;
}

.auctions-holder section article h3 ,
.auctions-holder section article .bid-holder {
    width: 30rem;
    margin:auto;
    text-align: center;
    padding: 1.5rem;
}
.auctions-holder section article h3 {
    font-size: 2rem;
}
.bid-holder {
    margin-top: 1.5rem;
}

.bid-holder button, .bid-holder a {
    
    width: 100%;
    padding: 1rem;
    font-size: 1.6rem;
    border-radius: .5rem;
}
.bid-holder button {
    background-color: var(--orange-color);
	cursor: default;
}
.bid-holder a {
    background-color: var(--primary-color);
    font-weight: 600;
    color:white;
    display: block;
}
.bid-holder div {
    margin: 1.5rem 0;
}
.custom-padding{
    padding: 4rem 6.5rem;
}




.clamp-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.4em;
  line-height: 1.6em;
}
.clamp-5-lines {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  max-height: calc(1.4em * 5); /* fallback for non-clamp support */
}

