

.colorLogoFill {
    fill: #fff;
}

.header-white .colorLogoFill, .header-fixed .colorLogoFill {
    fill: #231b5d;
}

.nofill {
    fill: none;
}

.clippath-a {
    clip-path: url(#a);
}


.header,
.header a {
    color: #fff;
    font-weight: 400;
}

.header {
    background: transparent;
    padding: 10px;
    z-index: 99;
    position: absolute;
    width: 100%;
    transition: .2s background;
    transition-timing-function: ease-in;

}

.header-white{
    background: #fff;
}

.header-white a, .header-fixed a {
    color: #231b5d;
}

.menuFixed a {
    color: #231B5D;
}


.menuFixed a.btn-book {
    color: #fff;
    background: #231b5d !important;
}
.menuFixed a.btn-book .b{
    stroke: #fff;
}

.menuFixed a.btn-book svg{
    fill: #fff;
}

.menuFixed a.btn-book:hover .b{
    stroke: #231B5D;
}

.menuFixed a.btn-book:hover svg{
    fill: #231B5D;
}




img.logo-main {
    width: 165px;
}

ul {
    list-style: none;
}

.fullMenuCont {
    display       : none;
    opacity       : 0;
    text-transform: initial;
    z-index: 0;
}

.fullMenuCont a{
    color: #231b5d;
}

.fullMenuCont {
    background: #fff;
    width     : 100%;
    position  : absolute;
    left      : 0;
    right     : 0;
    padding   : 20px 0 50px 0;
    overflow  : hidden;
    transition: 1s all;
    z-index: 98;
    margin-top: 17px;
}






.header .openMenu, .header .linksimple {
    display: inline-block;
}


.container-header {
    padding: 10px;
}



.menuMainList {
    text-transform: uppercase;
}

.hdr-logo svg{
    max-width: 200px;

}

.btn-book{
    vertical-align: middle;
}

a.gift_voucher{
    margin-bottom: 20px;
    margin-right: 20px;
}


a.btn-book svg{
    fill: #fff;
    vertical-align: middle;
    position: relative;
    margin-top: -5px;
}
a.btn-book svg .b{
    stroke: #fff;
}




a.btn-book {
    color: #231b5d;
    background: #fff;
    border-radius: 25px;
    font-size: .8rem;
    line-height: .55rem;
    padding: 15px 20px;
    margin-left: 0;
    font-weight: 500;
}









a.btn-book-purple {
    color        : #fff;
    background   : #231b5d;
    
}

a.btn-book:hover {
    color        : #231b5d !important;
    background   : #fff !important;
}
a.btn-book svg{
    fill        : #231b5d;
}
a.btn-book svg .b {
    stroke        : #231b5d;
}





.header-white a.btn-book svg, .header-fixed a.btn-book svg{
    fill: #fff;
}
.header-white a.btn-book svg .b, .header-fixed a.btn-book svg .b{
    stroke: #fff;
}




.header-white a.btn-book, .header-fixed a.btn-book {
    color: #fff;
    background: #231b5d;
}

.header-white a.btn-book:hover .longarrowright, .header-fixed a.btn-book:hover .longarrowright{
    fill: #231b5d;
}
.header-white a.btn-book:hover .longarrowright .b, .header-fixed a.btn-book:hover .longarrowright .b{
    stroke: #231b5d;
}



.menu-right,
.menu-right a {
    text-transform : uppercase;
    text-decoration: none;
    vertical-align : middle;
}

.menu-right a:hover {
    text-decoration: underline;
}

a.btn-book:hover {
    color          : #fff;
    background     : #5b5488;
    text-decoration: none;
}





.imgMenuBg {
    position           : relative;
    background-size    : cover;
    background-position: center;
    width              : 230px;
    max-width          : 250px;
    height             : 300px;
    display            : inline-block;
    margin             : 0 10px;
    opacity: 1;
}

.header-white .openMenu, .header-fixed .openMenu{
    color: #231b5d;
}

.openMenu, .linksimple {
    cursor: pointer;
    vertical-align: middle;
    border-bottom: 1px solid transparent;
}

.linksimple {
    text-decoration: none;
}
.linksimple:hover {
    border-bottom: 1px solid #231b5d;
}

.openMenu svg{
    vertical-align: baseline;
    stroke: #fff;
    stroke-width: 1px;
    margin: 0 5px ;
}



.openMenu.selected{
    font-weight: 700;
    border-bottom: 1px solid #231b5d;
}

.titleTxtMenuImg {
    color         : #fff;
    font-weight   : 700;
    position      : absolute;
    bottom        : 30px;
    left          : 0;
    right         : 0;
    font-size     : 1.8rem;
    text-align    : center;
    z-index       : 2;
    text-transform: initial;
    line-height: 1.1;
    margin-bottom: 5px;
}

.fullMenuCont .slideImagesMenu {
    opacity: 0;
}

.fullMenuCont.hide {
    opacity: 0;
}

.fullMenuCont.show {
    display          : block;
    -webkit-animation: slide-in-top .5s cubic-bezier(.25, .46, .45, .94) both;
    animation        : slide-in-top .5s cubic-bezier(.25, .46, .45, .94) both;
    box-shadow: -1px 8px 15px -7px rgb(0 0 0 / 9%);
    -webkit-box-shadow: -1px 8px 15px -7px rgb(0 0 0 / 9%);
    -moz-box-shadow: -1px 8px 15px -7px rgba(0,0,0,0.09);

}

.fullMenuCont.show .slideImagesMenu {
    transition: 1s all;
    opacity   : 1;
}



@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform        : translateY(-500px);
        opacity          : 0
    }

    50% {
        -webkit-transform: translateY(-300px);
        transform        : translateY(-300px);
        opacity          : 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform        : translateY(0);
        opacity          : 1
    }
}

