@font-face {
    font-family: OpenSans;
    src: url(/fonts/open-sans/OpenSans-Regular.ttf);
}
@font-face {
    font-family: Garamond;
    src: url(/fonts/garamond-premier-pro/GaramondPremrPro.otf);
}
@font-face {
    font-family: GaramondMed;
    src: url(/fonts/garamond-premier-pro/GaramondPremrPro-Smbd.otf);
}
@font-face {
    font-family: Barlow;
    src: url(/fonts/barlow/Barlow-Regular.otf);
}
@font-face {
    font-family: BarlowLight;
    src: url(/fonts/barlow/Barlow-Light.otf);
}
@font-face {
    font-family: BarlowSemiBold;
    src: url(/fonts/barlow/Barlow-SemiBold.otf);
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
html{
    height: 100%;
}
body {
    font-family: 'Garamond', sans-serif;
    font-size: 18px;
    min-height: 100%;
    position: relative;
    color: #0b2027;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    line-height: 1.5;
    min-width: 280px;
    width: calc(100% - 40px);
    padding: 20px;
}
main{
  overflow: hidden;
}
img{
    max-width: 100%;
}
body.OverflowHiden{
    overflow: hidden;
    padding: 0;
    width: 100%;
    padding-top: 69px;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
    position: relative;
}
ul {
    list-style: disc;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0;
    margin-left: 15px;
}
table ul{
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 40px;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    color: #fff;
}
sup {
    vertical-align: super;
    font-size: smaller;
}
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse: separate;
    border-spacing: 3px;
    width: 100%;
}
td{
    border: 0px solid #ddd;
    padding: 10px;
    vertical-align: top;
    text-align: center;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select, button {
    vertical-align:middle;
    font-size: 17px;
    font-family: 'Garamond', 'sans-serif';
}
p{
    display: block;
    margin: 0;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
pad{
    font-family: 'FuturaBook', sans-serif;
    font-style: normal;
    font-weight: normal;
}
.Loader{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #104096;
    text-align: center;
    line-height: 100vh;
}
.LoaderInner{
    display: inline-block;
    width: 300px;
    max-width: 100%;
    vertical-align: middle;
    line-height: 1;
    text-align: center;
}
.Loader img{
    width: 100px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
-webkit-animation: rotating 2s linear infinite;
        -moz-animation: rotating 2s linear infinite;
        -ms-animation: rotating 2s linear infinite;
        -o-animation: rotating 2s linear infinite;
        animation: rotating 2s linear infinite;
    }
    @-webkit-keyframes rotating /* Safari and Chrome */ {
        from {
            -webkit-transform: rotateY(0deg);
            -o-transform: rotateY(0deg);
            transform: rotateY(0deg);
        }
        to {
            -webkit-transform: rotateY(360deg);
            -o-transform: rotateY(360deg);
            transform: rotateY(360deg);
        }
    }
    @keyframes rotating {
        from {
            -ms-transform: rotateY(0deg);
            -moz-transform: rotateY(0deg);
            -webkit-transform: rotateY(0deg);
            -o-transform: rotateY(0deg);
            transform: rotateY(0deg);
        }
        to {
            -ms-transform: rotateY(360deg);
            -moz-transform: rotateY(360deg);
            -webkit-transform: rotateY(360deg);
            -o-transform: rotateY(360deg);
            transform: rotateY(360deg);
        }
    }
/* COLS */
.Col1x2{
    display: inline-block;
    width: calc(50% - 20px);
    padding: 10px;
}
.Col1x3{
    display: inline-block;
    width: calc(33.33% - 20px);
    padding: 10px;
}
.Col2x3{
    display: inline-block;
    width: calc(66.66% - 20px);
    padding: 10px;
}
.Col1x4{
    display: inline-block;
    width: calc(25% - 20px);
    padding: 10px;
}
.Col1x6{
    display: inline-block;
    width: calc(16.66666% - 20px);
    padding: 10px;
}
.Col1x12{
    display: inline-block;
    width: calc(8.333333% - 20px);
    padding: 10px;
}
.Col3x4{
    width: calc(75% - 20px);
    padding: 10px;
    display: inline-block;
}
.Col1x1{
    width: calc(100% - 20px);
}
.ShrinkContainer{
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
    display: block;
}
.ShrinkContainerNarrow{
    width: 45%;
    max-width: 800px;
    margin: 0 auto;
}
.ShrinkContainer2{
    width: 60%;
    max-width: 1400px;
    position: relative;
    margin: 0 auto;
}
.MyRow{
    display: block;
    margin: 0 -10px;
    font-size: 0;
}
/* COLS END */
/* FOOTER */
footer{
    display: block;
    position: relative;
    padding: 20px 0;
    background: #5c5c5c;
    color: #fff;
    text-align: center;
    margin-top: 10px;
}
footer img{
    display: inline-block;
    position: relative;
    max-width: 90%;
    margin-top: 80px;
    margin-bottom: 50px
}
footer a{    
    color: #fff;
    transition: all 0.4s ease;
}
footer a:hover{
    color: #104096;
}
.FooterCompanyName h4{
    display: block;
    font-size: 23px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 20px
}
.FooterAddress{
    display: block;
    position: relative;
}
.FooterAddress h5{
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px
}
.FooterAddress span{
    color: #999999;
}
.FooterSocials a{
    font-size: 26px;
    display: inline-block;
    padding: 15px;
}
.FooterCopyRight,
.FooterPowered{
    font-size: 13px;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
}
.FooterPowered, .FooterPowered a{
    color: #999999;
}
.FooterPowered{
    margin-bottom: 20px;
}
/* FOOTER END */
/* HEADER */
.NewLangs{
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    border-left: 1px solid #fff;
    position: relative;
    color: #fff;
}
.NewCurrentLang{
    display: block;
    position: relative;
    font-size: 11px;
    font-family: "BarlowLight", sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
}
.NewCurrentLang:hover{
    color: #104096;
}
.NewCurrentLang .fa-caret-down{
    font-size: 13px;
    vertical-align: middle;
    padding: 5px;
}
.NewCurrentLang .fa-globe{
    font-size: 20px;
    vertical-align: middle;
}
.NewOtherLangs{
    font-size: 11px;
    position: absolute;
    top: 100%;
    z-index: 99;
    background: #104096;
    left: 0;
    display: none;
}
.NewLangs:hover .NewOtherLangs{
    display: block;
}
.NewOtherLangs a{
    display: block;
    padding: 10px;
    color: #fff;
    font-family: "Barlow", sans-serif;
    transition: all 0.4s ease;
    text-transform: uppercase;
}
.NewOtherLangs a:hover{
    background: #fff;
    color: #104096;
}
.LogoContainer{
    display: inline-block;
    vertical-align: middle;
    width: 197px;
    text-align: right;
}
.LogoContainer img{
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}
.MenuContainer{
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 197px);
}
nav{
    display: inline-block;
    width: calc(100% - 200px);
    text-align: center;
    padding-top: 15px
}
nav ul{
    list-style: none;
    margin: 0;
}
nav li{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
nav li a{
    display: block;
    padding: 10px 25px;
    border-right: 1px solid #fff;
    transition: all 0.3s ease;
}
nav li a:hover{
    background: #104096;
}
nav li:last-child a{
    border: 0;
}
nav b{
    display: block;
    font-size: 23px;
    text-transform: uppercase;
    font-weight: normal;
}
nav sup{
    vertical-align: top;
    font-size: 15px;
}
nav small,
nav span{
    font-size: 13px;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
}
header{
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 1;
    font-size: 0;
    background: rgba(0,0,0,0.01);
    background: linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, .01));
}
header.reserve{
    top: 0;
    left: 0;
    width: 100%;
    background: #5c5c5c;
}
.LanguageSocial{
    display: inline-block;
    vertical-align: middle;
    width: 160px;
    text-align: right;
}
.SocialIcons{
    display: inline-block;
    vertical-align: middle;
}
.SocialIcons a{
    font-size: 16px;
    padding: 10px 20px;
    padding-left: 0;
    transition: all 0.3s ease;
}
.SocialIcons a:hover{
    color: #104096;
}
header.reserve nav{
    padding-top: 0;
}
/* HEADER END */
/* NEW SLIDER */
.NewSlider{
    display: block;
    position: relative;
    margin: 0 auto;
}
.NewSliderInner{
    display: block;
    position: relative;
}
.NewSlider ul{
    display: block;
    position: relative;
    white-space: nowrap;
    list-style: none;
    margin: 0;
    width: 100%;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
}
.NewSlider li{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    position: relative;
    transition: all 1s ease;
}
.NewSlider li img{
    width: 100%;
}

