@font-face {
    font-family: 'roboto';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'roboto-medium';
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: 'roboto-thin';
    src: url('../fonts/Roboto-Thin.ttf');
}

@font-face {
    font-family: 'oswald';
    src: url('../fonts/Oswald-Regular.ttf');
}

:root {
    --theme-color-blue: #034B9C;
    --theme-color-red: #E51C24;
    --theme-color-white: white;
    --theme-color-grey: #504d4d;
    --default-font-family: 'roboto', sans-serif;
    --medium-font-family: 'roboto-medium', sans-serif;
    --thin-font-family: 'roboto-thin', sans-serif;
    --h1-font-family: 'oswald', sans-serif;
    --default-font-size: 15px;
}

body {
    font-family: var(--default-font-family);
    font-size: var(--default-font-size);
    font-weight: 300;
}

ul, ol, p {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5 {
    font-family: var(--h1-font-family);
    font-weight: 300 !important;
    margin-bottom: 20px;
}

h5 {
    font-weight: bold;
}

strong {
    font-weight: bold;
}

.theme-btn-one {
    background-color: var(--theme-color-red);
    color: var(--theme-color-white);
    width: 100%;
    border-radius: 0;
    text-transform: uppercase;
    border: 1px transparent solid;
}

.theme-btn-one:hover,
.theme-btn-one:focus {
    border-color: #B7B7B7;
    transition: 0.5s;
}

.theme-btn-two {
    border-radius: 0;
    text-transform: uppercase;
    border: 1px #000 solid;
    margin: 40px 0 0 0;
    background: none;
    padding: 8px 2em;
}

.theme-btn-two:hover,
.theme-btn-two:focus {
    color: var(--theme-color-white);
    transition: 0.5s;
}

.close {
    --color: var(--theme-color-red);
    --hover: var(--theme-color-white);
}

.close2 {
    --color: white;
    --hover: var(--theme-color-blue);
}

.close:hover, .close:focus {
    box-shadow: inset -8em 0 0 0 var(--hover), inset 8em 0 0 0 var(--hover);
}

.close2:hover, .close2:focus {
    box-shadow: inset -8em 0 0 0 var(--hover), inset 8em 0 0 0 var(--hover);
}

header>.top-section {
    background: var(--theme-color-blue);
    color: var(--theme-color-white);
    padding: 8px 0;
}

header .logo {
    position: relative;
}

header .logo img {
    position: absolute;
    top: -8px;
    left: 15px;
    width: 165px;
    height: auto;
    z-index: 100;
    border: 10px white solid;
}

header .header-info {
    padding: 35px 0 0 0;
}

header .info-box-item {
    position: relative;
    margin: 0 20px;
    padding-left: 50px;
}

header .info-box-item::before {
    position: absolute;
    left: 38px;
    content: '';
    width: 1px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #CACACA;
}

header .info-box-item i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--theme-color-red);
}

header .info-box-item span {
    display: block;
    color: #444;
    font-size: 14px;
    margin-bottom: 2px;
}

header .info-box-item a {
    display: block;
    color: var(--theme-color-grey);
    font-size: 15px;
    font-weight: 600;
}

.social-media a {
    background-color: var(--theme-color-blue);
    display: inline-block;
    color: var(--theme-color-white);
    margin: 0 3px;
    padding: 4px 10px;
    border-radius: 5px;
}

.social-media a:hover {
    background-color: var(--theme-color-red);
}

.social-media i {
    font-size: 20px;
}

.navbar {
    margin-top: 30px;
    padding-bottom: 0;
    background-color: #EFEFEF;
    border-top: 1px #DBDBDB solid;
}

.navbar .container {
    position: relative;
}

.google-translator-container {
    position: absolute;
    right: 12px;
    top: 5px;
}

.navbar-nav .nav-item {
    position: relative;
    margin-right: 20px;
}

.navbar-nav .nav-item .active {
    color: var(--theme-color-red);
}

.navbar-nav .nav-link {
    padding: 10px 0 13px 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    color: var(--theme-color-red);
}

