/* =========================================================
   COMPLETE RESPONSIVE HOMEPAGE CSS
   + EXACT SPACING
   + ANIMATIONS
   + SWIPER SUPPORT
========================================================= */

/* =========================
   RESET
========================= */


html{
    scroll-behavior:smooth;
}



img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.4s ease;
}

ul{
    list-style:none;
}

body .container {
    width: 1140px;
    max-width: 100% !important;
    padding: 0 20px;
    margin: auto;
}

/* =========================
   COMMON SPACING
========================= */

section{
    position:relative;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}
.section-title p{
	line-height: 27px;
    color: #313131 !important;
    font-size: 18px;
    font-weight: 600;
}
.section-title h2 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #111;
    font-weight: 700;
    letter-spacing: -1px;
}
.section-title h1 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #111;
    font-weight: 700;
    letter-spacing: -1px;
}
/* .section-title p{
    max-width:950px;
    margin:auto;
    color:#666;
    font-size:18px;
} */

/* =========================
   BUTTON
========================= */

/* .theme-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#8c6239;
    color:#fff;
    min-width:190px;
    height:58px;
    padding:0 35px;
    border-radius:4px;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:.4s;
} */

/* .theme-btn:hover{
    background:#111;
    transform:translateY(-3px);
} */

.theme-btn {
    padding: 10px 30px;
    display: block;
    font-weight: 600;
    width: 180px;
    margin: auto;
    font-size: 16px;
    border-radius: 0.25em 0.25em 0.25em 0.25em;
    background-color: #565656 !important;
    color: #fff;
    text-align: center;
    border: 1px solid #565656 !important;
}
.theme-btn:hover{
    background:#111;
    transform:translateY(-3px);
}

.center-btn{
    text-align:center;
    margin-top:55px;
}

/* =========================
   HERO
========================= */
.innerpagesnew {
    position: relative;
    margin-top: -158px;
}
.hero-section{
    height:100vh;
    overflow:hidden;
    position:relative;
}

.hero-video iframe{
    width:100%;
    height:100vh;
    object-fit:cover;
    transform:scale(1.3);
    pointer-events:none;
}

.hero-image img{
    width:100%;
    height:100vh;
    object-fit:cover;
}

.togo-offer-ptb .row.gx-50 {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
}
/* .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:2;
} */

/* .hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    max-width:1050px;
    text-align:center;
    z-index:5;
    padding:0 20px;
    animation:fadeUp 1s ease;
}

.hero-content h1{
    color:#fff;
    font-size:82px;
    line-height:1.08;
    margin-bottom:25px;
    font-weight:700;
}

.hero-content p{
    color:#fff;
    font-size:22px;
    margin-bottom:35px;
} */

/* =========================
   INTRO
========================= */

.intro-section{
    background:#fff;
}

.intro-content{
    max-width:1100px;
    margin:auto;
    text-align:center;
    font-size:18px;
    color:#555;
}
.intro-content p {
    line-height: 27px;
    color: #313131 !important;
    font-size: 17px;
    font-weight: 700;
}

/* =========================
   WHY BOOK
========================= */

.why-book{
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.why-book .overlay{
    position:absolute;
    inset:0;
/*     background:rgba(0,0,0,.2); */
}

.why-book .container{
    position:relative;
    z-index:2;
}

.why-book .section-title h2{
    color:#fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.why-item li {
    position: relative;
    padding-left: 25px;
    list-style: none;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 2rem;
	    margin-left: 0px;
}
.why-item h3{
    color:#fff;
    font-size:22px;
    line-height:1.4;
}
.why-item ul {
    margin: 0px;
}
.why-item li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #fff;
}
/* =========================
   TOUR SECTION
========================= */
.sidecard .tour-card {
    padding: 10px 10px 25px 10px;
    width: 214px;
}
.sidecard .tour-grid {
    display: flex;
    gap: 15px;
    justify-content: left;
    flex-wrap: wrap;
}
.tour-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.tour-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.5s;
	padding:10px;
}

.tour-card:hover{
    transform:translateY(-8px);
}

.tour-badge {
    position: absolute;
    right: 10px;
    background: #565656;
    color: #fff;
    padding: 8px 15px;
    border-radius: 0px 15px;
    z-index: 3;
    font-size: 15px;
    font-weight: 600;
}