@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform        : translateY(-1000px);
        opacity          : 0
    }

    50% {
        -webkit-transform: translateY(-100px);
        transform        : translateY(-100px);
        opacity          : 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform        : translateY(0);
        opacity          : 1
    }
}


.slideImagesMenu {
    width       : 200%;
    height      : 300px;
    overflow    : hidden;
    padding-left: 50px;
    text-align  : left;
    opacity     : 0;
    transition  : .7s all;
}

.hoverGradient {
    position: absolute;
    width   : 100%;
    height  : 100%;
}


.imgMenuBg:hover .hoverGradient:after {
    opacity: .6;
}

.titleTxtMenuImg:after {
    transition    : .3s all;
    transition-delay: .1s;
    content       : 'view destination';
    background    : #231B5D;
    opacity       : 0;
    height        : 0;
    padding       : 17px;
    display       : block;
    padding-bottom: 0;
    width         : 90%;
    margin        : auto;
    border-radius : 25px;
    font-size     : 1rem;
    font-weight   : lighter;
}

.txtView.titleTxtMenuImg:after{
    content: 'view';
}

.imgMenuBg:hover .titleTxtMenuImg:after {
    opacity: 1;
    height : 50px;
}

.hoverGradient:after {
    content                   : ' ';
    width                     : 100%;
    height                    : 100%;
    position                  : absolute;
    transition                : .5s all;
    transition-timing-function: cubic-bezier(.43, .21, .22, .8);
    opacity                   : 0;
    z-index                   : 1;
    background                : rgb(35, 27, 93);
    background                : -moz-linear-gradient(0deg, rgba(35, 27, 93, 1) 0%, rgba(180, 178, 200, 1) 100%);
    background                : -webkit-linear-gradient(0deg, rgba(35, 27, 93, 1) 0%, rgba(180, 178, 200, 1) 100%);
    background                : linear-gradient(0deg, rgba(35, 27, 93, 1) 0%, rgba(180, 178, 200, 1) 100%);
    filter                    : progid:DXImageTransform.Microsoft.gradient(startColorstr="#231b5d", endColorstr="#b4b2c8", GradientType=1);
}


.linkgroup {
    padding-left: 50px;
    padding-right: 50px;
}

.linkgroup img {
    width: 100%;
}

.linkgroup a {
    display: block;
}

.menu-links-separator {
    display: block;
    height : 10px;
}

.linkgroup a {
    text-decoration: none;
    margin         : 10px 0;
    font-weight    : 700;
}

.linkgroup a:hover {
    text-decoration: underline;
}

.linkgroup h4 {
    font-weight: 700;
    margin     : 30px 0;
    font-size: 1rem;
}

.arrowdown{
    fill:none;
    stroke:#fff;
}

.header-white .arrowdown{
    stroke:#231b5d;
}

.header.menuFixed .colorLogoFill {
    fill: #231b5d;
}


.fullMenuCont .cardElm{
    position: relative;
    width: 250px;
    display: inline-block;
    vertical-align: top;
    margin-top: 5px !important;
    transition: .6s opacity cubic-bezier(.13,.31,.2,.48);
    border: 1px solid transparent;
    border-bottom: 1px solid #e8e7ee;
    
}


