:root {
  --theme-colour: #fad715;
  --common-font: "Shadows Into Light", cursive; 
}
body,html {
    font-family: 'Archivo';
    overflow-x: hidden ;
}
p
{
    font-size: 16px;
    line-height: 30px;
    color: #555;
    margin: 0;
    font-weight: 400;
}
*{
    margin: 0;
    padding: 0;
}
figure {
    margin-bottom: 0;
}
h1 {
    font-size: 65px;
}
h2 {
    font-size: 55px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 22px;
}
a,h2,h3,h4,h5,h6{
    color: #000;
    margin: 0;
}
a{
    text-decoration: none;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    display: block;
}
figure {
    overflow: hidden;
}
.gap {
    padding-top: 120px;
    padding-bottom: 120px;
}
.no-top {
    padding-top: 0;
}
.no-bottom {
    padding-bottom: 0;
}
/* 01. header-top */
.header-top-bar {
    background-color: var(--theme-colour);
}
.content-header {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.content-header svg {
    width: 24px;
    height: auto;
}
.content-header h4 {
    padding-left: 6px;
    font-size: 16px;
}
.content-header i {
    padding-right: 12px;
    font-size: 18px;
}
.content-header a, .content-header h4 {
    text-transform: uppercase;
    font-weight: 800;
}
.login a {
    font-size: 16px;
    padding-left: 10px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block !important; 
}
.login {
    margin-left: 40px;
}
.login i {
    margin-right: 10px;
}
.login {
    justify-content: end;
}
.top-bar {
    padding: 10px 0;
}
header.style3 {
    position: absolute;
    width: 100%;
    z-index: 12;
}
/* 02. navbar */
.navbar {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    padding: 0;
}
.navbar-logo {
  color: #ff3f34;
  text-decoration: none;
  font-size: 25px;
  padding: 0px 20px;
}
.navbar-links {
  list-style-type: none;
  display: flex;
}
.navbar-links li:not(:last-child) {
    padding-right: 40px;
}
.navbar-links li a {
    display: block;
    text-decoration: none;
    color: #707070;
    transition: 0.4s all;
    padding-bottom: 10px;
    padding-top: 10px;
}
.navbar-links li.menu-item {
  position: relative;
}
.navbar-links li.menu-item:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translatey(0px);
    z-index: 1111;
}
.navbar-links li.menu-item .sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    transform: translatey(10px);
    left: 0;
    width: 230px;
    /* box-shadow: 0px 10px 10px 3px hsl(0deg 0% 0% / 16%); */
    z-index: 111;
    transition: 0.4s all;
}
.navbar-links li.menu-item .sub-menu a {
    font-size: 16px;
    padding-left: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 700;
    border: 0;
    position: relative;
    text-transform: capitalize;
    color: #000 !important;
    background-color: #FFF;
}
.navbar-links li.menu-item .sub-menu li a:hover {
    color: var(--theme-colour) !important;
}

.sticky-menu nav > div ul ul li a:before{
    left:1.25rem;
}

.navbar-links li.menu-item .sub-menu li {
    position: relative;
}
.navbar-links li.menu-item .sub-menu li:before {
    content: "";
    z-index: 11;
    position: absolute;
    height: 1px;
    background-color: #58585829;
    width: 78%;
    bottom: 0;
    left: 25px;
}

li.menu-item-children > a:before,
li.menu-item-has-children > a:before {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: -15px;
    top: 10px;
    color: inherit;
    font-weight: 700;
}
nav .sub-menu .sub-menu {
    left: 100% !important;
    top: 0 !important;
    visibility: hidden;
}

nav .sub-menu li.menu-item-has-children:hover .sub-menu {
    visibility: visible;
}

.navbar-links li:hover > a {
    border-bottom: 5px solid var(--theme-colour);
}
.navbar-links li > a {
    border-bottom: 5px solid transparent;
    color: white;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}