.tour-image{
    overflow:hidden;
}

.tour-image img{
    width:100%;
    object-fit:cover;
    transition:.6s;
	border-radius: 18px;
}
section.instagram-section.homeslide {
    padding-bottom: 0px!important;
}
.tour-card:hover img{
    transform:scale(1.08);
	border-radius: 18px;
}

.tour-content .days{
    display:block;
    margin-bottom:12px;
    color:#8c6239;
    font-weight:600;
	background: #565656;
    font-size: 14px;
	text-align: center;
    padding: 5px;
    margin-top: 18px;
    color: #fff;
    display: block;
}
.ex_pera {
    color: red;
}
.tour-content h3 {
    font-size: 17px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #000;
}

.tour-content p {
    color: #000;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 25px;
}

/* =========================
   SWIPER
========================= */

.swiper{
    padding-bottom:50px;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#8c6239;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    opacity:1;
}

.swiper-button-next,
.swiper-button-prev{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    color:#111;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:18px;
    font-weight:700;
}

/* =========================
   VIDEO REVIEW
========================= */

.video-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.video-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.video-item img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.play-btn{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:85px;
    height:85px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#111;
}

/* =========================
   DESTINATIONS
========================= */


.destination-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:15px;
}

.destination-item{
    position:relative;
    overflow:hidden;
    border-radius:30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
}
.destination-item:nth-child(1)::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 24, 38, 0.95) 0%,
        rgb(104 68 68 / 85%) 0%,
        rgb(137 132 135 / 40%) 0%,
        rgb(51 54 82 / 0%) 50%
    );
}

.destination-item:nth-child(2)::after {
    content: "";
    position: absolute;
    inset: 0;
   background: linear-gradient(to top, rgba(44, 24, 38, 0.95) 0%, rgb(173 122 85 / 85%) 0%, rgb(137 132 135 / 40%) 0%, rgb(51 54 82 / 0%) 50%);
}
.destination-item:nth-child(3)::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 38, 0.95) 0%, rgb(84 79 79 / 85%) 0%, rgb(137 132 135 / 40%) 0%, rgb(51 54 82 / 0%) 50%);
}
.destination-item:nth-child(4)::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 38, 0.95) 0%, rgb(90 49 49 / 85%) 0%, rgb(22 18 16 / 40%) 0%, rgb(51 54 82 / 0%) 50%);
}
.destination-item:nth-child(5)::after {
    content: "";
    position: absolute;
    inset: 0;
   background: linear-gradient(to top, rgba(44, 24, 38, 0.95) 0%, rgb(96 81 45 / 85%) 0%, rgb(137 132 135 / 40%) 0%, rgb(51 54 82 / 0%) 50%);
}
.destination-item:nth-child(6)::after {
    content: "";
    position: absolute;
    inset: 0;
        background: linear-gradient(to top, rgba(44, 24, 38, 0.95) 0%, rgb(64 87 112 / 85%) 0%, rgb(137 132 135 / 0%) 60%, rgb(51 54 82 / 0%) 50%);
}
.destination-item:nth-child(7)::after {
    content: "";
    position: absolute;
    inset: 0;
        background: linear-gradient(to top, rgba(44, 24, 38, 0.95) 0%, rgb(64 87 112 / 0%) 35%, rgb(137 132 135 / 0%) 60%, rgb(51 54 82 / 0%) 50%);
}

.destination-item img{
    width:100%;
    object-fit:cover;
    transition:.6s;
}

.destination-item:hover img{
    transform:scale(1.08);
}

.destination-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to top,
    rgba(44, 24, 38, 0.95) 0%,
    rgba(44, 24, 38, 0.85) 35%,
    rgba(44, 24, 38, 0.4) 60%,
    rgba(44, 24, 38, 0) 100%
  );
}
.destination-item .overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,0.02) 18%,
    rgba(0,0,0,0.08) 38%,
    rgba(24,34,54,0.55) 58%,
    rgba(24,34,54,0.88) 78%,
    rgba(24,34,54,0.98) 100%
  );
}

.destination-item .content{
  position:absolute;
  bottom:0;
  z-index:2;
  width:100%;
  padding:18px;
  color:#fff;
}

.destination-item .trip {
    font-size: 12px;
    margin-bottom: 14px;
    background: rgb(255 250 250 / 23%);
    padding: 6px 10px;
    border-radius: 7px;
    width: max-content;
}