.NewSliderDots{
    position: absolute;
    top: 0;
    right: 40px;
    z-index: 3;
    text-align: center;
    width: 15px;
    line-height: 0;
}
.NewSliderDotsInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.NewSliderDots span{
    width: 6px;
    height: 6px;
    border: 3px solid #fff;
    display: inline-block;
    margin: 5px 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}
.NewSliderDots span.ActiveNewSliderDot,
.NewSliderDots span:hover{
    border: 3px solid #104096;
    background: #104096;
}
.MoveToLeft{
    display: block;
    position: absolute;
    top: calc(50% - 36px);
    left: 3%;
    font-size: 72px;
    z-index: 1;
    line-height: 1;
    cursor: pointer;
    transition: all 0.4s ease;
    color: #fff;
}
.MoveToRight{
    display: block;
    position: absolute;
    top: calc(50% - 36px);
    right: 3%;
    font-size: 72px;
    line-height: 1;
    z-index: 1;
    cursor: pointer;
    transition: all 0.4s ease;
    color: #fff;
}
.MoveToLeft:hover,
.MoveToRight:hover{
    color: #845927;
}
.InstaPadding{
    display: block;
    position: relative;
    margin: 40px 20px;
    margin-left: 0;
}
.Col1x4:last-child .InstaPadding{
    margin-right: 0;
}
.InstaPadding img{
    height: 250px;
    object-fit: cover;
    object-position: center;
}
.NewSliderDotsBottom .NewSliderDots{
    right: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    top: initial;
}
.NewSliderDotsBottom .NewSliderDots span{
    display: inline-block;
}
.NewSliderDotsHide .NewSliderDots{
    display: none;
}
.InstaTitle{
    text-align: center;
    font-size: 34px;
    font-weight: normal;
    width: 94%;
    margin: 0 auto;
    margin-top: 30px;
}
.InstaTitle a{
    font-weight: bold;
    transition: all 0.4s ease;
}
.InstaTitle a:hover{
    color: #fff;
}
.NewSliderContent{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.3);
    bottom: 0;
    text-align: center;
}
.NewSliderContentInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: calc(100% - 80px);
    white-space: normal;
}
.NewSliderContentInner h3{
    font-size: 22px;
    font-weight: normal;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
    white-space: normal;
    height: 34px;
    color: #fff;
    overflow: hidden;
    letter-spacing: 5px;
}
.NewSliderContentInner h2{
    font-size: 66px;
    letter-spacing: 10px;
    color: #fff;
    font-weight: normal;
    text-transform: uppercase;
}
.NewSliderText{
    font-size: 18px;
    white-space: normal;
    margin-bottom: 20px;
    height: 98px;
    overflow: hidden;
    line-height: 1.5;
    color: #fff;
}
.MinHeightToSlider img{
    min-height: 300px;
    object-fit: cover;
}
.RegBtnInline{
    display: block;
    margin: 0;
    border: 0;
    color: #fff;
    font-family: "BarlowSemiBold", sans-serif;
    font-size: 19px;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
}
.RegBtnInline:hover{
    color: #104096;
}
.NewSlider .MoveToLeft img,
.NewSlider .MoveToRight img{
    min-height: auto;
}
.NewSliderContent.TextAlignLeft{
    text-align: left;
}
.TextAlignLeft .NewSliderContentInner{
    position: relative;
    width: 30%;
    margin-left: 20%;
    padding-bottom: 20px;
}
.TextAlignLeft .MoveToLeft,
.TextAlignLeft .MoveToRight{
    bottom: 0;
    top: initial;
    position: relative;
    display: inline-block;
    margin: 10px;
    font-size: 0;
    left: initial;
    right: initial;
    padding: 10px 0;
    margin-left: 0;
}
.NewSliderContent h4{
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-weight: normal;
}
.NewSliderContent h5{
    font-size: 36px;
    text-transform: uppercase;
    color: #fff;
    margin: 10px 0;
    font-weight: normal;
    word-break: normal;
    white-space: normal;
}