ul.social-media a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fbe469;
    border-radius: 50%;
    margin-right: 6px;
}
ul.social-media a:hover {
    background-color: #fff;
}
ul.social-media {
    margin: 0;
}
nav.navbar ul.sub-menu li {
    padding: 0;
}
/* 03. two-bar */
.two-bar {
    padding: 15px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    z-index: 1;
}
.header-search svg{
    fill: #fff;
    width: 20px;
    margin-right: 16px;
}
/* 04. mobile-nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #000;
    padding: 50px 40px 15px;
    z-index: 5;
    transition: 0.45s ease-in-out;
    transform: translateX(-101%);
    -webkit-transform: translateX(-101%);
    -moz-transform: translateX(-101%);
    -o-transform: translateX(-101%);
    overflow-y: auto;
}
.mobile-nav ul li a svg {
    width: 11px;
}
.for #nav-icon4{
  color: black;   
}
#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon4 span:nth-child(2) {
  top: 13px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.responsive-bar {
    display: none;
}
#nav-icon4 span:nth-child(3) {
  top: 25px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 35px;
  left: 8px;
}

i#nav-icon4 {
    display: none;
}
#nav-icon4 {
  width: 40px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
  font-size: 25px;
  color: white;
}

#nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.mobile-nav  li.menu-item-has-children > a:before{
    display: none;
}
.mobile-nav > ul > li.menu-item-has-children:before {
    color: #fff;
    position: absolute;
    top: 17px;
    right: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 11px;
}
.mobile-nav > ul > li.menu-item-has-children.active:before {
    transform: rotate(90deg);
    color: var(--theme-colour);
}
.mobile-nav > ul > li {
    position: relative;
    border-bottom: 0px solid #d4d4d4;
    padding: 10px 0;
    display: block;
}
.mobile-nav > ul > li:not(:last-child) {
    border-bottom: 1px solid #5b5b5b;
}
.mobile-nav > ul li > a {
    font-size: 14px;
    line-height: 26px;
    text-transform: capitalize;
    color: #fff;
}
.mobile-nav > ul > li > a {
    font-size: 16px;
    line-height: 30px;
}
.mobile-nav > ul > li.menu-item-has-children > ul.sub-menu {
    padding-left: 25px;
    padding-top: 10px;
    padding-bottom: 5px;
    position: absolute;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translatey(15px);
    -webkit-transform: translatey(15px);
    -moz-transform: translatey(15px);
    -o-transform: translatey(15px);
    border-top: 1px solid #5b5b5b;
    margin-top: 8px;
}
.mobile-nav > ul > li.menu-item-has-children.active > ul.sub-menu {
    position: relative;
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -o-transform: translatey(0);
    transition: .5s;
}
.mobile-nav > ul > li.menu-item-has-children.active > ul.sub-menu li {
    padding: 5px 0;
    position: relative;
}
.res-log img {
    width: auto;
    max-width: 200px;
}
.mobile-nav > ul > li.menu-item-has-children.active > ul.sub-menu li:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: -13px;
    background-color: var(--theme-colour);
}
.res-log {
    margin-bottom: 30px;
}
.res-rights p{
    color: #d6d6d6;
    font-weight: bold;
    letter-spacing: 5px;
    margin-top: 30px;
}

.mobile-nav.open {
    transform: translateX(0) !important;
    z-index: 33333333;
    box-shadow: 3px 3px 39px -4px rgba(0,0,0,0.75);
-webkit-box-shadow: 3px 3px 39px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 3px 3px 39px -4px rgba(0,0,0,0.75);
}
li.menu-item-has-children.active {
    background-color: transparent;
}
.mobile-nav a#res-cross:before {
    content: "\f057";
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    position: absolute;
    top: 35px;
    right: 20px;
    color: #fff;
    font-size: 28px;
}
.bar-menu i {
    color: black;
    background-color: transparent;
    font-size: 24px;
}
.bar-menu {
    z-index: 1;
    display: none;
}
.responsive-bar-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.bar-menu i {
    margin-right: 20px;
    font-size: 26px;
}
.helpline {
    display: flex;
    align-items: center;
}
.helpline a {
    display: block;
}
.helpline a:hover {
    color: var(--theme-colour);
}
.helpline svg {
    width: 40px;
    height: auto;
    margin-right: 14px;
    filter: brightness(0) saturate(100%) invert(93%) sepia(68%) saturate(7393%) hue-rotate(338deg) brightness(97%) contrast(103%);
}
.helpline .primary-btn {
    margin-left: 30px;
    color: #000;
    font-size: 16px;
}
.helpline span {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}
.helpline a {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}
/* 05. btn */
.primary-btn{
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
}
.primary-btn::before {
  content: "";
  width: 0;
  height: 400%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--theme-colour);
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}
.primary-btn:hover {
  color: #000 !important;
}
.primary-btn:hover::before {
  width: 150%;
}
.primary-btn {
    position: relative;
    padding: 16px 40px;
    background-color: var(--theme-colour);
    color: #000 !important;
    border: 1px solid var(--theme-colour);
    max-width: -moz-fit-content;
    max-width: fit-content;
    border-radius: 41px;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
}
.primary-btn::before {
  background: #17166a;
}
.primary-btn:hover {
    color: #ffffff !important;
}
/* Go To Top */
#progress {
  z-index: 1111;
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 60px;
  width: 60px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#progress-value {
  display: block;
  height: calc(105% - 10px);
  width: calc(105% - 10px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
}
span#progress-value i {
    font-size: 18px;
}
ul.social-media {
    display: flex;
}
/* hero-section */
.hero-section {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 110px;
    margin-bottom: 0px;
}
.hero-slider.owl-carousel.owl-loaded.owl-drag {
    display: flex;
    justify-content: flex-end;
    width: 47%;
    margin-left: auto;
    margin-right: 0;
    position: absolute;
    right: 0;
    bottom: 0px;
	left:auto;
	opacity:0.6;
}
.hero-section:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #17166a;
    opacity: .9;
    top: 0;
    left: 0;
    content: "";
}
.hero-text {
    position: relative;
    z-index: 2;
    padding-top: 130px;
}
.hero-text h1 {
    font-size: 65px;
    font-weight: 800;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 20px;
    margin-bottom: 0;
}
.hero-text h4 {
    font-size: 53px;
    font-family: var(--common-font);
    color: var(--theme-colour);
}
.hero-text p {
    color: #fff;
    font-size: 18px;
}
.hero-text img.arrows {
    position: absolute;
    right: 0;
    top: 31%;
    animation: run 10s infinite;
}
@keyframes run {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(14px);
  }
  100% {
    transform: translateX(0px);
  }
}
.hero-section .hero-img {
    position: relative;
	overflow:hidden;
}
.hero-slider .owl-item img {
    transform: scale(1);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
}
.hero-slider .owl-item.active img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.tour-details {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255, 0.05);
    margin-top: 70px;
    justify-content: space-between;
    padding-left: 30px;
}
.tour-details div.mpStyle label {
    background: white;
    border-radius: 5px;
}
.tour-details-text {
    display: flex;
    align-items: self-start;
}
.tour-details .seach-slider div.mpStyle select.formControl, .tour-details .seach-slider div.mpStyle input#ttbm_date-input_from, .tour-details .seach-slider div.mpStyle input#ttbm_date-input_to {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    outline: 0;
    font: inherit;
    width: 15rem;
    padding: 0.5rem 4rem 0.5rem 1rem;
    background: var(--arrow-icon) no-repeat right 0.8em center / 1.4em, linear-gradient(to left, rgb(0 0 0 / 30%) 3em, rgb(255 255 255 / 64%) 3em);
    color: black;
    border-radius: 0.25em;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
	line-height:1.2;
}
.tour-details .seach-slider .ttbm_calendar-icon{
	background:none;
}
.tour-details-text input {
    border: 0;
    width: fit-content;
    display: block;
    font-weight: 500;
    outline: none;
}
.tour-details-text i {
    margin-right: 16px;
    font-size: 20px;
    margin-top: 4px;
}
.tour-details-text span {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #8f8f8f;
}
.tour-details-text h5 {
    font-size: 16px;
    font-weight: 600;
    padding-top: 5px;
}
.tour-details-search {
    background-color: var(--theme-colour);
    padding: 35px;
}
.tour-details-search svg {
    margin-right: 5px;
}
.tour-details-search a {
    font-weight: 800;
    text-transform: uppercase;
}
.tour-details-text {
    position: relative;
}
.tour-details-text {
    width: 17%;
}
.tour-details-text .nice-select.Advice {
    width: 85%;
    height: 23px;
    border: 0;
    color: #000;
    line-height: 23px;
    padding: 0;
}
.tour-details-text .nice-select.Advice span {
    color: #000;
    font-weight: 500;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #fad715;
}
.tour-details-text .nice-select .list {
    width: 100%;
    border-radius: 0;
}
.tour-details .tour-details-text:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #cccccc;
    right: -12%;
}
.tour-details .nice-select:after {
    display: none;
}
.tour-details .tour-details-text.end:before {
    display: none;
}
/* heading */
.heading {
    text-align: center;
    padding-bottom: 50px;
}
.heading h3 {
    font-size: 50px;
    font-family: var(--common-font);
    color: var(--theme-colour);
}
.heading span {
    font-size: 21px;
    padding-top: 4px;
    display: block;
    color: #444;
}
.heading h2 {
    font-weight: 800;
    padding-top: 13px;
}
/* exploring */
.exploring span {
    font-size: 14px;
    font-weight: 800;
    color: #888888;
    text-transform: uppercase;
}
.exploring-img {
    position: relative;
}
.exploring:hover img {
    transform: scale(1.1);
}
ul.star {
    display: flex;
    font-size: 13px;
    color: #fad715;
    margin-right: 7px;
}
ul.star li {
    margin-right: 3px;
}
.exploring {
    width: 93%;
    margin: auto;
}
.exploring h4 {
    font-size: 26px;
    font-weight: 700;
    padding-top: 0px;
    padding-bottom: 10px;
}
.exploring h5 {
    font-size: 35px;
    font-weight: bold;
}
.exploring h5 span {
    margin-right: 12px;
    text-transform: capitalize;
}
.exploring-img span {
    position: absolute;
    bottom: 7px;
    text-align: center;
    background-color: #262626cc;
    color: #fff;
    left: 4px;
    width: 98%;
    padding: 3px;
    font-weight: 600;
    font-size: 13px;
}
.exploring-img img {
    width: 100%;
}
.exploring-text {
    padding: 30px;
    border: 1px solid #dfdfdf;
    padding-bottom: 20px;
    border-top: 0;
}
.exploring ul.list-style {
    margin-top: 16px;
    margin-bottom: 26px;
}
.exploring ul.list-style li {
    position: relative;
    padding-left: 18px;
    padding-bottom: 4px;
}
.exploring ul.list-style li:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #989898;
    left: 0;
    top: 8px;
}
.exploring-text a {
    border: 1px solid var(--theme-colour);
    width: 44px;
    height: 44px;
    position: absolute;
    right: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 15px;
    right: 15px;
}
.exploring-text a:hover {
    background-color: var(--theme-colour);
}
.exploring-text {
    position: relative;
}
.exploring-slider .owl-item.active.center .exploring .exploring-text a,
.exploring:hover .exploring-text a {
    background-color: var(--theme-colour);
}
.exploring-slider .owl-item.active.center .exploring .exploring-text {
    border-color: var(--theme-colour);
}
.exploring:hover .exploring-text {
    border-color: var(--theme-colour);
}
/* explore */
.explore {
    background-color: #17166a;
    padding: 40px;
    padding-bottom: 30px;
    position: relative;
    margin-bottom: 90px;
}
section .explore img {
    position: absolute;
    right: 10%;
    top: 28%;
    transform: rotate(62deg);
    border: 5px solid var(--theme-colour);
    box-shadow: 0px 10px 21px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 10px 21px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 10px 21px 0px rgba(0,0,0,0.15);
}
.explore:hover img {
    transform: rotate(55deg);
}
.explore h5 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.explore a {
    color: #fff;
    font-size: 24px;
    display: block;
    font-weight: 800;
    padding-top: 5px;
    padding-bottom: 20px;
}
.explore a:hover {
    color: var(--theme-colour);
}
.explore h3 {
    font-size: 30px;
    font-family: var(--common-font);
    color: var(--theme-colour);
}
.explore-price {
    width: 120px;
    height: 120px;
    background-color: #fad715;
    border-radius: 50%;
    text-align: center;
    padding-top: 40px;
    margin-top: 12px;
}
.explore-price h6 {
    font-size: 30px;
    font-weight: 800;
    line-height: 18px;
}
.explore-price h6 sup {
    font-size: 16px;
}
.explore-price span {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 900;
    color: #000;
}
/* confidence */
.confidence {
    text-align: center;
    border: 1px solid #e1e1e1;
    padding: 40px 22px;
    background: #fff;
}
.confidence:hover {
    border-color: var(--theme-colour);
    box-shadow: 0px 10px 21px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 10px 21px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 10px 21px 0px rgba(0,0,0,0.15);
}
.confidence h3 {
    font-size: 16px;
    padding-top: 24px;
    font-weight: 600;
    line-height: 24px;
}
.confidence:hover img {
    transform: scale(.95);
}
.confidence i img {
    width: 80px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(93%) sepia(68%) saturate(7393%) hue-rotate(338deg) brightness(97%) contrast(103%);
}
.confidence:hover i svg {
    transform: scale(.95);
}
.confidence {
    height: 260px;
}
/**/
.heading.two {
    text-align: left;
    width: 92%;
    padding-bottom: 40px;
}
.heading.two p {
    padding-top: 10px;
}
/* check-lest */
ul.check-lest {
    margin-right: -18%;
    background-color: #fff;
    padding: 60px 60px;
    z-index: 11;
    position: relative;
    margin-left: 18%;
    box-shadow: 10px 10px 53px 0px rgba(0,0,0,0.15);
-webkit-box-shadow: 10px 10px 53px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 10px 10px 53px 0px rgba(0,0,0,0.15);
}
ul.check-lest li {
    display: flex;
    align-items: center;
    color: #444444;
}
ul.check-lest li:not(:last-child) {
    padding-bottom: 10px;
}
ul.check-lest li i {
    padding-top: 2px;
    margin-right: 10px;
    font-size: 19px;
    color: var(--theme-colour);
}
.travel-img {
    width: 95%;
}
.travel-img img {
    width: 100%;
}
.travel-img img:hover {
    transform: scale(1.1);
}
/* country-tour */
.country-tour {
    padding-top: 90px;
}
.country-tour-from {
    padding: 30px;
    padding-top: 40px;
}
.country-tour-from {
    position: relative;
    margin-bottom: 25px;
    background-size: cover;
    background-repeat: no-repeat;
}
.country-tour-from:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0004;
    right: 0;
    top: 0;
}
.country-tour-from:hover:before {
    background-color: #0007;
}
.country-tour-from a h4 {
    font-size: 30px;
    color: #fff;
    position: relative;
    font-weight: 800;
    text-transform: capitalize;
}
.country-tour-from a h4:hover {
    color: var(--theme-colour);
}
.country-tour-from span {
    font-size: 16px;
    background-color: var(--theme-colour);
    padding: 2px 16px;
    display: inline-block;
    margin-top: 76px;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
    z-index: 1;
}
.discount-offer {
    display: flex;
    align-items: center;
    padding-top: 80px;
}
.discount-offer h3 {
    font-family: var(--common-font);
    color: var(--theme-colour);
    font-size: 50px;
}
.discount-offer img {
    margin-right: -10%;
}
.discount-offer h2 {
    font-size: 99px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 98px;
    padding-top: 12px;
}
.discount-offer h5 {
    color: #fff;
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
}
.discount-offer p {
    color: #fff;
    padding-top: 24px;
    padding-bottom: 40px;
}
/**/
.sponsers-text {
    text-align: center;
}
.sponsers-text h3 {
    font-weight: 800;
}
ul.sponsers-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
ul.sponsers-item li {
    background-color: #fff4f4;
    padding: 35px 56px;
}
ul.sponsers-item li:hover img {
    transform: scale(0.95);
}
ul.sponsers-item li:nth-child(2){
    background-color: #daffdc;
}
ul.sponsers-item li:nth-child(3){
    background-color: #fce9c2;
}
ul.sponsers-item li:nth-child(4){
    background-color: #fff2ac;
}
ul.sponsers-item li:nth-child(5){
    background-color: #e3f0e6;
}
/* experience */
section .experience-img img {
    border-radius: 50%;
    margin-right: 20px;
    border: 1px solid var(--theme-colour);
    padding: 5px;
}
.experience-img {
    display: flex;
    align-items: center;
    margin-top: 24px;
    position: relative;
}
.experience-img h5 {
    font-size: 22px;
    color: #444;
    font-weight: 700;
}
.experience-img span {
    font-size: 14px;
    color: #444444;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.experience-img img.quote {
    background-color: #fad922;
    position: absolute;
    left: 16%;
    top: 0;
}
.experience {
    background-color: #fff;
    padding: 30px 50px;
    margin-top: 40px;
    width: 95%;
    text-align: left;
}
.experience > h5 {
    font-weight: 600;
    font-size: 24px;
}
section .owl-carousel .owl-item img {
    width: auto;
}
.section-experience {
    position: relative;
    padding-bottom: 50px;
}
.section-experience img.reviews-img {
    position: absolute;
    right: 0;
    bottom: 0;
    top:0;
}
.tripadvisor {
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 50px;
    padding: 10px;
    display: flex;
    align-items: center;
    width: fit-content;
    padding-right: 50px;
    margin-left: auto;
}
.tripadvisor img {
    margin-right: 14px;
}
.tripadvisor h3 {
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    padding-bottom: 4px;
}
/* blog */
.blog-text {
    position: relative;
}
.bolgpost .blog:hover img {
    transform: scale(1.1);
}
.bolgpost .blog img {
    width: 100%;
}
.bolgpost .blog h5 span {
    display: block;
    font-size: 14px;
    line-height: 20px;
}
.bolgpost .blog h5 {
    position: absolute;
    background-color: var(--theme-colour);
    margin: 0;
    font-size: 45px;
    font-weight: bold;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    width: 114px;
    height: 114px;
    z-index: 1;
    padding-top: 27px;
    right: 20px;
    top: -100px;
    text-transform: capitalize;
}
.blog:hover h5 {
    background-color: #17166a;
    color: #fff;
}
.blog-text > span {
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-top: 14px;
}
.blog-text > span a:hover {
    color: #17166a;
}
.blog-text .boder {
    background-color: #acacac;
    width: 50px;
    height: 2px;
    margin-right: 14px;
}
.blog-text h2 a {
    font-size: 22px;
    font-weight: 700;
    display: block;
    padding-top: 10px;
}
.blog-text h2 {
    line-height: 26px;
    padding-bottom: 20px;
}
.blog-text > a {
    border: 1px solid #2323;
    display: flex;
    width: fit-content;
    padding: 2px 15px;
    border-radius: 40px;
    align-items: center;
    margin-top: 10px;
    color: #444;
}
.blog-text > a h6 {
    margin-right: -102px;
    opacity: 0;
    font-weight: 800;
    text-transform: uppercase;
}
.blog-text > a:hover {
    border-color: var(--theme-colour);
}
.blog-text > a:hover h6 {
    margin-right: 0px;
    margin-left: 10px;
    opacity: 1;
}
.google-play {
    margin-top: 30px;
}
.google-play img {
    margin-right: 10px;
    border-radius: 10px;
}
.google-play img:hover {
    transform: scale(1.05);
}
.table > thead tr th {
    padding: 20px 34px;
    font-size: 12px;
    background-color: var(--theme-colour);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.table>tbody td.align-middle {
    padding: 20px 35px;
}
.table > tbody tr {
    border-bottom: 1px solid transparent;
}
.table > tbody tr:hover {
    border-bottom: 1px solid var(--theme-colour);
}
.table>tbody td.align-middle img {
    border-radius: 50%;
    margin-right: 15px;
    max-width: 55px;
}
.table>tbody td.align-middle {
    font-weight: 500;
    text-transform: uppercase;
}
.table>tbody td.align-middle .tour-name {
    font-weight: 800;
}
.table > tbody tr:hover .end-date a > h6 {
    opacity: 1;
    margin-left: 10px;
}
.table > tbody tr:hover .end-date a {
    width: 85%;
    border-color: var(--theme-colour);
}
.end-date a {
    border: 1px solid #b3b3b3;
    padding: 5px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    width: 56px;
}
.end-date > a h6 {
    margin-right: -102px;
    opacity: 0;
    font-weight: 800;
    text-transform: uppercase;
}
.end-date a svg {
    filter: brightness(0) saturate(100%) invert(48%)
     sepia(0%) saturate(822%) hue-rotate(142deg) brightness(91%) contrast(85%);
}
tbody, td, tfoot, th, thead, tr {
    border-style: none;
}
.table {
    --bs-table-striped-bg: #f2f6f8;
    margin-bottom: 0;
}
.table > tbody tr:hover .end-date i {
    background-color: var(--theme-colour);
    border-color: var(--theme-colour);
}
.table-responsive {
    box-shadow: 0px 0px 30px -1px rgba(0,0,0,0.10);
    -webkit-box-shadow: 0px 0px 30px -1px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 0px 30px -1px rgba(0,0,0,0.10);
}
.login a,.blog-text h2 a,
.content-header a,.customer-support .helpline a {
    -webkit-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.2s;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.2s;
    padding: 0.1% 0px;
    background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
    background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    background-repeat: no-repeat;
    text-decoration: none;
    display: inline;
}
.login a:hover,.blog-text h2 a:hover,
.content-header a:hover,.customer-support .helpline a:hover {
    background-size: 100% 2px;
}
section .experience-slider button.owl-dot,
section .exploring-slider button.owl-dot{
    width: 45px;
    height: 3px;
    background-color: #b8b8b8;
    margin-left: 10px;
}
section .experience-slider button.owl-dot.active, 
section .exploring-slider button.owl-dot.active {
    width: 45px;
    height: 3px;
    background-color: var(--theme-colour);
}
.owl-theme .owl-dots .owl-dot span {
    display: none !important;
}
.owl-dots {
    text-align: center;
    margin-top: 35px;
}
.experience-slider .owl-dots {
    text-align: left;
}
.booking-img {
    position: relative;
}

.booking-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 82%;
    background-color: #ebebeb;
    bottom: 0;
}
.booking-img img {
    position: relative;
    z-index: 1;
    animation: run 8s infinite;
}
/* footer */
footer.style5 {
    position: relative;
    background-size: cover;
	padding-top:80px;
}
footer:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #17166a;
    top: 0;
    left: 0;
    opacity: .9;
    content: "";
}
.customer-support {
    display: flex;
    position: relative;
}
.customer-support h4 {
    color: #fff;
    font-weight: 700;
    padding-bottom: 2px;
    font-size: 24px;
}
.customer-support .follow-us {
    margin-left: 60px;
    border-left: 1px solid #50507c;
    padding-left: 60px;
}
.customer-support .follow-us h5 {
    color: #fff;
    padding-bottom: 18px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
}
.customer-support .follow-us a {
    width: 60px;
    height: 60px;
    font-size: 18px;
    background-color: #363f82;
    color: #fff;
}
.customer-support span {
    padding-bottom: 18px;
    display: block;
    color: #939393;
    font-weight: 800;
    text-transform: uppercase;
}
.customer-support .helpline a {
    font-size: 30px;
    color: var(--theme-colour);
}
.customer-support ul.social-media a:hover {
    color: #000;
}
.subscribe {
    position: relative;
    padding: 28px 28px 0 28px;
    background-color: var(--theme-colour);
}
/* change form with div */
div.subscribe h3 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 20px;
}
div.subscribe input {
    width: 100%;
    border: 0;
    height: 60px;
    padding-left: 20px;
}
div.subscribe input.primary-btn {
    border-radius: 0;
    position: absolute;
    right: 5px;
    bottom: 43px;
    padding: 13px 26px;
    border: 1px dashed;
    height: 52px;
    top: 6px;
}
div.subscribe p {
    padding-bottom: 10px;
    padding-top: 2px;
}
/* widget-title */
.widget-title {
    position: relative;
}
.widget-title ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer.style5 .widget-title h3 {
    color: #fff;
    position: relative;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 0;
    display: inline-block;
    margin-bottom: 40px;
    text-transform: uppercase;
}