.destination-item .sub{
  font-size: 12px;
  opacity: 0.8;
  margin-bottom:6px;
  text-transform:uppercase;
}

.destination-item .place{
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
}

.destination-item .price{
  font-size:12px;
  font-weight:500;
  margin-bottom:18px;
}

.destination-item .stats{
  display:flex;
  justify-content:space-between;
  margin-bottom:18px;
}

.destination-item .box{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.destination-item .box small{
  font-size:12px;
  opacity:0.65;
}

.destination-item .box span{
  font-size:12px;
  background:rgba(255,255,255,0.08);
  padding:6px 10px;
  border-radius:7px;
  text-align:center;
}

.destination-item .btn{
  width:100%;
  background:#fff;
  color: #333;
  border:none;
  text-decoration:none;
  height:42px;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}

.destination-item .btn span:last-child{
  font-size:18px;
}

/* =========================
   POSTS
========================= */

.post-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.post-card{
    background:#fff;
    overflow:hidden;
/* 	padding: 12px; */
/* 	border: 1px solid #e3dbdb; */
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.post-card img{
    width:100%;
	height:430px;
	background-repeat: no-repeat;
    background-size: cover;
    object-fit:cover;
}

.post-card h3 {
    padding: 0px 25px;
	margin-top: 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #313131;
    margin-bottom: 5px;
}
p.post-excerpt {
    padding: 0px 25px;
    font-size: 13px;
    color: #313131;
}

.counter-number1 {
    font-size: 45px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.post-card{
  border-radius:28px;
  overflow:hidden;
  position:relative;
  box-shadow:0 8px 25px rgba(0,0,0,0.18);
}

.post-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(20,28,45,0.95) 0%,
    rgba(20,28,45,0.65) 30%,
    rgba(0,0,0,0.08) 75%,
    rgba(0,0,0,0.02) 100%
  );
}

.post-card .content{
  position:absolute;
  bottom:0;
  z-index:2;
  width:100%;
  padding:16px;
  color:#fff;
}

.post-card .heading-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.post-card .title{
  font-size:16px;
  font-weight:700;
  line-height:1.3;
}

.post-card .price{
  background:rgba(255,255,255,0.16);
  padding:6px 10px;
  border-radius:14px;
  font-size:13px;
  font-weight:600;
  backdrop-filter:blur(8px);
}

.post-card .desc{
  font-size:12px;
  line-height:1.5;
  color:rgba(255,255,255,0.82);
  margin-bottom:14px;
}

.post-card .tags{
  display:flex;
  gap:8px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.post-card .tag{
  background:rgba(255,255,255,0.12);
  border-radius:20px;
  padding:7px 10px;
  font-size:11px;
  color:#fff;
  backdrop-filter:blur(8px);
}

.post-card .btn{
  width:100%;
  border:none;
  background:#fff;
  text-decoration: none;
  color:#111;
  padding:14px;
  border-radius:40px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}
.post-card .btn:hover{
  text-decoration:none;
}
.post-card .btn:active{
  text-decoration:none;
}
/* =========================
   FESTIVALS
========================= */

.festival-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.festival-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.festival-item img{
    width:100%;
    object-fit:cover;
}

.festival-item::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.78), transparent);
}

.festival-item h3 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    color: #fff;
    z-index: 3;
    right: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

/* =========================
   INSTAGRAM
========================= */

.instagram-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}

.instagram-item{
    overflow:hidden;
    border-radius:12px;
}

.instagram-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.6s;
}

.instagram-item:hover img{
    transform:scale(1.08);
}
 #site-footer {
    margin-top: 0rem !important;
}
/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translate(-50%,calc(-50% + 50px));
    }

    to{
        opacity:1;
        transform:translate(-50%,-50%);
    }

}

.fade-up{
    animation:fadeUp 1s ease forwards;
}
/* =========================
   Cruise Excursions Section
========================= */


/* Section Title */

.cruise-excursions-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}



/* Grid */

.cruise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Card */
.cruise-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    padding: 10px 10px 30px 10px;
    flex-direction: column;
}

.cruise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Image */

.cruise-image {
    position: relative;
    overflow: hidden;
}

.cruise-image img {
    width: 100%;
/*     height: 260px; */
    object-fit: cover;
    display: block;
	border-radius: 15px;
    transition: transform 0.4s ease;
}