.phone_mobilemenu {
    z-index: 9;
    position: absolute;
    right:0;
}

.phone_mobilemenu svg{
    fill: #fff;
    transform: scale(1.8);
    transition: 1s fill;
}

.cart2{
    width: 10px;
    margin-right:10px
}



















/* Menu animation */


#menuToggle
{
  width: 35px;
  height: 35px;
  text-align: center;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  transition: 1s all;
  margin: auto;
}



#menuToggle a:hover
{
  color: #231b5d;
}

.mobileMenuContent{
    color: #231b5d;
    right: 0;
    left: 0;
    text-align: left;
    margin-top: 60px;
    position: relative;
    width: 100%;
    text-transform: uppercase;
}

.subMobileMenuContent{
    margin-top: 0;
    
}

.childrenMenuMobile{
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
}

.gobackmobile{
    color:#231b5d;
    left: 0;
    text-align: left;
    top: 60px;
    font-size: .9rem;
    cursor: pointer;
    font-weight: lighter;
}

.subMobileMenuContent svg .b{
    stroke: #231b5d;
}

#menuToggle a{
    display: block;
    text-decoration: none;
}

.openMenuMobile{
    position: relative;
    cursor: pointer;
}

.openMenuMobile:last-child{
    border-bottom: 0;
}




.mobileMenuContent .openMenuMobile,#menuToggle a{
    font-weight: 500;
    color: #231b5d;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    font-size: 1.5rem;
} 

#menuToggle a:last-child{
    border-bottom: 0;
}

.openMenuMobile svg{
    fill: #231b5d;
    float: right;
    margin-top: 15px;
}
.openMenuMobile svg .b{
    stroke: #231b5d;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #fff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}


#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #231b5d;
  left: 0;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}


#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu 
{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 50px 10%;
    background: #fff;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    overflow: auto;
}


#menuToggle input:checked ~ #menu
{
  transform: none;
}


.header-hide{
    display: none !important;
    opacity: 0 !important;
}





.header-white .phone_mobilemenu svg, .header-fixed .phone_mobilemenu svg{
    fill: #231b5d;
}
.header-white #menuToggle span, .header-fixed #menuToggle span{
    background: #231b5d;
}


.header.menuFixed{
    position: fixed;
    top: 0;
    background: #fff;
    color: #231b5d;
    box-shadow: -1px 8px 15px -7px rgba(0,0,0,0.09);
    -webkit-box-shadow: -1px 8px 15px -7px rgba(0,0,0,0.09);
    -moz-box-shadow: -1px 8px 15px -7px rgba(0,0,0,0.09);
    z-index: 999;
    transition: none !important;
    padding-top: 0 !important ;
    padding-bottom: 0 !important;
}





.menuMainList{
    margin-top: 10px;
}


.menuFixed .arrowdown{
    stroke: #231b5d !important;
}


.menuFixed #menuToggle span{
    background: #231b5d !important;
}

.menuFixed .phone_mobilemenu svg{
    fill: #231b5d !important;
}

.socialmedia_footer_img{
    max-height: 35px;
    margin-right: 5px;
}
.socialmedia_footer_link{
    display: inline-block !important;
}



@media (max-width: 1399.98px) {

    .gift_voucher{
        display: none;
    }

    .menuMainList{
        padding-top: 13px;
    }

    .openMenu, .linksimple {
        cursor: pointer;
        vertical-align: middle;
        border-bottom: 1px solid transparent;
    }

    /* Mobile header flexbox layout */
    .mobile-header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 15px 0;
        position: relative;
        min-height: 50px;
    }

    .mobile-menu-toggle {
        flex: 0 0 35px;
        display: flex;
        align-items: center;
    }

    .mobile-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        display: inline-block;
        z-index: 2;
    }

    .mobile-logo a {
        pointer-events: auto;
        display: block;
    }

    .mobile-logo svg {
        max-width: 140px !important;
        width: 140px;
        height: auto;
        display: block !important;
    }

    .mobile-book-btn {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .btn-book-mobile {
        font-size: 0.65rem;
        padding: 8px 12px;
        white-space: nowrap;
    }

    .container-header {
        padding: 5px 10px;
        overflow: visible !important;
    }

    .container-header .row {
        overflow: visible !important;
    }

}





.linksimple{
    margin: 0 9px !important;
}