footer.style5 .widget > p + .social-links2 {
    margin-top: 0;
}

.widget-title h3:before {
    width: 55px;
    content: "";
    background-color: var(--theme-colour);
    height: 4px;
    position: absolute;
    bottom: -8px;
}
.widget-title li a, .list-link.widget-title li a {
    color: #cacaca;
    margin-left: 5px;
    padding-bottom: 6px;
    font-family: 'Exo 2';
    font-weight: 400;
}
.widget-title li a:hover {
    color: var(--theme-colour);
}
footer.style5 .widget-title li {
    width: 50%;
    padding-bottom: 10px;
    font-size: 1rem !important;
}
.widget-title li i {
    color: var(--theme-colour);
}
.widget-title h4 {
    color: var(--theme-colour);
    font-weight: 800;
    font-size: 16px;
}
.widget-title p {
    padding-bottom: 16px;
    color: #cacaca;
    width: 80%;
}
.widget-title h4 a {
    color: #cacaca;
    margin-left: 10px;
}
.widget-title h4 a:hover {
    color: var(--theme-colour);
}
.footer-bootom {
    padding-top: 90px;
    margin-top: 50px;
    border-top: 1px solid #50507c;
    position: relative;
    padding-bottom: 80px;
    border-bottom: 1px solid #50507c;
}
footer.style5 .gallery{
    display: flex;
    flex-wrap: wrap;
}