.navbar-nav .nav-item .dropdown-toggle {
    padding-left: 0 !important;
    padding-right: 20px !important;
    position: relative;
}

.navbar-nav .dropdown .dropdown-toggle::after {
    content: '\F0140';
    font-family: "Material Design Icons", sans-serif;
    border: none;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 48%;
    transform: translateY(-52%);
}

.navbar-nav .dropdown .dropdown-menu .dropdown-toggle::after {
    content: '\F0142';
    font-family: "Material Design Icons", sans-serif;
    border: none;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 48%;
    transform: translateY(-52%);
}

.navbar-nav .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    min-width: 220px;
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transform: translateY(10px);
    transition-duration: 0.6s;
    -webkit-transition-duration: 0.6s;
    top: 80px;
    background-color: white;
}

.navbar-nav .custom-dropdown,
.navbar-nav .custom-dropdown .dropdown-menu {
    top: 37px !important;
}

.navbar-nav .dropdown-menu li {
    padding: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
}

.navbar-nav .dropdown-menu li a,
.navbar-nav .dropdown-menu li .dropdown-menu li a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    font-family: var(--medium-font-family);
    color: #595959;
    font-weight: normal;
}

.navbar-nav .dropdown-menu li a:hover,
.navbar-nav .dropdown-menu li .dropdown-menu li a:hover {
    color: var(--theme-color-red);
}

.navbar-nav .dropdown-menu li:last-child a,
.navbar-nav .dropdown-menu .dropdown-menu li:last-child a {
    border-bottom: none;
}

.navbar-nav .nav-item .dropdown-menu:hover,
.navbar-nav .dropdown .nav-link:hover+.dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(-38px);
}

.navbar-nav .dropdown-menu li .dropdown-menu {
    left: 99%;
    top: -11px;
}

.navbar-nav .dropdown .dropdown-item:focus {
    background-color: white;
}