/* NEW SLIDER END */
/* RESERVE FORM */
#MainPageReserve{
    display: block;
    position: relative;
    margin-top: -80px;
    width: 100%;
    font-size: 0;
    transition: all 0.4s ease;
}
#MainPageReserve .ShrinkContainer{
    width: calc(95% - 60px);
    background: #fff;
    padding: 30px 30px;
    position: relative;
}
#MainPageReserve .Label{
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    font-family: "Barlow", sans-serif;
}
#MainPageReserve .ShrinkContainer:after{
    position: absolute;
    content: "";
    width: 100%;
    display: block;
    height: 60px;
    bottom: 0;
    left: 0;
    box-shadow: 0px 0px 60px #0e1a35;
    z-index: -1;
}
.CloseMobileReserve{
    display: none;
}
.ReserveInner{
    display: block;
    background: #fff;
    border-bottom: 1px solid #d7d4c4;
    position: relative;
    user-select: none;
}
#MainPageReserve .Col1x6,
#MainPageReserve .Col1x12{
    vertical-align: middle;
}
#MainPageReserve .block{
    text-align: right;
    font-size: 13px;
    padding: 10px;
    padding-top: 0;
}
#MainPageReserve a{
    font-size: 12px;
    text-align: right;
    display: block;
    color: #104096;
    transition: all 0.4s ease;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
}
#MainPageReserve a:hover{
    color: #0b2027;
}
#MainPageReserve input{
    border: 0;
    background: transparent;
    padding: 10px 0;
}
.ReserveInner i{
    font-size: 14px;
    display: inline-block;
    color: #0b2027;
    width: 30px;
    vertical-align: middle;
    text-align: center;
    padding: 10px 0;
}
#MainPageReserve .datepicker,
#MainPageReserve .PromoCode{
    margin-right: -35px;
    width: calc(100% - 10px);
    padding: 10px 5px;
    vertical-align: middle;
    display: inline-block;
    z-index: 1;
    position: relative;
}