footer.style5 .gallery-item {
    width: 130px;
    height: 80px;
}
footer.style5 .gallery-item img, footer.style5 .gallery-item a {
    width: 100%;
    height: 80px;
}
footer.style5 .gallery-item dt{
    width: 32%;
    height: 80px;
    position: relative;
    margin-bottom: 10px;
}

footer.style5 .gallery-item dt:before {
    background-color: #fad715e0;
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    bottom: 0;
}
footer.style5 .gallery-item dt:hover:before {
    height: 100%;
}
footer.style5 .gallery-item dt{
    width: 100%;
}
footer.style5 #gallery-1 .gallery-item {
    margin: 5px 0 5px 0;
}
footer.style5 .gallery-item dt i {
    position: absolute;
    z-index: 1;
    color: #000;
    transform: scale(0) translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.footer-bottom-text {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}
.footer-bottom-text p {
    color: #cacaca;
}
ul.image-gallery li:hover i {
    transform: scale(1) translate(-50%, -50%);
}
ul.image-gallery a {
    margin: 0 !important;
}
/**/
.confidence i svg,.end-date a > h6,.end-date a,.google-play img,
ul.image-gallery li:before,ul.image-gallery li i,.helpline a,.exploring-text,.table > tbody tr,
.exploring img,.exploring-text a,.explore img,ul.social-media a,.widget-title li a,.end-date i,.blog-text > span a,
header ul.social-media a,.blog-text > a h6,.blog-text > a,.blog img,.explore a,.widget-title h4 a,.blog h5,
.travel-img img,.confidence,.confidence img,ul.sponsers-item li img,.country-tour-from a h4,.country-tour-from:before {
    transition: .4s ease-in-out;
}
.experience-img img {
    width: auto !important;
}

ul.star li {
    color : #ffd800;
}
section .exploring-img figure img {
    width: 100% !important;
}

.navbar ul li ul li ul li{
    visibility: hidden;
    display: none;
    opacity: 0;
}

.navbar ul li ul li.menu-item-has-children:hover ul li {
    visibility: visible;
    display: block;
    opacity: 1;
    box-shadow: 0px 10px 10px 3px hsl(0deg 0% 0% / 16%);
}

.navbar ul li ul li.menu-item-has-children > a:before {
    right: 40px;
    top: 14px;
}
.style3 nav ul ul li.menu-item-children > a:before, .style3 nav ul ul li.menu-item-has-children > a:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 25px;
    top: 15px;
    color: inherit;
    font-weight: 700;
    left:auto;
}
footer.style5 .widget-title li {
    width: 50%;
    padding-bottom: 10px;
    font-size: 1rem !important;
    margin-top: 0;
}

footer.style5 .widget ul li > a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 15px;
}
.sticky-menu ul ul .menu-item-children > a:before, .sticky-menu ul ul li.menu-item-has-children > a:before {
    left: auto !important;
    right: 1.25em;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    color: inherit;
    font-weight: 700;
    top:15px;
}
footer.style5 .copyright a {
    font-weight: 800;
}
.seach-slider .ttbm_top_filter input::placeholder {
    color: #000 !important;
	font-weight:normal;
}
.seach-slider div.ttbm_top_filter .formControl {
    border-radius: 0;
    min-width: 200px;
    font-weight: normal;
    line-height: 1.5 !important;
    border: none;
    padding: 1.02rem 1rem 0.5rem 1rem;
    border-radius: 5px;
}