.cruise-card:hover .cruise-image img {
    transform: scale(1.08);
	border-radius: 15px;
}

/* Content */

.cruise-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cruise-content h3 {
    font-size: 20px;
    line-height: 1.3;
	text-align: center;
	margin: 2.5rem auto 2.5rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.cruise-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 25px;
    flex-grow: 1;
	text-align: center;
}

/* Button */

/* =========================
   Trips Ideas Section
========================= */

.trips-ideas-section {
    background: #fff;
    padding: 70px 0 50px;
}



/* Heading */

.trips-heading {
    text-align: left;
    margin-bottom: 35px;
}

.trips-heading h2 {
    display: inline-block;
    color: #313131;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
}

.trips-heading p {
    max-width: 900px;
    margin: 0 auto;
    color: #222;
    font-size: 18px;
    line-height: 1.7;
}

/* Trips List */

.trips-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 120px;
    row-gap: 35px;
}

/* Item */

.trip-item a {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
}

.trip-icon {
    width: 38px;
    height: 26px;
    flex-shrink: 0;
    overflow: hidden;
}

.trip-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trip-name {
    color: #222;
    font-size: 18px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.trip-item a:hover .trip-name {
    color: #2f5fd0;
}
.containerwrap .left {
    width: 70%;
}.containerwrap .right {
    width: 30%;
}
.containerwrap .left p{margin:0px; font-size:16px;}
.containerwrap {
    display: flex;
}
.containerwrap .right .tss-meta-info {
    display: none;
}


p.informdata {
    color: #fff;
    text-align: center;
	font-size:12px;
}
p:empty {
    display: none;
}

.tour-card {
 
    padding: 10px 10px 25px 10px;
}
.plan-trip-content h2 {
    font-size: 30px;
}
/* =========================
   Responsive
========================= */

@media (max-width: 767px) {
	.containerwrap {
    display: flex;
    flex-direction: column;
}
	div#myhomeslider {
		margin-top: 50px;
		width: 100%;
	}
	.tour-content {
		min-height: unset !important;
	}
	.tour-content a.theme-btn.small-btn {
		position: relative !important;
		bottom: 0px !important;
		left: 3%;
		right: 3%;
	}

    .trips-ideas-section {
        padding: 50px 0 40px;
    }

    .trips-heading {
        margin-bottom: 35px;
    }

    .trips-heading h2 {
        font-size: 30px;
        padding: 8px 14px;
    }

    .trips-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .trips-list {
        grid-template-columns: 1fr;
        row-gap: 25px;
        column-gap: 0;
        max-width: 100%;
    }

    .trip-name {
        font-size: 16px;
    }
	
	.tour-content p {	
 
    margin-bottom: 15px;
}

.header-titles-wrapper {
    padding-top: 46px!important;
}
	.header-inner {
    padding: 0px!important;
}
	button.toggle.nav-toggle.mobile-nav-toggle {
    padding-top: 48px;
}
	.hero-video iframe {
    
    transform: scale(2);
    pointer-events: none;
}
	.why-book .section-title h2 {
    color: #ffc706 !important;
}
	.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0px;
}
	.tour-card {
     
    padding: 10px 10px 30px 10px;
}
	section {
    padding: 3rem 0;
    width: 100%;
}
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {

    .cruise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cruise-excursions-section .section-title h2 {
        font-size: 34px;
    }

}