#MainPageReserve .Persons{
    display: inline-block;
    width: calc(100% - 60px);
    text-align: center;
    padding: 10px 0;
}
#MainPageReserve span{
    background: #f5f5f5;
    cursor: pointer;
}
.ReserveInner select{
    width: 100%;
    border: 0;
    font-size: 17px;
    padding: 10px 5px;
}
#MainPageReserve button{
    display: block;
    width: 100%;
    border: 0;
    background: #104096;
    border: 1px solid #104096;
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    padding: 9px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
}

#MainPageReserve button:hover{
    color: #104096;
    background: #fff;
}
#ChildAgeSelector{
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 100%;
    min-width: 150px;
}
.ChildAge{
    background: #104096;
    padding: 5px;
}
#ChildAgeSelector label{
    font-size: 12px;
    display: inline-block;
    width: 70%;
    vertical-align: middle;
    color: #fff;
}
#ChildAgeSelector select{
    background: #104096;
    border: 0;
    color: #fff;
    display: inline-block;
    width: 30%;
    vertical-align: middle;
}
.NoSliderReserve{
    height: 171px;
    display: block;
    position: relative;
}
/* RESERVE FORM END */
.HomeBody{
    text-align: center;
    padding: 50px 0;
    margin-top: 20px;
}
.PageTitle{
    font-size: 36px;
    font-weight: normal;
    color: #0b2027;
    text-transform: uppercase;
}
.PageSubtitle{
    color: #427aa1;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}
#Iframepage-iframe{
    width: 100%;
}
.AllHotels .Col1x3{
    vertical-align: middle;
    position: relative;
}
.HotelInfo{
    text-align: center;
}
.HotelInfoText{
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
}
.HotelOverlayImg{
    display: block;
    width: 100%;
}
.HotelOverlay{
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    transition: all 0.3s ease;
}
.HotelOverlayInner{
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    background: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, .01));
    width: calc(100% - 40px);
    padding: 20px;
    color: #fff;
}
.HotelName{
    font-size: 36px;
    margin-top: 20px;
    text-transform: uppercase;
    width: 90%;
    line-height: 1;
}
.HotelName sup{
    vertical-align: top;
}
.HotelCity{
    font-size: 16px;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
}
.HotelOverlay:hover{
    background: rgba(16, 64, 150, .75);
}
.HotelOverlay:hover .HotelShort{
    font-size: 18px;
    width: 80%;
    display: block;
    margin: 20px 0;
}
.HotelOverlay:hover .HotelLink{
    font-size: 16px;
    display: inline-block;
    background: #fff;
    color: #104096;
    padding: 10px 30px;
    max-width: 100%;
    text-transform: uppercase;
    font-family: "BarlowSemiBold", sans-serif;
}
.AllHotels{
    margin-top: 10px;
}
.MobileMenu{
    display: none;
}
@media (max-width: 1500px){
    nav li a{
        padding: 10px 15px;
    }
}
@media (max-width: 1400px){
    nav b{
        font-size: 18px;
    }
    nav sup{
        font-size: 12px;
    }
    nav small,
    nav span{
        font-size: 12px;
    }
    #MainPageReserve .ShrinkContainer{
        padding: 20px;
        width: calc(95% - 40px);
    }
    #MainPageReserve .Label{
        font-size: 12px;
    }
    #MainPageReserve input, #MainPageReserve select{
        font-size: 15px;
    }
    #MainPageReserve button{
        font-size: 15px;
    }
    .HotelName{
        font-size: 26px;
        width: 100%;
    }
    .HotelCity{
        font-size: 14px;
    }
    .HotelOverlay:hover .HotelShort{
        font-size: 14px;
    }
    .HotelOverlay:hover .HotelLink{
        font-size: 12px;
    }
    body{
        font-size: 15px;
    }
    .PageTitle{
        font-size: 26px;
    }
    .PageSubtitle{
        font-size: 12px;
    }
    .NewSliderContent h4{
        font-size: 12px;
    }
    .NewSliderContent h5{
        font-size: 26px;
    }
    .RegBtnInline{
        font-size: 15px;
    }
    .NewSliderContentInner h3{
        font-size: 15px;
    }
    .NewSliderContentInner h2{
        font-size: 36px;
    }
    #MainPageReserve a{
        font-size: 10px;
    }
    .NewSliderText,
    .HotelInfoText{
        font-size: 14px;
    }
}
@media (max-width: 1250px){
    #MainPageReserve .ShrinkContainer{
        padding: 20px;
        width: calc(100% - 60px);
    }
    .Col1x6{
        width: calc(16.6666% - 10px);
        padding: 5px;
    }
    .Col1x12{
        width: calc(8.33333% - 10px);
        padding: 5px;
    }
}
@media (max-width: 1200px){
    nav{
        width: calc(100% - 170px)
    }
    .LogoContainer{
        width: 170px;
    }
    .MenuContainer{
        width: calc(100% - 170px)
    }
    #MainPageReserve{
        margin-top: 20px;
    }
    #MainPageReserve .ShrinkContainer{
        width: calc(100% - 40px);
    }
    #MainPageReserve .ShrinkContainer:after{
        height: 100%;
        box-shadow: 0px 0px 30px #0e1a35;
    }
    nav b{
        font-size: 16px;
    }
    nav sup{
        font-size: 10px;
    }
    nav small,
    nav span{
        font-size: 10px;
    }
    nav li a{
        padding: 5px 10px;
    }
    .HotelName{
        font-size: 18px;
    }
    .HotelCity{
        font-size: 12px;
    }
    .HotelOverlay:hover .HotelShort{
        font-size: 12px;
    }
    .HotelOverlay:hover .HotelLink{
        font-size: 11px;
    }
}
@media (max-width: 1050px){
    .MenuContainer{
        display: none;
    }
    .LogoContainer{
        padding: 10px 0;
    }
    .MobileMenu{
        display: inline-block;
        vertical-align: middle;
        width: 40px;
        height: 25px;
        position: relative;
        color: #fff;
        width: calc(100% - 180px);
        /* margin-top: 10px; */
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .MobileMenu:before{
        width: 40px;
        height: 25px;
        border-top: 2px solid;
        border-bottom: 2px solid;
        content: "";
        position: absolute;
        top: 0;
        right: 0;
    }
    .MobileMenu:after{
        width: 25px;
        content: "";
        position: absolute;
        top: calc(50% + 1px);
        right: 0;
        border-top: 2px solid;
    }
    .MobileMenu:hover{
        color: #0b2027;
    }
    .ShowMobileMenu{
        background: #5c5c5c;
        z-index: 9;
    }
    .ShowMobileMenu .MenuContainer{
        display: block;
        border-top: 1px solid #fff;
        width: 100%;
    }
    nav{
        width: 100%;
        text-align: left;
    }
    .LanguageSocial{
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    nav li{
        width: 50%;
    }
    nav li a{
        border: 0;
        border-bottom: 1px solid #fff;
        margin: 5px;
    }
    #MainPageReserve .Col1x6{
        width: calc(50% - 10px);
    }
    #MainPageReserve .Col1x12{
        width: calc(25% - 10px);
    }
}
@media (max-width: 1000px){
    .AllHotels .Col1x3{
        width: calc(50% - 20px);
    }
    .TextAlignLeft .NewSliderContentInner {
        width: 80%;
        margin-left: 5%;
        padding-bottom: 0;
    }
    .NewSliderContentInner h3{
        font-size: 13px;
    }
    .NewSliderContentInner h2{
        font-size: 24px;
    }
    .ShrinkContainerNarrow{
        width: 75%;
    }
    .NewSliderDots{
        right: 10px;
    }
}
@media (max-width: 700px){
    .AllHotels .Col1x3{
        width: calc(100% - 20px);
    }
    .HotelOverlay:hover .HotelShort{
        width: 100%;
        margin: 10px 0;
    }
    .HotelOverlay .HotelShort{
        font-size: 12px;
        display: block;
        margin: 10px 0;
        width: 100%;
    }
    .HotelOverlay .HotelLink{
        font-size: 11px;
        display: inline-block;
        background: #fff;
        color: #104096;
        padding: 10px 30px;
        max-width: 100%;
        text-transform: uppercase;
        font-family: "BarlowSemiBold", sans-serif;
    }
    .LogoContainer img{
        width: 110px;
        margin-left: 10px;
    }
    .LogoContainer{
        text-align: left;
    }
}
@media (max-width: 500px){
    #MainPageReserve .Col1x6,
    #MainPageReserve .Col1x12{
        width: calc(100% - 10px);
    }
    .RegBtnInline{
        font-size: 13px;
    }
    footer img{
        margin: 20px 0;
        width: 120px;
    }
    .FooterAddress h5{
        font-size: 12px;
    }
    nav li{
        width: 100%;
    }
    body{
        width: 100%;
        padding: 0;
    }
    header{
        top: 0;
        left: 0;
        width: 100%;
    }
}