header .payment-link a {
    color: var(--theme-color-blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.banner-section {
    margin-bottom: 40px;
}

/* .jarallax {
    position: relative;
    z-index: 0;
    min-height: 650px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jarallax.domestic {
    padding-top: 0
}

.jarallax>.jarallax-img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
} */

/* .jarallax.overlay:before {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(125, 185, 232, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(125, 185, 232, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(125, 185, 232, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#007db9e8', GradientType=0);
    opacity: 0.2;
} */


/* .jarallax .content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
} */

.banner-slider-container {
    width: 100%;
    height: 500px;
    position: relative;
}

.banner-slider-image {
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.banner-slider-image::before {
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner-slider-btn .bsb-btn {
    position: absolute;
    background: var(--theme-color-blue);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.banner-slider-btn .bsb-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.banner-slider-btn .bsb-btn i {
    font-size: 30px;
    color: #fff;
}

.banner-slider-btn .bsb-btn:hover i {
    color: #000;
}

.banner-slider-btn .bsb-prev-btn {
    left: 15px;
}

.banner-slider-btn .bsb-next-btn {
    right: 15px;
}

.banner-slider-image small {
    font-size: 18px;
}

.banner-slider-image a {
    width: 15%;
    padding: 10px 15px;
}

/* .banner-content {
    text-align: center;
    color: var(--theme-color-white);
}

.banner-content h1 {
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 10px 0 30px 0;
}

.banner-content p {
    font-family: var(--thin-font-family);
    font-size: 20px;
} */


/* .banner-content a {
    display: inline-block;
    padding: 8px 30px;
    color: var(--theme-color-white);
    border: 1px var(--theme-color-white) solid;
    border-radius: 0;
    margin: 0 5px;
}

.banner-content a:hover {
    background-color: var(--theme-color-white);
    color: #000;
} */

.section-gap {
    padding: 40px 0;
}

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

.section-title p {
    max-width: 60%;
    margin: 0 auto 20px auto;
}

.adjust-title h2 {
    margin-bottom: 10px;
}

.separator {
    position: relative;
    height: 15px;
    width: 100px;
    margin: 0 auto;
    text-align: center;
    margin-top: 14px;
}

.separator:before {
    position: absolute;
    content: '';
    left: 0;
    top: 6px;
    width: 20px;
    height: 1px;
    background-color: var(--theme-color-red);
}

.separator:after {
    position: absolute;
    content: '';
    right: 0;
    top: 6px;
    width: 20px;
    height: 1px;
    background-color: var(--theme-color-red);
}

.separator .dott {
    position: relative;
    width: 6px;
    height: 6px;
    top: -7px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--theme-color-red);
}

.adventures .btn {
    margin-top: 50px !important;
}

.home-intro h2 {
    margin-bottom: 25px;
}

.home-intro ul li {
    margin-left: 18px;
}

.intro .title p {
    font-size: 20px;
}

.mixcolor {
    width: 100%;
    background: -webkit-linear-gradient(190deg, var(--theme-color-red) 20%, black 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro .intro-text {
    margin-left: 30px;
}

.intro p {
    font-size: 16px;
    line-height: 30px;
}

.tours {
    background-color: #EFEFEF;
    padding: 80px 0;
    margin: 60px 0;
}

.view-more {
    margin: 20px 0;
    padding: 10px 0;
}

.bs-item {
    margin-bottom: 30px;
    height: 100%;
}

.bs-item .bs-content {
    display: flex;
    flex-direction: column;
    height: 94%;
    background: #fff;
    border: 1px #B9B9B9 solid;
}

.bs-thumb {
    overflow: hidden;
}

.bs-thumb img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    opacity: 1
}

.bs-thumb:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.bs-text {
    padding: 30px 10px 35px 10px;
    border-top: none;
}

.bs-text h5 {
    width: 70%;
    margin: 0 auto 15px auto;
    /*white-space: nowrap;*/
    /*text-overflow: ellipsis;*/
    /*overflow: hidden;*/
}

.bs-text .btn {
    margin-top: 20px;
    padding: 3px 1em;
}

.bs-item .price {
    font-size: 18px;
}

.bs-item .price span {
    font-family: var(--thin-font-family);
    color: var(--theme-color-red);
    font-size: 22px;
    font-weight: bold;
}

.whybox {
    text-align: center;
    margin-bottom: 20px;
}

.whybox span {
    font-size: 5vw;
    position: relative;
    color: #676767;
}

.whybox span::after {
    position: absolute;
    right: 0;
    content: '';
    width: 20px;
    height: 20px;
    background-color: rgba(229, 28, 36, 0.5);
    border-radius: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.whybox p {
    font-family: var(--thin-font-family);
    font-size: 18px;
    font-weight: bold;
}

.home-testimonials {
    background: rgba(0, 0, 0, 0) url("../images/background-2.jpg") repeat scroll 0 0;
    position: relative;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin: 80px 0 0 0;
    padding: 100px 0;
}

.home-testimonials:before {
    background-color: var(--theme-color-blue);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 50%;
    opacity: 0.96;
}

.testi-container {
    position: relative;
    z-index: 100;
}

.home-testimonials .section-title {
    text-align: left;
}

.home-testimonials .section-title p {
    max-width: 100%;
    margin-left: 0;
}

.home-testimonials .section-title .separator {
    margin: 0;
}

.home-testimonials .section-title .separator::before,
.home-testimonials .section-title .separator::after,
.home-testimonials .section-title .separator span {
    background: white;
    color: white;
}

.home-testimonials h2,
.home-testimonials h5,
.home-testimonials p,
.home-testimonials span {
    color: white;
}

.tb-item {
    position: relative;
    padding-left: 100px;
}

.tb-item img {
    width: 80px;
    height: 80px;
    background: #fff;
    padding: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid #eee;
}

.home-testimonials .tb-item {
    position: relative;
    padding: 20px 15px 20px 110px;
    background-color: #063971;
    margin-right: 10px;
}

.home-testimonials .tb-item img {
    left: 15px;
}

.tb-item h5 {
    font-weight: 600;
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 24px;
}

.tb-item span {
    font-family: var(--thin-font-family);
    font-size: 14px;
    font-weight: 500;
}

.tb-item p {
    font-family: var(--thin-font-family);
    font-size: 16px;
}

.popup-video {
    text-align: center;
}

.videolink {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FFCC00;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0 0 0 rgba(173, 172, 170, 0.4);
    box-shadow: 0 0 0 rgba(173, 172, 170, 0.4);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(207, 207, 204, 0.4);
        box-shadow: 0 0 0 0 rgba(207, 207, 204, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 20px rgba(204, 169, 44, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

.videolink:hover {
    background: #FCAB03
}

.videolink i {
    font-size: 35px;
    color: #000;
}

.popup-video img {
    position: relative
}

.popup-video .videolink {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
}

.custom-swiper-pagination .swiper-pagination-i {
    width: unset !important;
    margin-top: 40px;
}

.section-controller .swiper-pagination-i {
    margin-top: 20px;
}

.custom-swiper-pagination .swiper-pagination-i .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    background-color: var(--theme-color-red);
    opacity: .4;
    position: relative;
    margin: 5px 3px;
    border-radius: 0;
}

.custom-swiper-pagination .swiper-pagination-i .swiper-pagination-bullet::after {
    content: "";
    width: 30px;
    height: 5px;
    display: inline-block;
    position: absolute;
    left: -2px;
    top: -2px;
}

.custom-swiper-pagination .swiper-pagination-i .swiper-pagination-bullet-active {
    background-color: var(--theme-color-red);
    opacity: 1;
}

.home-testimonials .swiper-pagination-i .swiper-pagination-bullet,
.home-testimonials .swiper-pagination-i .swiper-pagination-bullet-active {
    background-color: #FC8326;
}

.latest-pkg {
    background-color: #EFEFEF;
    padding: 80px 0;
}

.latest-pkg .view-more {
    margin: 50px 0 10px 15px;
}

.destination {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0) url("../images/sm-banner3.jpg") repeat scroll 0 0;
    position: relative;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 80px 0;
}

.destination:before {
    background-color: #0A4260;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0.90;
}

.destination .container {
    position: relative;
}

.destination .section-title h2,
.destination .section-title p {
    color: white;
}

.destination .section-title .separator::before,
.destination .section-title .separator::after,
.destination .section-title .separator span {
    background: white;
    color: white;
}

.destination .title {
    margin-bottom: 40px;
}

.destination .col-12 {
    padding: 10px;
}

.desti-item {
    text-align: center;
}

.desti-effect {
    display: block;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 1);
}

.desti-img {
    display: block;
    width: 100%;
    height: 240px !important;
    object-fit: cover;
    object-position: 50% 50%;
    border: none;
    transform: scale(1);
    transition: all 1s;
    opacity: 0.7;
}

.desti-list:hover .desti-img {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 1);
}

.desti-text {
    top: 35%;
    left: 0;
    right: 0;
    position: absolute;
    text-align: center;
    text-transform: capitalize;
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.7);
    line-height: 35px;
    z-index: 9999;
}

.desti-text small {
    display: block;
    font-weight: 400;
    font-size: 18px;
}

.destination .view-more {
    padding: 10px 0;
    margin-top: 60px;
}

.custom-desti-text {
    width: 80%;
    margin: 0 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.custom-desti-text small {
    width: 80%;
    margin: 0 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.desti-overlay {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.5);
    background-size: 50px 50px;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.6s;
}

.desti-item:hover .desti-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.desti-overlay-text {
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50%;
    text-align: center;
    top: 70%;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateY(-20px);
    transition: all .3s;
}

.desti-item:hover .desti-overlay-text {
    transform: translateY(0px);
    opacity: 1
}

.destination .action {
    text-align: center
}

.newsletter {
    background: var(--theme-color-blue);
    padding: 25px 0;
    position: relative;
    z-index: 9999
}

.newsletter p {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin: 10px 0 0 0
}

.newsletter p i {
    font-size: 30px;
}

.newsletter p span {
    font-size: 25px;
    font-weight: 500
}

.newsletter .btn {
    margin: 0;
    height: 50px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    line-height: 13px;
    background: var(--theme-color-red);
    color: white;
    text-transform: uppercase;
    padding-left: 30px;
    padding-right: 30px;
}

.newsletter .form-control {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    border: 1px solid #fff;
    height: 50px;
}

footer {
    background: rgba(0, 0, 0, 0) url("../images/sm-banner3.jpg") repeat scroll 0 0;
    position: relative;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

footer:before {
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.top-footer .title {
    text-align: left
}

.footer-widget {
    margin: 70px 0 50px 0;
    position: relative;
    z-index: 100;
}

.footer-widget h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}

.location {
    margin-top: 20px;
}

.location h4 {
    color: #FFCC36;
    font-size: 19px;
}

.location ul {
    margin-top: 25px;
}

.location ul li {
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0 10px 50px;
    font-size: 15px;
    position: relative;
    margin: 10px 0;
}

.location ul li p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.location ul li i {
    width: 35px;
    height: 35px;
    border: 1px solid var(--theme-color-red);
    padding: 7px;
    font-size: 19px;
    color: var(--theme-color-white);
    line-height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.location ul li a {
    display: block;
    color: #ccc;
    font-size: 15px;
}

.location ul li a:hover {
    color: #eee
}

.footer-link ul {
    margin-top: 15px;
}

.footer-link ul li {
    list-style: none;
    padding: 5px 0;
    color: #fff;
    line-height: 25px;
}

.footer-link ul li a {
    color: #fff;
    font-size: 15px;
}

.footer-link ul li a:hover {
    color: #fff
}

.tripadvisor-block {
    margin-top: 70px;
}

.f-widget-info {
    margin-bottom: 30px;
}

.f-widget-info img {
    background: rgba(255, 255, 255, 1);
    padding: 10px;
}


/*Bottom Footer*/

.bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 100;
    padding: 20px 0;
}

.bottom-footer p {
    font-size: 15px;
    color: #ccc;
}

.delopedby p a {
    color: orange;
}

.delopedby p a:hover {
    color: #fff
}

.footer-social-link .social-link ul {
    margin-top: 14px;
    padding: 0;
}

.footer-social-link .social-link ul li {
    line-height: 25px;
}

.footer-social-link .social-link ul li a {
    border: 1px solid #9DC54B;
    padding: 10px 14px;
    border-radius: 3px;
    background: #9DC54B;
}

.footer-social-link .social-link ul li a:hover {
    background: #8AB039
}

.inner-page-gap {
    padding: 80px 0;
}

.inner-page-banner {
    position: relative;
    width: 100%;
    height: 200px;
    background: url('../images/inner-banner.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    color: #fff;
}

.inner-page-banner::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(3, 75, 156, 0.8);
    z-index: -1;
}

.inner-page-banner h2 {
    font-family: var(--h1-font-family);
    font-size: 40px;
    text-transform: uppercase;
}

.inner-page-banner ul li {
    list-style: none;
    display: inline-block;
    font-size: 15px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.inner-page-banner ul li i {
    position: absolute;
    top: 48%;
    transform: translateY(-52%);
    left: 0;
    font-size: 22px;
    color: #AFD5FE;
}

.inner-page-banner ul li::before,
.inner-page-banner ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.inner-page-banner ul li:first-child {
    padding-left: 28px;
}

.inner-page-banner ul li::after {
    content: '/';
    margin: 0 5px 0 10px;
}

.inner-page-banner ul li:last-child:after {
    content: '';
}

.inner-page p {
    font-size: 16px;
    line-height: 30px;
    color: #272727;
}

.introduction-content ul li {
    list-style: none;
    list-style-position: inside;
}

.introduction-content ul li::before {
    content: '\F013E';
    font-family: "Material Design Icons", sans-serif;
    color: var(--theme-color-red);
    font-weight: 20px;
    font-weight: bold;
    margin-right: 5px;
}

.gallery-box {
    position: relative
}

.gallery-box .gallery-img {
    transition: .35s;
}

.gallery-box .gallery-img>img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 10px;
}

.gallery-box .gallery-img .overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(359.58deg, #002133 0.39%, rgba(0, 33, 51, 0) 51.47%);
    border-radius: 10px;
    opacity: 0;
    transition: .35s;
    transform: scale(.4)
}

.gallery-box .gallery-img:hover .overlay {
    opacity: 1;
    transform: scale(1)
}

.gallery-section iframe {
    width: 100%;
    height: 300px;
}

.pagination {
    margin: 30px 0 0 0;
}

.pagination .page-item .page-link {
    color: var(--theme-color-red);
    cursor: pointer;
}

.pagination .page-item.active .page-link {
    color: var(--theme-color-white);
    background: var(--theme-color-red);
    border-color: var(--theme-color-red);
}

.pagination .page-item .page-link:hover {
    color: var(--theme-color-white);
    background-color: var(--theme-color-red);
    border-color: var(--theme-color-red);
}

.pagination .page-item .page-link:focus {
    color: var(--theme-color-white);
    background-color: var(--theme-color-red);
    border-color: var(--theme-color-red);
    box-shadow: none;
}

.testi-box {
    background-color: #E4E4E4;
    padding: 20px;
    margin-bottom: 20px;
}

.blog-page .news-wrap {
    margin-bottom: 30px;
}

.blog-page .news-wrap .post-thum,
.blog-detail-page .news-wrap .post-thum {
    position: relative;
    overflow: hidden;
}

.blog-page .news-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 50% 50%;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
}

.blog-page .news-wrap img:hover {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.blog-page .news-wrap .post-thum .batch,
.blog-detail-page .news-wrap .post-thum .batch {
    position: absolute;
    left: 0;
    top: 20px
}

.blog-page .news-wrap .post-thum .batch a,
.blog-detail-page .news-wrap .post-thum .batch a {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--theme-color-white);
    background-color: var(--theme-color-red);
    border-radius: 5px 0;
    padding: 4px 13px;
    display: inline-block;
    transition: .35s ease all;
}

.blog-page .news-wrap .post-thum .batch a:hover,
.blog-detail-page .news-wrap .post-thum .batch a:hover {
    color: var(--theme-color-red);
    background-color: var(--theme-color-white);
}

.blog-page .news-content h3 {
    margin-top: 15px;
}

.blog-page .news-content h3 a {
    color: black;
}

.blog-page .news-content p,
.blog-detail-page .news-content p {
    font-size: 16px;
}

.contact-img {
    border: 1px dashed var(--theme-color-red);
}

.contact-img iframe {
    width: 100%;
    height: 350px;
}

.custom-contact-info ul {
    list-style-position: inside;
    padding-left: 0;
}

.custom-contact-info ul li {
    list-style: none;
    color: #5E5E5E;
    font-size: 20px;
    line-height: 50px;
}

.custom-contact-info ul li a {
    color: #5E5E5E;
}

.custom-contact-info ul li i {
    color: var(--theme-color-red);
    font-size: 25px;
    margin-right: 10px;
}

.contact-form {
    background-image: url(../images/inner-banner.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 80px 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

.contact-form::before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.contact-form .section-title .separator::before,
.contact-form .section-title .separator::after,
.contact-form .section-title .separator span {
    background: white;
    color: white;
}

.contact-form h2,
.contact-form h5,
.contact-form p,
.contact-form span {
    color: white;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input {
    height: 50px;
    border-radius: 0;
    background: rgb(255, 255, 255, 0.8);
}

.contact-form textarea {
    background: rgb(255, 255, 255, 0.8);
    height: 150px;
    border-radius: 0;
}

.contact-form .theme-btn-one {
    padding-top: 10px;
    padding-bottom: 10px;
}

.contact-form .theme-btn-one:hover {
    background-color: var(--theme-color-white);
}

.team-item {
    margin: 15px 0px;
}

.team-img {
    overflow: hidden;
}

.team-img img {
    margin: 0;
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: 50% 50%;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.team-img img:hover {
    position: relative;
    z-index: 10;
    -webkit-transform: scale(1.1111);
    transform: scale(1.1111);
}

.team-info {
    background: #F9F9F9;
    padding: 10px;
    border: 1px solid #eee;
    border-top: 0;
    text-align: center;
}

.team-info h4 {
    font-size: 19px;
    color: #2C3038;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 0;
}

.team-info p {
    margin: 0;
    color: #50565c;
    font-size: 14px;
}

.team-info li {
    display: inline-block;
    padding: 10px 0px 15px 0px;
    font-size: 14px;
}

.team-info li a {
    color: #fff;
    transition: all 0.1s ease-in;
    padding: 10px;
    background: var(--theme-color-blue);
    border: 1px solid var(--theme-color-blue)
}

.team-info li a:hover {
    background: var(--theme-color-red);
    border: 1px solid var(--theme-color-red);
    color: #fff
}

.adv-page {
    padding-bottom: 80px;
}

.adv-page .image-col {
    margin-bottom: 15px;
}

.custom-banner-gap {
    margin-bottom: 80px;
}

.desc-gap {
    margin-bottom: 30px;
}

.custom-gap {
    height: 100px;
}

.pkg-top-info {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.pkg-top-info ul {
    text-align: center;
}

.pkg-top-info ul li {
    list-style: none;
    display: inline-block;
    padding: 0 20px;
    color: var(--theme-color-red);
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}

.pkg-top-info ul li strong {
    color: #000;
    font-weight: 300;
}

.pkg-top-info ul li i {
    font-size: 22px;
    color: #000;
    position: absolute;
    left: 0;
    top: 49%;
    transform: translateY(-51%);
    padding: 0;
    margin: 0;
    font-weight: 300;
}

.pkg-top-info ul li:first-child i {
    font-size: 20px;
}

.pkg-slider-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.pkg-slider-image {
    width: 100%;
    height: 450px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.pkg-slider-btn .pkg-btn {
    position: absolute;
    background: var(--theme-color-red);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.pkg-slider-btn .pkg-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.pkg-slider-btn .pkg-btn i {
    font-size: 30px;
    color: #fff;
}

.pkg-slider-btn .pkg-btn:hover i {
    color: #000;
}

.pkg-slider-btn .pkg-prev-btn {
    left: 15px;
}

.pkg-slider-btn .pkg-next-btn {
    right: 15px;
}

.pkgprice {
    margin: 40px 0 25px 0;
    font-family: var(--default-font-family);
}

.pkgprice span {
    color: var(--theme-color-red);
    font-weight: 400;
}

.introduction-content p {
    font-size: 16px;
}

.pkg-focus {
    margin: 25px 0;
    padding: 20px 20px 25px 20px;
    background: var(--theme-color-blue);
    border-left: 5px solid var(--theme-color-red);
    color: white;
}

.custom-tabs-wrapper {
    margin: 30px 0 100px 0;
}

.custom-tabs-wrapper ul {
    max-width: 100% !important;
    margin-bottom: 10px !important;
}

.custom-tabs-wrapper ul li::before {
    content: '' !important;
    display: none !important;
}

.custom-tabs-wrapper ul li button {
    width: 100%;
    color: #000;
    border: 1px var(--theme-color-red) solid !important;
    border-left-color: white !important;
    border-radius: 0 !important;
}

.custom-tabs-wrapper ul li:first-child button {
    border-left-color: var(--theme-color-red) !important;
}

.custom-tabs-wrapper ul li:hover button {
    color: var(--theme-color-red) !important;
}

.custom-tabs-wrapper ul li .active {
    background: var(--theme-color-red) !important;
    color: #fff !important;
    border-left-color: var(--theme-color-red) !important;
}

.custom-tabs-wrapper ul li .active:hover {
    color: white !important;
}

.custom-tabs-wrapper p {
    font-size: 16px !important;
}

.custom-tabs-wrapper .tab-content {
    padding: 20px;
    border: 1px #C4C4C4 solid;
}

.custom-tabs-wrapper .tab-content h4 {
    color: var(--theme-color-blue);
}

.custom-tabs-wrapper .tab-content strong {
    font-weight: 600;
}

.custom-tabs-wrapper .tab-content .include-exclude h4 {
    padding-bottom: 10px;
    border-bottom: 1px #E5E5E5 solid;
}

.include-exclude ul li {
    line-height: 30px;
}

.include-exclude ul li::before {
    content: '\F013E' !important;
    display: inline !important;
}

.custom-tabs-wrapper .tab-content .tab-gap {
    height: 40px;
}

.custom-tabs-wrapper .tab-content .location-map iframe {
    width: 100%;
    height: 400px;
}

.custom-tabs-wrapper .tab-content .location-map img {
    width: 100%;
    height: auto;
}

.custom-tabs-wrapper .tab-content .date-prices table {
    width: 100%;
}

.custom-tabs-wrapper .tab-content .date-prices table tr:first-child {
    font-weight: 600;
    border-bottom: 1px #C4C4C4 solid;
}

.custom-tabs-wrapper .tab-content .date-prices table tr {
    font-weight: 300;
    border-bottom: 1px #E5E5E5 solid;
}

.custom-tabs-wrapper .tab-content .date-prices table tr td {
    padding: 5px;
}

.pkg-widget {
    background-color: #EFEFEF;
    border: 1px #D7D7D7 solid;
    padding: 30px;
}

.pkg-header h2 {
    position: relative;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    z-index: 100;
}

.pkg-header h2 span {
    padding: 0 20px;
    background: #EFEFEF;
    display: inline-block;
}

.pkg-header h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 1px;
    border-top: 2px var(--theme-color-red) solid;
}

.pkg-header h3 {
    font-size: 22px;
}

.pkg-header h3 span {
    font-size: 30px;
    color: var(--theme-color-red);
}

.pkg-widget form {
    margin: 30px 0 0 0;
}

.pkg-widget .form-group {
    margin-bottom: 15px;
}

.pkg-widget input {
    height: 45px;
    border-radius: 0;
}

.pkg-widget textarea {
    height: 100px;
    border-radius: 0;
}

.pkg-widget button {
    width: 100%;
    margin: 0 0 20px 0;
}

.pkg-widget .close2:hover,
.pkg-widget .close2:focus {
    box-shadow: inset -10em 0 0 0 var(--hover), inset 10em 0 0 0 var(--hover);
}

.custom-datepicker, .custom-datepicker-2 {
    position: relative;
}

.custom-datepicker::before {
    position: absolute;
    top: 13px;
    right: 5px;
    content: '';
    background: url(../images/date-2.svg) no-repeat;
    width: 20px;
    height: 20px;
}

.custom-datepicker-2::before {
    position: absolute;
    top: 18px;
    right: 20px;
    content: '';
    background: url(../images/date.svg) no-repeat;
    width: 20px;
    height: 20px;
}

.was-validated .custom-datepicker::before,
.was-validated .custom-datepicker-2::before {
    right: 30px;
}

.new-contact-form .close:hover,
.new-contact-form .close:focus {
    color: #000;
    box-shadow: inset -12em 0 0 0 var(--hover), inset 12em 0 0 0 var(--hover);
}

.album-box {
    position: relative;
}

.album-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 50% 50%;
}

.album-box .album-title {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    z-index: 50;
    font-size: 20px;
    text-transform: uppercase;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 0;
    text-align: center;
}

.album-box .overlay {
    z-index: 100;
}

.back-btn {
    font-weight: bold;
}

.custom-single-page {
    padding: 80px 0 60px 0;
}

.custom-single-page .pagination {
    margin: 30px 0 40px 0;
}

.custom-depature-single {
    padding: 80px 0 90px 0;
}

.custom-depature-single .pagination {
    margin: 50px 0 0 0;
}

.custom-container {
    margin: 0;
    padding: 100px 0;
}

.custom-container-2 {
    margin-bottom: 0;
}

.custom-best-selling {
    margin: 0;
}

.legal-documents {
    padding-bottom: 100px;
}