@media (max-width: 767px) {

    .cruise-excursions-section {
        padding: 60px 0;
    }

    .cruise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cruise-excursions-section .section-title {
        margin-bottom: 35px;
    }

    .cruise-excursions-section .section-title h2 {
        font-size: 28px;
    }

    .cruise-content {
        padding: 20px;
    }

    .cruise-content h3 {
        font-size: 22px;
    }

    .cruise-image img {
        height: 220px;
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

    .hero-content h1{
        font-size:62px;
    }

    .tour-grid,
    .destination-grid,
    .festival-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .video-grid,
    .instagram-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    section{
        padding:90px 0;
    }

    .section-title h2{
        font-size:22px;
    }

    .hero-content h1{
        font-size:52px;
    }

}

@media(max-width:767px){

    section{
        padding:70px 0;
    }
	.container.mobile_padding {
    padding: 0px 30px;
}

	.tour-content .days {
 font-size: 17px;
 
}
    .hero-section,
    .hero-video iframe,
    .hero-image img{
        height:500px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:17px;
    }

    .section-title h2{
        font-size:24px;
    }

    .tour-grid,
    .destination-grid,
    .festival-grid,
    .video-grid,
    .instagram-grid,
    .post-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

   

}
@media (min-width: 700px) {
 section {
    padding: 2rem 0 !important;
}
	.tour-content {
    min-height: unset;
}
}
.tm-btn{
	text-align:center;
	margin: 30px 0px;
	padding-top:30px;
}
 
/* .tour-content {
    min-height: 225px;
} */

.mainbtn-center-btn{
	width: max-content;
    margin: auto;
	padding-top: 40px;
}
.mainbtn-center-btn .quick-theme-btn{
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 18px!important;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #ffffff;
    background-color: #25d366 !important;
    padding: 14px!important;
    border-radius: 10px!important;
    animation: 2s 2s infinite shake;
	display: inline-block;
}
@keyframes shake {
    0%, 90%, 100% { transform: translateX(0); }
    92% { transform: translateX(-6px); }
    94% { transform: translateX(6px); }
    96% { transform: translateX(-6px); }
    98% { transform: translateX(6px); }
}


#designcard .tour-card:nth-child(1) {
	background-color: #d4af86;
}
#designcard .tour-card:nth-child(2) {
	background-color: #c3aa84;
}
#designcard .tour-card:nth-child(3) {
	background-color: #e1b18c;
}
#designcard .tour-card:nth-child(4) {
	background-color: #dec597;
}
#designcard .tour-card:nth-child(5) {
	background-color: #b7c791;
}
#designcard .tour-card:nth-child(6) {
	background-color: #cfce95;
}
#designcard .tour-card:nth-child(7) {
	background-color: #e4d7a8;
}
#designcard .tour-card:nth-child(8) {
	background-color: #bcb69f;
}

#grouptours_card .tour-card:nth-child(1) {
    background-color: #c7baa9;
}
#grouptours_card .tour-card:nth-child(2) {
    background-color: #cfce95;
}
#grouptours_card .tour-card:nth-child(3) {
    background-color: #e4d7a8;
}
#grouptours_card .tour-card:nth-child(4) {
    background-color: #aab68f;
}

.slick-prev, .slick-next {
    font-size: 0;
    top: 50%;
    margin-left: -60px;
    margin-top: -24px;
    position: absolute;
    width: 40px;
    z-index: 99;
}
.cruise-card:nth-child(1) {
	background-color: #d4af86;
}
.cruise-card:nth-child(2) {
	background-color: #c3aa84;
}
.cruise-card:nth-child(3) {
	background-color: #e1b18c;
}
.cruise-card:nth-child(4) {
	background-color: #dec597;
}



.destination-item h3 {
    color: #fff !important;
   
    font-size: 18px;
	
}


#myhomeslider h3.review-title {
    font-size: 14px!important;
    font-weight: 600;
    text-transform: uppercase;
    background: #0e7575;
    color: #fff!important;
    text-align: center;
    text-transform: capitalize!important;
    margin: 0px;
    padding: 10px 0px;
}
a.review-btn {
    position: absolute;
    margin-top: 14px;
    margin-left: 90px;
    color: #fff;
}

.cvs-item  img {
    margin-right: 10px;
    
    object-fit: cover;
    cursor: pointer;
}
.tm-btn .theme-btn1.small-btn {
    text-align: center;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 0.25em 0.25em 0.25em 0.25em;
    -moz-border-radius: 0.25em 0.25em 0.25em 0.25em;
    border-radius: 0.25em 0.25em 0.25em 0.25em;
    background: #565656;
    border-width: 1px 0;
    border: 1px solid #565656;
    color: #ffffff !important;
    font-size: 1em;
   padding: 1em 8rem;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    width: 25%;
    max-width: 100%;
}
.contentbottomcard h4 {
    font-size: 20px;
	margin:15px 0px;
}
.contentbottomcard h2 {
    font-size: 30px;
    text-align: center;
}


