:root {
    --fontManrope: 'Manrope', sans-serif;
    --white: #fff;
    --black: #000;
    --blue1B: #1B335C;
    --blue54: #5466AE;
    --blueB7: #B7D1FF;
    --greyB1: #575757; /*#B1B1B1;*/
    --greyF4: #f4f4f4;
    /* ================================== frrrr */
    --black1C: #1C1C1C;
}

.bgWhite {
    background-color: var(--white);
}

.bgBlue1B {
    background-color: var(--blue1B);
}

.colorBlue1B {
    color: var(--blue1B);
}

.bgGreyLight {
    background-color: var(--greyF4);
}

.text-white {
    color: var(--white);
}

.text-grey {
    color: var(--grey92);
}

.bgGradientBlack {
    background: rgb(0,0,0);
    background: linear-gradient(-90deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.4) 20%, rgba(0,0,0,1) 100%);
}

.bgBlue1F-transparent.text-white * {
    color: var(--white);
}

svg.icon--custom {
    width: 24px !important;
    height: 24px !important;
    vertical-align: middle !important;
    fill: #1b335c !important;
}

html,
body,
ul,
ol {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: auto;
}

body {
    font-family: var(--fontManrope);
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: var(--black1C);
    text-align: left;
    transition: background-color .5s;
    cursor: auto;
    background-color: #ffffff;
}

button {
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 0;
    box-shadow: none !important;
}

a {
    text-decoration: underline;
    color: var(--blue1B) !important;
    transition: transform 0.25s ease-out;
}

a:hover {
    text-decoration: none;
    color: var(--blue54) !important;
    transition: transform 0.25s ease-out;
}

/*a:link,*/
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.fit-img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

/* 
    Cart
*/

.cart__wrapper {
    width: 100% !important;
    border: none !important;
}

.cart {    
    margin: 0 auto;
    width: 90% !important;
}