.togo-offer-thumb img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
	.togo-offer-item-wrap .col {
    width: 50%;
    
}
	.togo-section-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 8px;
		margin-bottom: 20px;
		margin-top:0px;
		text-align:center;
}
	.togo-offer-ptb.fix.p-relative.pt-80.pb-130 {
  
    padding: 40px 0px;
    background: #e4d7a8;
}
.cardright_whyus {
    padding:0px 15px;
    width: 60%;
}
	.cardleft_whyus {
    padding: 0px 15px;
    width: 40%;
}

.togo-offer-item-wrap  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
	.togo-offer-item-content p {
    margin: 0px;
}
	
	.togo-offer-item-title{
		position:relative;
	}
	.togo-offer-item-title::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #000;
	font-size:20px;
}
	.togo-offer-ptb .container {
    padding: 0px;
}
.togo-offer-item-title {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    padding-left: 38px;
    width: 288px;
    margin: 10px 0px;
}
 section.why-book {
    display: none;
}
	.togo-offer-ptb.fix.p-relative.pt-80.pb-130 {
    padding: 40px 0px;
}
	.togo-offer-item-wrap  .row {
    display: flex;
    flex-wrap: wrap;
}
.togo-offer-item-wrap .col {
    width: 49%;
}

.googlereview img {
    max-width: 220px;
    margin: auto;
    padding: 20px;
}

.counter-box {
    width: 190px;
    background: #d9d9d9;
    border-radius: 14px;
    text-align: center;
    padding: 15px 9px;
    transition: 0.3s ease;
}

.counter-box:hover{
    transform:translateY(-5px);
}

.counter-box {
    width: 190px;
    background: #565656;
    border-radius: 14px;
    text-align: center;
    padding: 15px 9px;
    transition: 0.3s ease;
}

.counter-title {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}
.counter-number {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
}
.counter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
@media(max-width:768px){
.tour-card {
    padding: 10px 10px 25px 10px;
    width: auto;
}
	section.video-review {
    padding: 1rem 0px;
}
	.cruise-excursions-section {
    padding: 60px 0 0px;
}
	section {
    padding: 5rem 0 0px!important;
    width: 100%;
}
.counter-box{
    width:116px;
    max-width:300px;
}
.counter-number1 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
	.intro-section {
    padding: 40px  0px 30px;
}
.counter-number{
    font-size:30px;
}

.counter-title{
    font-size:18px;
}
 
	.cardleft_whyus {
    padding: 0px 15px;
    width: 100%;
}
	.cardright_whyus {
    padding: 0px 15px;
    width: 100%;
}
	#instamainslider .cvs-item {
    position: relative;
    width: 140px!important;
}
	.counter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
	.togo-offer-item-wrap  .row {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
}
	.togo-offer-item-wrap .col {
    width: 100%;
}
	#googleslider1 .slick-next.slick-arrow {
    right: 59px;
    top: 50%;
    margin-right: -60px;
    margin-top: -24px;
    position: absolute;
}
	#googleslider1 .slick-prev.slick-arrow {
    left: 59px;
    top: 50%;
    margin-right: 0px;
    margin-top: -24px;
    position: absolute;
}
#teamslier1 button.slick-next.slick-arrow {
    right: 0%;
    top: 50%;
    margin-right: 0px;
    margin-top: -24px;
    position: absolute;
}
#teamslier1  .slick-prev.slick-arrow {
    left: 59px;
    top: 50%;
    margin-right: 0px;
    margin-top: -24px;
    position: absolute;
}
}
@media(max-width:767px){

.mobile-tour-section{
    display:block;
    padding:20px 15px 120px;
}

/* WRAPPER */

.mobile-tour-wrapper{
    position:relative;
}

/* CARD */

.mobile-tour-card{
    position:sticky;
    top:20px;
    background:#d7b78f;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:25px;
    padding-bottom:20px;
    transform-origin:center top;
    transition:0.25s linear;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* STACK EFFECT */

.mobile-tour-card:nth-child(1){
    top:30px;
}

.mobile-tour-card:nth-child(2){
    top:50px;
}

.mobile-tour-card:nth-child(3){
    top:75px;
}

.mobile-tour-card:nth-child(4){
    top:100px;
}

.mobile-tour-card:nth-child(5){
    top:125px;
}

.mobile-tour-card:nth-child(6){
    top:150px;
}

.mobile-tour-card:nth-child(7){
    top:175px;
}

.mobile-tour-card:nth-child(8){
    top:200px;
}

section.instagram-section.homeslide {
    overflow: hidden;
}

}