@media only screen and (min-width: 992px) {
    /* Add your styles for widths 992px and up here */
    .cart__wrapper{
        width: 40% !important;

    }
    .cart {
        margin: 0 0 0 32px;
        width: auto;
    }
}
/*Button
=============================*/
.button,
.MoreLink {
    color: var(--blue1F);
    border-radius: 0px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.button {
    font-family: var(--fontManrope);
    border: 0px;
    display: inline-block;
    padding: 18px 30px;
    font-size: 14px;
    transition: all 0.3s;
    z-index: 1;
    position: relative;
    -webkit-transition: border-color 0.4s, color 0.4s;
    transition: border-color 0.4s, color 0.4s;
    text-align: center;
    background-color: var(--blue1B);
}

.button:hover {
    background-color: #5466AE;
}

.button.gray {
    background-color: var(--greyB1);
}

@media only screen and (max-width: 767px) {
    .button {
        font-size: 12px;
        padding: 8px 12px;
    }
}

.bookingBtn {
    color: var(--white);
    font-family: var(--font-familyManrope);
    font-size: 14px;
    letter-spacing: 1.44px;
    font-weight: 700;
    margin: 0px 0 0 0px;
    width: 100%;
    line-height: 1.2;
}

.bookingBtn.revert {
    background-color: #5466AE;
}

.bookingBtn.revert:hover {
    background-color: var(--blue1B);
}

.Discover {
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    color: var(--greyB1) !important;
    transition: all 0.25s linear;
    position: relative;
    letter-spacing: 1.3px;
}

.Discover::after {
    position: absolute;
    display: inline-block;
    content: "";
    border-top: 1px solid var(--greyB1);
    bottom: 5px;
    width: 70px;
    margin: 4px 8px;
    transform: translateY(-4px);
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
    transform: scaleX(1);
}

.Discover:hover {
    color: var(--blue54) !important;
}

.Discover:hover:after {
    color: var(--blue54);
    border-top: 1px solid var(--blue54);
    transform: scaleX(0);
    transform-origin: bottom right;
}

.Discover.white {
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    color: var(--white) !important;
    transition: all 0.25s linear;
    position: relative;
    letter-spacing: 1.3px;
}

.Discover.white::after {
    position: absolute;
    display: inline-block;
    content: "";
    border-top: 1px solid var(--white);
    bottom: 5px;
    width: 70px;
    margin: 4px 8px;
    transform: translateY(-4px);
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
    transform: scaleX(1);
}

.Discover.white:hover {
    color: var(--white) !important;
}

.Discover.white:hover:after {
    color: var(--white);
    border-top: 1px solid var(--white);
    transform: scaleX(0);
    transform-origin: bottom right;
}


/*HEADERS
===================== */
h1, .h1,
h2, .h2,
h3, .h3 {
    font-family: var(--fontManrope);
    color: var(--blue1B);
    font-weight: 800;
    word-wrap: break-word;
    line-height: 1.1;
    margin: 0px 0 30px;
    text-transform: uppercase;
}

h1, .h1 {
    font-size: 64px;
    letter-spacing: 6px;
}

h1 span,
h2 span {
    display: block;
    color: #3F7DF8;
    font-size: 16px;
    font-family: var(--font-familyCardo);
    text-transform: none;
    font-weight: 800;
}

h1 span {
    font-size: 16px;
    letter-spacing: 2px;
}

h1 img {
    width: 200px;
}

h2, .h2 {
    font-size: 54px;
    letter-spacing: 4px;
}

h2 span,
.h2 span {
    font-size: 34px;
    font-style: italic;
}

h3, .h3 {
    font-size: 40px;
    margin: 0px 0 15px;
}

.h3.smaller {
    font-size: 32px;
}

@media only screen and (max-width: 1199px) {
    h1, .h1 {
        font-size: 58px;
    }

    h2, .h2 {
        font-size: 48px;
    }

    h2 span {
        font-size: 16px;
    }

    h3, .h3 {
        font-size: 30px;
    }

    .h3.smaller {
        font-size: 28px;
    }
}

@media only screen and (max-width: 991px) {
    h1, .h1 {
        font-size: 48px;
    }

    h2, .h2 {
        font-size: 36px;
    }

    h2 span {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    h1, .h1 {
        font-size: 36px;
    }

    h2, .h2 {
        font-size: 30px;
    }

    h2 span {
        font-size: 24px;
    }
}

@media only screen and (max-width: 575px) {
    h1, .h1 {
        font-size: 34px;
    }

    h2, .h2 {
        font-size: 28px;
    }

    h3, .h3 {
        font-size: 24px;
    }
}
/*SPACING
===================== */
.mt-offset {
    margin-top: 90px;
}

.padding-around {
    padding: 60px;
}

.padding-bottom-holder {
    padding: 100px;
}

@media only screen and (max-width: 1199px) {
    .mt-offset {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .mt-offset {
        margin-top: 60px;
    }

    .padding-around {
        padding: 30px;
    }
}


/*HEADER
=================================*/
header {
    z-index: 1020 !important;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
    font-family: var(--fontManrope);
    background: rgba(255, 255, 255, .4);
    /*background: linear-gradient(0deg, rgba(255, 255, 255, 0) 3%, rgba(255, 255, 255, 0.08167016806722693) 19%, rgba(255, 255, 255, 0.28895308123249297) 63%, rgba(255, 255, 255, 0.5606617647058824) 100%);
*/
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    header {
        padding-right: 70px;
    }
}

@media only screen and (max-width: 767px) {
    header {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 50px;
    }
}

.headerBg,
.noSlider header {
    background: transparent;
    background-color: var(--white);
}

header.headerBg {
    padding-top: 10px;
    padding-bottom: 10px;
}

.HeaderLeft {
    width: 15%;
}

.HeaderRight {
    width: 85%;
}

@media only screen and (max-width: 767px) {
    .HeaderLeft {
        width: 30%;
    }

    .HeaderRight {
        width: 70%;
    }
}

.logo img {
    height: 90px;
}

header.headerBg .logo img {
    height: 65px;
}

@media only screen and (max-width: 767px) {
    .logo img {
        height: 60px;
    }

    header.headerBg .logo img {
        height: 45px;
    }
}

header a {
    color: var(--white) !important;
}

header.headerBg a,
.revertColor header a,
.revertColor header a:hover {
    color: var(--blue1B) !important;
}

header.headerBg .button.white,
.revertColor header .button.white {
    color: var(--blue1B) !important;
    border: 2px solid var(--blue1B);
}

header.headerBg .button.white:hover,
.revertColor header .button.white:hover {
    color: var(--blue1B) !important;
    background-color: rgba(31, 73, 125, 0.16);
}


header .button {
    padding: 12px 22px;
}

@media only screen and (max-width: 767px) {
    header .button {
        padding: 12px 12px;
        font-size: 11px;
        display: flex;
        align-items: center;
    }
}

@media only screen and (max-width: 575px) {
    header .button {
        padding: 12px 8px;
    }
}

.Brd-Col {
    padding: 0 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .Brd-Col {
        border-right: 1px solid rgba(27, 51, 92, 30%);
    }

    header.headerBg .Brd-Col {
        border-right: 1px solid rgba(27, 51, 92, 30%);
    }
}

@media only screen and (min-width: 992px) {
    .Brd-Col:not(:last-child) {
        border-right: 1px solid rgba(27, 51, 92, 30%);
    }

    header.headerBg .Brd-Col:not(:last-child) {
        border-right: 1px solid rgba(27, 51, 92, 30%);
    }
}


.mail img {
    width: 18px;
    vertical-align: baseline;
}

.tel img {
    width: 15px;
    vertical-align: text-top;
}

.tel a,
.mail a {
    padding-left: 10px;
    font-weight: 700;
    color: var(--blue1B) !important;
    text-decoration: none;
}

.tel a:hover,
.mail a:hover {
    text-decoration: none;
}



/* LANGUAGES
=============================== */
.languagesDrop .dropdown-toggle {
    color: var(--blue1B) !important;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
}

.languagesDrop .dropdown-toggle::after {
    border: none !important;
    background: url(../images/arrow-down.svg);
    width: 12px;
    height: 7px;
    vertical-align: middle;
    margin-left: 2px;
}

.languagesDrop a {
    color: var(--blue1F) !important;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.8px;
}

.languagesDrop .dropdown-menu {
    top: 0px !important;
    min-width: 40px;
    border-radius: 0;
    border: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    text-align: left;
    line-height: 1.5;
}

.languagesDrop .dropdown-item {
    display: block;
    padding: 0px;
}

.languagesDrop .dropdown-item:hover {
    background: none;
    color: var(--blue1F) !important;
}


/* DESKTOP NAVIGATION
=============================== */
.SmallTopMenu {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
    font-family: var(--font-familyGeologica);
    margin-top: 15px;
    border-top: 1px solid rgba(27, 51, 92, 30%);
    padding-top: 10px;
    box-sizing: border-box;
}

.SmallTopMenu a {
    color: var(--blue1B) !important;
    text-decoration: none;
    padding: 12px 20px;
    /* position:relative; */
    display: inline-block;
}

.SmallTopMenu a:hover {
    padding: 12px 20px;
    color: var(--white) !important;
    background-color: rgba(27, 51, 92, 0.4);
}

a.nav-link.active {
    padding: 12px 20px;
    color: var(--white) !important;
    background-color: rgba(27, 51, 92, 0.4);
}

header.headerBg .SmallTopMenu {
    font-size: 14px;
    border-top: 1px solid rgba(27, 51, 92, 30%);
    padding-top: 10px;
}

@media (max-width: 1199px) and (min-width: 991px) {
    .SmallTopMenu {
        font-size: 14px;
    }
}


@media only screen and (max-width: 991px) {

    .SmallTopMenu {
        letter-spacing: 1.1px;
    }
}
/* MAIN NAVIGATION
=============================== */

/*SLIDER
=============================== */
.noSlider-holder {
    height: 200px;
}

.BackgroundShadow {
    position: absolute;
    height: 100%;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.1);
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* SLIDDER
============================== */
.topMedia {
    position: relative;
}

.topMedia,
.topMediaInner {
    height: 300px;
}

.topMediaInner {
    height: -moz-calc(100vh - 140px);
    height: -webkit-calc(100vh - 140px);
    height: calc(100vh - 140px);
    position: relative;
    margin-bottom: 50px;
}

.noTopMedia {
    height: 110px;
    position: relative;
}

@media only screen and (min-width: 768px) {
    .topMedia,
    .topMediaInner {
        height: 560px;
    }
}

@media only screen and (min-width: 992px) {
    .topMedia,
    .topMediaInner {
        height: 80vh;
    }
}

.topMedia img,
.topMediaInner img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.carousel-fade .carousel-item {
    display: block;
    position: absolute;
    opacity: 0;
    transition: opacity .75s ease-in-out;
    background-position: center center !important;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    /* visibility: hidden; */
    width: 50px;
    top: 0;
    bottom: 0;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    visibility: visible;
}

.carousel .carousel-control-prev {
    left: 0px;
}

.carousel .carousel-control-next {
    right: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-image: none;
    background: url(../images/arrow-down.svg) no-repeat center center;
    background-size: 100%;
    width: 50px;
    height: 50px;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
}

.carousel-control-prev-icon {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}

.carousel,
.carousel-inner,
.carousel-item {
    width: 100%;
    height: 100%;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
}

.OverSliderItem {
    position: absolute;
    z-index: 9;
    bottom: 0%;
    left: 0;
    right: 0;
    height: 100%;
    width: 90%;
    margin: 0 auto;
}

.contentOverSlider {
    bottom: 0%;
    left: 0;
    right: 0;
    height: inherit;
    width: 40%;
    font-family: var(--fontManrope);
    font-weight: 800;
    color: var(--white);
    font-size: 100px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.contentOverSlider span {
    opacity: 0.8;
    font-style: italic;
    font-family: "EB Garamond", serif;
    font-size: 160px;
    font-weight: 400;
    line-height: 0.7;
    text-transform: capitalize;
}

@media only screen and (max-width: 1480px) {
    .contentOverSlider {
        font-size: 70px;
    }

    .contentOverSlider span {
        font-size: 110px;
    }
}

@media only screen and (max-width: 1199px) {
    .contentOverSlider {
        font-size: 50px;
    }

    .contentOverSlider span {
        font-size: 90px;
    }
}

@media only screen and (max-width: 991px) {
    .contentOverSlider {
        display: none !important;
    }
}

/** TABS CONTENT 
=======================*/
.search-widget--wrapper {
    position: relative;
    z-index: 10;
    margin-top: -57px;
}

@media only screen and (min-width: 992px) {
    .search-widget--wrapper {
        position: absolute;
        bottom: 25px;
        left: 10%;
        right: 10%;
        margin: auto;
        z-index: 10;
    }
}

@media only screen and (min-width: 1200px) {
    .search-widget--wrapper {
        width: 1020px;
        left: 0;
        right: 0;
    }
}

.tabs label {
    display: block;
    padding: 16px 18px;
    cursor: pointer;
    background: var(--white);
    font-weight: 700;
    -webkit-transition: background ease 0.2s;
    transition: background ease 0.2s;
    color: var(--blue1B);
    margin-bottom: 0;
    border: 1px solid #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
}

@media only screen and (max-width: 575px) {
    .tabs label {
        font-size: 11px;
        padding: 12px 18px;
    }
}

.tabs > input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.tabs > input[type="radio"] + label {
    background: var(--blue1B);
    color: #ffffff;
    border-color: var(--blue1B);
    display: flex;
    line-height: 1;
    align-items: center;
}

.tabs > input[type="radio"] + label img {
    margin-right: 5px
}

.tabs > input[type="radio"]:checked + label {
    background: #ffffff;
    border: 0px;
    position: relative;
    z-index: 0;
    color: var(--blue1B);
}

.tabs > input[type="radio"]:not(:checked) + label img {
    filter: brightness(0) invert(100%);
}

.tabs > input[type="radio"]:checked + label + .tab {
    display: block;
}

input.input {
    font-size: 12px !important;
    font-weight: bolder !important;
}

.tabs > .tab {
    -webkit-box-ordinal-group: 100;
    -webkit-order: 99;
    -ms-flex-order: 99;
    order: 99;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 1rem;
    background-color: #ffffff;
    border: var(--white) solid 1px;
    margin-top: -1px;
    min-height: 190px;
}

.search-widget--wrapper form {
    display: flex;
    flex-wrap: wrap;
}

.search-widget--wrapper .tours-transfer-form:not(.one-way-form) {
    padding-bottom: 15px;
}

.search-widget--wrapper .column {
    width: calc(50% - 15px);
    margin-bottom: 15px;
}

.search-widget--wrapper .column:not(:last-child) {
    margin-right: 15px;
}
/*
@media only screen and (max-width: 767px) {
    .search-widget--wrapper .column:nth-child(2n+1){
        margin-right: 0px;
    }
}*/
@media only screen and (min-width: 768px) {
    .search-widget--wrapper .column {
        width: calc(33.33% - 15px);
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 992px) {
    .search-widget--wrapper .column {
        margin-bottom: 0px;
    }

    .search-widget--wrapper .tours-transfer-form:not(.one-way-form) .column {
        margin-bottom: 15px;
    }

    .search-widget--wrapper .column {
        width: calc(20% - 15px);
    }
}

@media only screen and (min-width: 1200px) {
    .search-widget--wrapper .column {
        width: calc(16.66% - 12.5px);
    }

    .search-widget--wrapper .column:not(:last-child) {
        margin-right: 12px;
    }
}

.search-widget--wrapper .otherDepartureRoute-check {
    position: absolute;
    bottom: 15px;
}

.search-widget--wrapper .otherDepartureRoute-check label {
    margin: 0;
    padding: 0;
    height: auto;
    letter-spacing: .4px;
    line-height: 1.8;
    font-size: 12px;
    color: var(--blue1B);
    /*text-transform: uppercase;*/
}

.tours-transfer-form.one-way-form #departure-field,
.tours-transfer-form.one-way-form .otherDepartureRoute-check,
.tours-transfer-form.one-way-form .other-departure-route {
    display: none;
}

.other-departure-route.linebreak {
    display: block;
    width: 100%;
    color: var(--blue1B);
    text-transform: uppercase;
}



.TabBook .column {
    border: 1px solid #CECECE;
    line-height: 1;
}

.TabBook label {
    /* margin-top: 10px;*/
    padding: 4px 6px;
    height: auto;
    letter-spacing: .4px;
    font-size: 12px;
    color: var(--greyB1);
    display: flex;
    align-items: center;
}
/*.TabBook > .choices > .form-label img*/
.TabBook .form-label img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(85%) saturate(1036%) hue-rotate(193deg) brightness(97%) contrast(90%);
    margin-right: 4px;
    height: 18px;
}

@media only screen and (max-width: 575px) {
    .TabBook .form-label img {
        /* width: 18px;*/
    }
}

.TabBook .form-select,
.TabBook .form-control {
    border: 0px;
    padding: .3rem .5rem;
}
/*
    .TabBook .form-select,
    .TabBook .form-control {
        border: 1px solid #CECECE;
        border-radius: 0;
        padding: 32px 8px 5px 8px !important;
        font-size: 14px;
    }*/

.TabBook .form-select {
    background-position: right .75rem bottom 8px;
}

.TabBook .button {
    color: var(--white);
    letter-spacing: 1.44px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    height: 100%;
    width: 100%;
    padding: 18px 15px;
}

.TabBook .radios-selection {
    text-align: left;
    padding-bottom: 20px;
}

.TabBook .radios-selection .form-check:not(:first-child) {
    margin-left: 20px;
}

.TabBook .radios-selection label {
    margin: 0;
    padding: 0;
    height: auto;
    letter-spacing: .4px;
    line-height: 1.4;
    font-size: 16px;
    color: var(--blue1B);
    text-transform: uppercase;
}

.choices__inner {
    border: 0px !important;
    font-size: 12px !important;
    font-weight: bolder !important;
    min-height: unset !important;
    overflow: hidden !important;
    padding: .375rem 2.25rem .375rem .75rem !important;
}

.choices__list--single .choices__item {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.is-active.choices__list--dropdown,
.is-active.choices__list[aria-expanded] {
    width: max-content !important;
}

/*
.choices[data-type*=select-one]::after {
 }*/

.drop-passengers {
    /*border: 1px solid #CECECE;
    border-radius: 0;
    padding: 8px 8px 5px 8px !important;
    font-size: 14px;*/
}

.drop-passengers button {
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 12px !important;
    font-weight: bolder !important;
}

.drop-passengers .dropdown-menu {
    border-radius: 0;
    padding: 20px;
}

.drop-passengers .row-holder > div {
    margin-bottom: 10px;
}

@media only screen and (min-width: 481px) {
    .drop-passengers .row-holder {
        display: flex;
    }

    .drop-passengers .row-holder > div:not(:first-child) {
        margin-left: 20px;
    }

    .drop-passengers .row-holder > div {
        margin-bottom: 0px;
    }
}

/*   .drop-passengers .row-holder > div label {
        color: rgba(var(--bs-body-color-rgb), .85);
        font-size: 12px;
    }*/
.plus-minus-btns {
    display: flex;
}

.plus-minus-btns span {
    background: #CECECE;
    width: 30px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    line-height: 2;
}

.plus-minus-btns input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    background-color: #efefef;
    border-radius: 0;
}

.plus-minus-btns input[type=number]::-webkit-inner-spin-button,
.plus-minus-btns input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.plus-minus-btns input.form-control {
    padding: 4px 8px !important;
    width: 50px;
    text-align: center;
}

.note {
    font-size: 12px;
    line-height: 1;
    padding-top: 4px;
}




.carousel-control-next, .carousel-control-prev {
    max-width: 76px;
    top: unset;
    bottom: 40px;
    z-index: 12;
}

.ScrollOverSlider {
    font-family: var(--fontManrope);
    position: absolute;
    z-index: 2;
    bottom: 180px;
    left: 20px;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 1.5px;
    color: var(--white) !important;
    text-align: center;
    padding: 0px 0px 0px 0px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.ScrollOverSlider::after {
    position: absolute;
    width: 100%;
    content: '';
    height: 1PX;
    right: 120px;
    margin: 0 auto;
    z-index: 1;
    background: rgb(255, 255, 255);
    top: 12px;
}



/* main-section-intro
==================================*/

.main-section-intro-img .d-flex {
    align-items: flex-start;
}

.main-section-intro-img {
    padding-right: 0.4rem !important;
    padding-left: 0.4rem !important;
}

.main-section-intro-img:nth-child(odd) {
    padding-top: 2rem !important;
}


.main-section-intro-Over {
    margin-left: -120px;
}

/* Video
=================================== */
.mainVideoSlider {
    position: relative;
    height: 100vh;
}

.mainVideoSlider video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 991px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 450px;
    }
}

@media only screen and (max-width: 767px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 400px;
    }
}

@media only screen and (max-width: 480px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 350px;
    }
}


/* MAIN CONTENT
=================================== */
.text-container {
    position: relative;
}

@media only screen and (min-width: 992px) {
    .text-container {
        padding-left: 120px;
    }
}

/*Excursions
=========================== */
.item {
    position: relative;
    overflow-y: hidden;
}

.item .item__overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0;
    background-color: #294072;
    background: linear-gradient(to bottom, transparent 0%, #294072 100%);
    -webkit-transform: translate3d(0,50%,0);
    transform: translate3d(0,50%,0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.item:hover .item__overlay::before {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.item .item__overlay h2 {
    position: absolute;
    bottom: 10%;
    left: 0;
    text-align: left;
    padding: 0em 2rem;
    width: 100%;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    font-family: var(--fontManrope);
    letter-spacing: 2px;
    /* -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);*/
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.item:hover .item__overlay h2 {
    opacity: 1;
    -webkit-transform: translate3d(0,-60px,0);
    transform: translate3d(0,-60px,0);
}

.item .item__overlay h2::after {
    content: '';
    position: absolute;
    width: 20%;
    height: 2px;
    bottom: -10px;
    left: 2rem;
    background-color: #ffffff;
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
    transform: scaleX(1);
    text-decoration: none;
}

.item:hover .item__overlay h2::after {
    width: calc(100% - 4rem);
    transform: scaleX(1);
    transform-origin: bottom right;
    text-decoration: none;
}

.item .item__overlay .item__body {
    position: absolute;
    bottom: -100px;
    left: 0;
    text-align: left;
    padding: 0em 2rem;
    width: 100%;
    opacity: 1;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    font-family: var(--fontManrope);
    font-weight: 200;
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.item:hover .item__overlay .item__body {
    opacity: 1;
    -webkit-transform: translate3d(0,-120px,0);
    transform: translate3d(0,-120px,0);
}

.item .item__overlay .item__body .Discover.white {
    right: 5rem;
}

.tags {
    position: absolute;
    top: 50px;
    right: 0px;
    z-index: 10;
    background: var(--blue54);
    font-size: 17px;
    line-height: 18px;
    font-weight: 700;
    font-family: var(--fontManrope);
    padding: 12px;
    color: var(--white);
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

@media only screen and (max-width: 767px) {
    .tags {
        font-size: 15px;
    }
}

@media only screen and (max-width: 1199px) {
    .tour-box-Inner .tags {
        position: absolute;
        top: 30px;
        right: 0px;
        z-index: 10;
        padding: 8px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 767px) {
    .item .item__overlay h2 {
        padding: 0em 1rem;
        font-size: 16px;
        /* -webkit-transform: translate3d(0,60px,0);
        transform: translate3d(0,60px,0);*/
    }

    .item .item__overlay h2 img {
        width: 16px;
    }

    .item .item__overlay h2::after {
        left: 1rem;
    }

    .item:hover .item__overlay h2::after {
        width: calc(100% - 2rem);
    }

    .item .item__overlay .item__body {
        padding: 0em 1rem;
        font-size: 14px;
    }

    .item:hover .item__overlay .item__body {
        -webkit-transform: translate3d(0,-110px,0);
        transform: translate3d(0,-110px,0);
    }

    .item .item__overlay .item__body .Discover.white,
    .tour-box-Inner .tags {
        font-size: 12px;
    }
}

@media only screen and (max-width: 639px) {
    .item:hover .item__overlay .item__body {
        -webkit-transform: translate3d(0,-90px,0);
        transform: translate3d(0,-90px,0);
    }
}

@media only screen and (max-width: 575px) {
    .item:hover .item__overlay .item__body {
        -webkit-transform: translate3d(0,-120px,0);
        transform: translate3d(0,-120px,0);
    }
}

.BoxesSwiper .item {
    height: 460px;
}

@media only screen and (min-width: 1200px) {
    .BoxesSwiper .item {
        height: 520px;
    }
}

.link-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.link-box span {
    display: none;
}

/*Reasons To Book
==========================*/
.why {
    position: relative;
    padding: 30px;
    color: var(--blue1B);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.why .icon-holder img {
    padding: 0px;
    width: 90px;
    height: 90px;
}

.why-num {
    position: absolute;
    right: 0px;
    top: -30px;
    z-index: -1;
    font-size: 100px;
    line-height: 1;
    color: #F2F3F5;
}

@media only screen and (max-width: 1380px) {
    .why {
        font-size: 18px;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .why-num {
        position: absolute;
        right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .why {
        font-size: 20px;
        padding: 30px;
    }

    .why .icon-holder img {
        width: 60px;
    }
}

@media only screen and (max-width: 575px) {
    .why-num {
        position: absolute;
        right: 0px;
        left: 0px;
        top: -30px;
    }
}

/* FOOTER 
=============================== */
footer {
    background-color: var(--blue1B);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.InfoBorder {
    padding: 20px 10px;
    border: 1px solid #415B94;
}

.Info {
    padding: 10px;
    height: 100%;
    border-right: 1px solid #415B94 !important;
}

.InfoImg {
    background-color: #ABB7E8;
    padding: 15px;
    margin-right: 10px;
}

.InfoImg img {
    padding: 0px;
    width: 40px;
}

.InfoText span {
    display: block;
    color: var(--white);
    font-size: 18px;
    letter-spacing: 2px;
    padding-bottom: 2px;
}

.InfoText {
    color: #B7D1FF;
    font-size: 14px;
}

.InfoBorder div:last-child .Info {
    border-right: 0px solid #415B94 !important;
}

@media only screen and (max-width: 767px) {
    .Info {
        padding-right: 0px;
        border-bottom: 1px solid #415B94 !important;
        border-right: 0px solid #415B94 !important;
    }

    .InfoBorder div:last-child .Info {
        border-bottom: 0px solid #415B94 !important;
    }
}

footer a {
    color: var(--blueB7) !important;
    text-decoration: none;
    transition: all 200ms ease-out;
}

footer a:hover {
    color: var(--white) !important;
    text-decoration: none;
}

.footerMenu a {
    color: var(--blueB7);
    text-decoration: none;
    font-family: var(--font-familyGeologica);
    line-height: 20px;
    font-weight: 500;
    padding: 5px 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-right: 2px solid var(--blueB7);
}

.footerMenu a:last-child {
    border-right: 0px solid var(--blueB7);
}

.footerMenu a:hover,
.footerMenu a:focus,
.footerMenu button:hover {
    color: var(--white) !important;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .footerMenu {
        display: block;
        text-align: center;
    }

    .footerMenu a {
        display: inline-block;
        padding: 5px 10px;
    }
}

.social {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

.social a {
    padding: 10px 13px;
    background-color: #ABB7E8;
    display: inline-block;
    line-height: 1;
}

.social a img {
    width: 20px;
    height: 20px;
    vertical-align: sub;
}

.social a.NoBG {
    padding: 10px 13px;
    background-color: transparent;
}

.social a:hover {
    opacity: 0.6;
    transition: all 0.5s linear;
}

.copyright {
    color: #628ACE;
    font-size: 12px;
    line-height: 1.2;
}

.copyright a {
    text-decoration: none;
    color: var(--black1C);
}

.copyright a:hover {
    text-decoration: underline;
}

/*=========== To Top =========== */
.toTop {
    text-align: right;
}

a.scrollup {
    background: url(../images/toTop.svg) no-repeat center center;
    bottom: 10px;
    display: none;
    position: fixed;
    right: 10px;
    text-indent: -9999px;
    width: 33px;
    height: 40px;
    text-decoration: none;
    padding: 0px 0px 0;
    z-index: 10000;
    background-color: var(--blueB7);
    padding: 20px;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.scrollup.is-visible {
    display: inline;
    opacity: 1;
}


/* SWIPER - GENERAL 
=============================== */
.swiper {
    padding-bottom: 50px;
}

.swiper.bullets {
    padding-bottom: 0px !important;
}

.swiper-slide {
    text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
    background: url(../images/right-arrow.svg) no-repeat center center !important;
    width: 40px;
    height: 40px;
    top: unset;
    bottom: 0;
}

.swiper-button-prev {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.swiper-button-next {
    /*right: calc(50% - 50px);*/
}

.swiper-button-prev {
    left: calc(100% - 100px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper.BoxesSwiper .swiper-scrollbar {
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper.BoxesSwiper .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(84, 102, 174, 1));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0;
}

.swiper-scrollbar,
.swiper-scrollbar .swiper-scrollbar-drag {
    transition: height 0.25s;
}

.swiper-scrollbar:hover,
.swiper-scrollbar:hover .swiper-scrollbar-drag {
    height: 16px;
    cursor: grab;
}

.swiper-scrollbar:focus,
.swiper-scrollbar:focus .swiper-scrollbar-drag {
    cursor: grabbing;
}

/*FORMS
======================*/
.Newsletter {
    background: url(../images/NewsletterBg.jpg) no-repeat center center;
}

.Newsletter h2 {
    font-size: 30px;
}

@media only screen and (max-width: 575px) {
    .Newsletter h2 {
        font-size: 24px;
    }
}

.newsletterform .form-control {
    background: transparent;
    border-radius: 0px;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid var(--blue1B);
    font-weight: 300;
    letter-spacing: 0.32px;
}

.newsletterform ::-webkit-input-placeholder {
    color: var(--white);
}

.newsletterform :-moz-placeholder {
    color: var(--white);
}

.newsletterform ::-moz-placeholder {
    color: var(--white);
}

.newsletterform :-ms-input-placeholder {
    color: var(--white);
}

.newsletterform .form-agree label {
    font-size: 14px;
}

.newsletterform .form-agree label a {
    color: var(--white);
    text-align: underline;
    transition: all 200ms ease-out;
}

.newsletterform .form-agree label a:hover {
    color: var(--aquamarineDark) !important;
    text-align: none;
}

.submit {
    font-size: 20px;
    color: var(--white);
    letter-spacing: 3px;
    padding: 18px 30px;
}

/* FORMS
====================================== */
.form-placement {
    font-size: 14px;
    padding: 60px 70px;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .form-placement {
        padding: 20px;
    }
}

.contactform .form-floating > label {
    left: 15px;
    padding: 0.75rem 0.75rem;
}

.contactform .form-control {
    border-radius: 0px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    outline: none;
    color: var(--black);
    padding: 20px;
    font-size: 14px;
}

::-webkit-input-placeholder {
    color: var(--black);
}

:-moz-placeholder {
    color: var(--black);
}

::-moz-placeholder {
    color: var(--black);
}

:-ms-input-placeholder {
    color: var(--black);
}

.contactform select.form-control {
    color: var(--black);
}

.contactform textarea.form-control {
    height: auto;
}

.field-validation-valid {
    display: none;
    color: red;
}

.field-validation-error {
    display: block;
    color: red;
    text-align: left;
    font-size: 12px;
}

.field-validation-error:empty {
    display: none;
}

.asterisk span {
    display: inline;
    font-size: 24px;
    line-height: 22px;
}

.form-agree label {
    display: inline;
}

.form-agree .field-validation-error {
    display: inline-block;
}

.form-agree a {
    text-decoration: underline;
}

.form-agree a:hover {
    text-decoration: none;
}

.grecaptcha-badge {
    display: none !important;
}

input[type="file"] {
    /*    padding:6px;*/
}

.attachment-field {
    min-width: 100px;
    background: url(/images/upload-icon.svg) no-repeat top left;
    background-size: 20px;
}

.contactform .button {
    font-size: 16px;
}

.min-width {
    display: inline-block;
    min-width: 160px;
}

/*INNER PAGES 
=============================*/
.breadcrumb {
    font-family: var(--font-familyManrope);
    text-transform: uppercase;
    color: #5466AE;
    font-weight: 800;
}

.breadcrumb li + li:before {
    color: #ABB7E8;
    padding: 8px;
    content: "\025AA";
}

.breadcrumb a {
    color: #949494 !important;
    font-weight: 800;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #949494;
    font-weight: 800;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .breadcrumb {
        font-size: 14px;
    }
}

/*INNER PAGES SEARCH AVAILABILITY FORM
=============================*/
.InnerForm {
    border: 1px solid #CECECE;
}

.InnerForm .Title {
    text-align: center;
    background: var(--blue1B);
    border: 0px;
    position: relative;
    z-index: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
    padding: 10px 16px;
    font-family: var(--fontManrope);
}

.InnerForm .Title img {
    width: 20px !important;
    height: 20px !important;
    object-fit: unset;
    margin-right: 10px;
    vertical-align: sub;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(204deg) brightness(105%) contrast(101%);
}

@media only screen and (max-width: 767px) {
    .InnerForm .d-flex div:nth-child(1) {
        margin-right: 5px;
    }

    .InnerForm .d-flex div:nth-child(2) {
        margin-left: 5px;
    }
}

.excursion-price-box {
    background: var(--greyF4);
}


/*EXCURSION PAGE
=============================*/
.border-top-bottom {
    border-top: 2px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
}

.border-top-bottom .border-bottom-item:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
}



ul.ListText {
    margin: 0;
    padding: 0;
}

ul.ListText li {
    display: block;
    list-style-type: none;
    padding-left: 0px;
    margin-bottom: 17px;
    line-height: 14px;
}

ul.ListText li:before {
    color: #ABB7E8;
    padding: 0px 8px 0 0;
    content: "\025AA";
    font-size: 30px;
    vertical-align: bottom;
}
















@media only screen and (max-width: 991px) {
    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        width: 20px;
        height: 40px;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .main-section-intro-Over {
        margin-left: 0px;
    }
}

@media only screen and (max-width: 767px) {

    .carousel,
    .carousel-inner,
    .carousel-item {
        height: inherit;
    }

    .carousel-control-next-icon, .carousel-control-prev-icon {
        visibility: hidden;
    }

    .carousel .carousel-control-prev {
        left: 5px;
    }

    .carousel .carousel-control-next {
        right: 5px;
    }



    .main-section-intro-Over {
        margin-left: 0px;
    }





    .noSlider-holder {
        height: 100px;
    }
}



@media only screen and (min-width: 768px) {
    .swiper {
        padding-bottom: 60px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .swiper-button-prev {
        left: calc(100% - 130px);
    }
}
