#curve {
    width: 302px;
    height: 140px;
    background: #fff;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    overflow: hidden;
    position: fixed;
    /* top: 16px; */
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-shadow: 0 4px 8px rgba(0,0,0,.16);
    -moz-box-shadow: 0 4px 8px rgba(0,0,0,.16);
    box-shadow: 0 4px 8px rgba(0,0,0,.16);
    z-index: 1029;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
#curve.sticky {
    margin-top: -50px;
    opacity: 0;
    z-index: -2;
}
main {
    height: 560px;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 8px rgba(0,0,0,.3);
    -moz-box-shadow: 0 4px 8px rgba(0,0,0,.3);
    box-shadow: 0 4px 8px rgba(0,0,0,.3);
}
#book-online-btn{
    position: relative;
    cursor: pointer;
    width: 220px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    right: 10px;
    font-size: 16px;
    color: #505050;
    text-decoration: none;
    border: solid 1px #8888889e;
    background: #fff;
    text-align: center;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
#book-online-btn:after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #c5a67c;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
#book-online-btn:hover{
    color: #fff !important;
    border: solid 1px #c5a67c;
    font-weight:500
}
#book-online-btn:hover:after{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.lang-device-container{
    display: none;
    margin-top: 25px;
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
}
.lang-device{
    text-decoration:none !important;
}
.lang-device:hover, .lang-device.active{
    color: #c5a67c !important;
}
.aside-section .navbar-brand {
    margin-right: 0 !important;
}
.aside-section {
    top: 0;
    bottom: 0;
    position: fixed;
}
.aside-left {
    overflow: hidden;
    z-index: 1200;
    width: 40%;
    left: 0;
    /* background-color: #445366; */
    background-color: #b79667;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: transform 400ms ease-in-out;
}
.aside-right {
    z-index: 1200;
    width: 60%;
    right: 0;
    background-color: #f9f9f4;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: transform 400ms ease-in-out;
}
.aside-list {
    list-style-type: none !important;
    padding-left: 50px;
}
.aside-content {
    margin-top: 150px;
    padding: 0 40px;
    position: relative;
    color: white;
    text-align: center;
}
.aside-list li {
    margin-bottom: 30px;
}
.aside-anchor::after {
    content: "";
    position: absolute;
    bottom: 0;
    background-color: #ffffff00;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
}
.aside-anchor::before {
    border-radius: 2px;
    content: "";
    position: absolute;
    bottom: 0;
    background-color: #c5a67c;
    left: 0;
    height: 1px;
    z-index: 1;
    width: 50%;
    -webkit-transition: transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
}
.aside-anchor:hover:before {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.aside-anchor {
    text-decoration: none !important;
    padding-bottom: 7px;
    color: #505050 !important;
    text-decoration: none;
    font-size: 32px;
    position: relative;
    font-weight: 400;
    letter-spacing: 2px;
}
input[type="checkbox"] {
    display: none;
}
aside .aside-left.open{
    transform: translateY(0%);
}
aside .aside-right.open{
    transform: translateX(0%);
}
input[type="checkbox"]:checked ~ #languages {
    z-index: 0;
}
input[type="checkbox"]:checked ~ #menu-btn{
    overflow: hidden;
}
input[type="checkbox"]:checked ~ #menu-btn #menu-btn-text,
input[type="checkbox"]:checked ~ #menu-btn:before,
input[type="checkbox"]:checked ~ #menu-btn #languages {
    opacity: 0;
    z-index: -1;
}
input[type="checkbox"]:checked ~ #menu-btn .bar {
    background-color: #fff;
}
input[type="checkbox"]:checked ~ #menu-btn .top {
    -webkit-transform: translateY(8px) rotateZ(45deg);
    -moz-transform: translateY(8px) rotateZ(45deg);
    -ms-transform: translateY(8px) rotateZ(45deg);
    -o-transform: translateY(8px) rotateZ(45deg);
    transform: translateY(8px) rotateZ(45deg);
}
input[type="checkbox"]:checked ~ #menu-btn .bottom {
    -webkit-transform: translateY(-8px) rotateZ(-45deg);
    -moz-transform: translateY(-8px) rotateZ(-45deg);
    -ms-transform: translateY(-8px) rotateZ(-45deg);
    -o-transform: translateY(-8px) rotateZ(-45deg);
    transform: translateY(-8px) rotateZ(-45deg);
}
input[type="checkbox"]:checked ~ #menu-btn .middle {
    width: 0;
}
.middle {
    margin: 0 auto;
}
#menu-btn-text{
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#menu-btn:hover span:nth-child(3){
    width: 24px;
}
#menu-btn:hover {
    width: 112px;
}
#menu-btn:hover > #languages {
    left: 175px;
}
#menu-btn:hover:before{
    opacity: 1;
    transform:scale(1);
}
#menu-btn:before{
    transform-origin: left;
    font-family: "Font Awesome 6 Free";
    /* content: "\f177" !important; */
    content: '\2190';
    position: absolute;
    top: 8px;
    left: 45px;
    width: 15px;
    overflow: hidden;
    font-weight: 900;
    font-size: 15px;
    color: #505050;
    opacity: 0;
    transform:scale(.6);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
#menu-btn {
    width: 105px;
    position: fixed;
    left: 30px;
    top: 22px;
    z-index: 99999;
    padding: 7px 10px;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
.bar {
    display: block;
    background-color: #505050;
    width: 30px;
    height: 3px;
    border-radius: 5px;
    margin: 5px auto 5px 0;
    transition: background-color 0.3s ease-in, transform 0.3s ease-in,
    width 0.3s ease-in;
}
#menu-footer-book{
    position: relative;
    margin-top: 100px;
}
#menu-footer-book::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 100px;
    background: #c0c0c0;
    left: 50%;
    top: 65px;
}
#menu-footer-book .more{
    display: inline-block;
}
#menu-footer-book a{
    background: transparent;
    border: solid 1px #909090;
    font-size: 24px;
    text-decoration: none !important;
    color: #707070;
}
#menu-footer::after{

}
#menu-footer{
    position: relative;
    bottom: 0;
    height: 180px;
    /*background: #d79e7d;
    background: linear-gradient(to top,#c5a67c,#e7bd74); 
    background-image: linear-gradient(181deg,#c5a67cd9 12%,#c5a67c 89%)!important; */
}
#menu-footer .menu-footer-link{
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
    color: #fff !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 17px;
}
#logo-menu{
    margin-top: 20px;
    /*position: absolute;*/
    /*top: 100px;*/
    /*left: 50%;*/
    /*-ms-transform: translateX(-50%);*/
    /*-webkit-transform: translateX(-50%);*/
    /*transform: translateX(-50%);*/
}
#menu-toggle {
    position: fixed;
    background-color: rgba(255,255,255,1) !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999999;
    overflow: hidden;
    visibility: hidden !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#menu-toggle.closed {
    visibility: visible !important;
    -webkit-animation-name: slideLeft !important;
    animation-name: slideOutLeft !important;
    animation-duration: 800ms;
}
#menu-vertical {
    height: 50px;
}
#menu-toggle.opened {
    background-size: cover;
    visibility: visible !important;
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    animation-duration: 800ms;
}
#menu-toggle ul li {
    margin-top: 5px;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
}
#menu-toggle ul li span{
    margin-right: 20px;
    font-size: 22px;
}
#menu-toggle ul li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #303030;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
#menu-toggle ul li a:before {
    content: none !important;
}
#menu-toggle ul li a::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f0a9" !important;
    position: absolute !important;
    color: #c5a67c !important;
    right: 50px !important;
    top: 50% !important;
    font-size: 14px !important;
    opacity: 0;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
#menu-toggle ul li:hover a::before {
    right: 30px !important;
    opacity: 1;
}
#menu-toggle ul li:hover::before {
    width: 50px;
}
#menu-toggle ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #00000015;
}
#menu-toggle.opened ul li.oo {
    opacity: 1;
    transform: translateY(0);
    transition: all 500ms ease-in-out;
    /*transition-delay: 1000ms;*/
}
#menu-toggle.closed ul li.cc {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 500ms ease-in-out;
    /*transition-delay: 100ms;*/
}
#menu-toggle ul li a {
    width: 100%;
    display: block;
    color: #505050;
    font-size: 32px;
    position: relative;
}
#menu-toggle ul li .nav-link{
    text-align: left !important;
}
#menu-toggle ul li .nav-link-child span{
    color: #fff !important;
    font-weight: 700;
}
#menu-toggle ul li .nav-link-child a{
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}
#menu-toggle ul li .nav-link-child {
    margin-top: 15px;
    font-weight: 700;
}
#menu-toggle ul li a:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    background: #505046;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
#menu-toggle ul li a:hover {
    color: #c5a67c !important;
}
#menu-toggle ul li.active a {
    color: #c5a67c !important;
}
#menu{
    display: flex;
    align-content: center;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #fff;
    height: 84px;
    min-height: 84px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    /*-webkit-box-shadow: 0 2px 6px 0 rgba(0,0,0,.24);*/
    /*-moz-box-shadow: 0 2px 6px 0 rgba(0,0,0,.24);*/
    /*box-shadow: 0 2px 6px 0 rgba(0,0,0,.24);*/
}
#menu #menu-btn span{
    background: #505050 !important;
    width: 30px;
    height: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
#menu #menu-btn{
    border:none !important;
    border-radius: 0;
    height: 50px;
    width: 45px;
    position: relative;
}
#menu #menu-btn:hover + #languages {
    left: 184px;
}
#languages:hover:before {
    right: -1px;
    left: -1px;
}
#languages:before {
    content: '';
    background: #766f6b;
    position: absolute;
    height: 1px;
    left: 0;
    right: 100%;
    bottom: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
#languages {
    display: flex;
    align-items: center;
    z-index: 999999;
    color: #766f6b;
    cursor: pointer;
    position: fixed;
    left: 190px;
    top: 30px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
}
#languages div{
    position: absolute;
    left: -32px;
    top: -1px;
}














#menu #menu-btn:hover span:nth-child(2){
    width: 24px;
    margin-left: 3px;
}
#menu #menu-btn:hover > #btn-text{
    width: 85px;
}
#menu #menu-btn:hover > #btn-text:before{
    opacity: 1;
    transform:scale(1);
}
#menu #btn-text:before{
    content: '\2190';
    position: absolute;
    left: 0;
    width: 15px;
    overflow: hidden;
    font-weight: bold;
    top: -2px;
    font-size: 20px;
    opacity: 0;
    transform:scale(.6);
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
#menu #btn-text{
    position: absolute;
    top: -1px;
    left: 100%;
    color: #505050;
    height: 50px;
    width: 70px;
    text-align: center;
    line-height: 52px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
#menu .navbar-toggler {
    padding: 2px 7px;
}
#menu .menu-info{
    color:#505050;
    font-size: 16px;
}
#menu .menu-info span{
    vertical-align: middle;
    margin-left: 25px;
    margin-right: 25px;
}
#menu .menu-lang{
    margin-right: 60px;
    color:#505050;
    text-decoration: none;
    font-size: 16px;
}
/*#menu #menu-book-btn:hover{*/
/*    color: #fff;*/
/*    border: solid 1px #d5d5d5;*/
/*}*/
#menu #menu-book-btn{
    cursor: pointer;
    width: 220px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto !important;
    margin-bottom: auto !important;
    /*position: relative;*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*font-size: 16px;*/
    /*color: #505050;*/
    /*text-decoration: none;*/
    /*border: solid 1px #505050;*/
    /*background: #fff;*/
    /*width: 220px;*/
    /*height: 45px;*/
    /*text-align: center;*/
    /*-webkit-transform: translateZ(0);*/
    /*transform: translateZ(0);*/
    /*-webkit-transition-duration: 0.5s;*/
    /*transition-duration: 0.5s;*/
}
/*#menu #menu-book-btn:after{*/
/*    content: "";*/
/*    position: absolute;*/
/*    z-index: -1;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: #c5a67c;*/
/*    -webkit-transform: scaleX(0);*/
/*    transform: scaleX(0);*/
/*    -webkit-transform-origin: 0 50%;*/
/*    transform-origin: 0 50%;*/
/*    -webkit-transition-property: transform;*/
/*    transition-property: transform;*/
/*    -webkit-transition-duration: 0.5s;*/
/*    transition-duration: 0.5s;*/
/*    -webkit-transition-timing-function: ease-out;*/
/*    transition-timing-function: ease-out;*/
/*}*/
/*#menu #menu-book-btn:hover:after, #menu #menu-book-btn:focus:after, #menu #menu-book-btn:active:after{*/
/*    -webkit-transform: scaleX(1);*/
/*    transform: scaleX(1);*/
/*    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);*/
/*    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);*/
/*}*/
#menu-book-btn-device{
    display:none;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    background: #c5a67c;
    height: 45px;
    line-height: 45px;
    text-align: center;
}
/*#menu #menu-toggle {*/
/*    background-color: rgba(230,168,121,.7) !important;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    top: 120px;*/
/*    bottom: 0;*/
/*}*/
/*#menu #menu-toggle ul li:first-child{*/
/*    padding-top: 50px !important;*/
/*}*/
/*#menu #menu-toggle ul li:last-child{*/
/*    padding-bottom: 35px !important;*/
/*}*/
/*#menu #menu-toggle ul li a {*/
/*    text-align: center;*/
/*    font-size: 28px !important;*/
/*    font-weight: lighter;*/
/*    padding-top: 20px;*/
/*    padding-bottom: 20px;*/
/*    position: relative;*/
/*}*/
/*#menu #menu-toggle ul li.active a{*/
/*    font-weight: bold !important;*/
/*}*/
/*#menu #menu-toggle ul li.active a:not(.language-item)::after,*/
/*#menu #menu-toggle ul li a:not(.language-item):hover::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 76px;*/
/*    height: 1px;*/
/*    background: #c5a67c;*/
/*    bottom: 0;*/
/*    left: 50%;*/
/*    -ms-transform: translateX(-50%);*/
/*    -webkit-transform: translateX(-50%);*/
/*    transform: translateX(-50%);*/
/*}*/
/*#menu #menu-toggle ul li a {*/
/*    font-family: 'Open Sans', sans-serif;*/
/*    color:#505050;*/
/*    font-size: 16px;*/
/*}*/
/*#languages:hover:before {*/
/*    right: -1px;*/
/*    left: -1px;*/
/*}*/
/*#languages:before {*/
/*    content: '';*/
/*    background: #c5a67c;*/
/*    position: absolute;*/
/*    height: 1px;*/
/*    left: 0;*/
/*    right: 100%;*/
/*    bottom: 0;*/
/*    -webkit-transition: all 300ms linear;*/
/*    -moz-transition: all 300ms linear;*/
/*    -ms-transition: all 300ms linear;*/
/*    -o-transition: all 300ms linear;*/
/*    transition: all 300ms linear;*/
/*}*/
/*#languages {*/
/*    color: #505050;*/
/*    font-weight: 500;*/
/*    cursor: pointer;*/
/*    position: absolute;*/
/*    left: 175px;*/
/*    top: 50%;*/
/*    -ms-transform: translateY(-50%);*/
/*    -webkit-transform: translateY(-50%);*/
/*    transform: translateY(-50%);*/
/*    -webkit-transition: all 300ms linear;*/
/*    -moz-transition: all 300ms linear;*/
/*    -ms-transition: all 300ms linear;*/
/*    -o-transition: all 300ms linear;*/
/*}*/
/*#languages div{*/
/*    position: absolute;*/
/*    left: -32px;*/
/*    top: -4px;*/
/*    color: #505050;*/
/*}*/
#languages-content{
    background: #fff;
    position: absolute;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    height: 300px;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}
#languages-choice{
    z-index: -1;
    top: -40%;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    background: rgba(0,0,0,.4);
    opacity: 0;
    transform:scale(.6);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
#languages-choice.open{
    transform:scale(1);
    top: 0;
    opacity: 1;
    z-index: 1000;
}
.language-item{
    text-decoration: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #707070;
    border: solid 2px #909090;
    background: #fff;
    width: 220px;
    height: 45px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.language-item.active{
    color: #c5a67c !important;
    border: solid 2px #c5a67c !important;
}
.language-item:hover{
    color: #c5a67c !important;
    border: solid 2px #c5a67c !important;
}
#logo-main{
    margin-bottom: 10px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
#logo{
    /*position: absolute;*/
    /*left: 50%;*/
    /*transform-origin: left;*/
    /*-ms-transform: translateX(-50%);*/
    /*-webkit-transform: translateX(-50%);*/
    /*transform: translateX(-50%);*/
    margin-right: 0 !important;
    margin-top: 34px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
 #logo-device{
    display: none;
    position: absolute;
     right: 1px; 
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
} 
#covid-btn a{
    text-decoration: none !important;
    color: #fff !important;
    display: inline-block;
    width: 100%;
    height: 100%;
}
#covid-btn button{
    cursor: pointer;
    border: solid 1px #fff !important;
    width: 33px;
    height: 35px;
    position: absolute;
    left: -41px;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    top: -1px;
}
#covid-btn{
    z-index: 999;
    position: absolute;
    top: 180px;
    right: -250px;
    display: block;
    width: 129px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    background: rgba(0,0,0,.5);
    font-size: 14px !important;
    font-weight: 700;
    border: solid 1px #fff;
    -webkit-transition:all 600ms cubic-bezier(.21,.11,.31,1.38);
    -moz-transition:all 600ms cubic-bezier(.21,.11,.31,1.38);
    -ms-transition:all 600ms cubic-bezier(.21,.11,.31,1.38);
    -o-transition:all 600ms cubic-bezier(.21,.11,.31,1.38);
    transition:all 600ms cubic-bezier(.21,.11,.31,1.38)
}
#covid-btn.open{
    right: 35px;
}
/* STICKY */
#menu.sticky{
    height: 80px !important;
    min-height: 80px !important;
    -webkit-box-shadow: 0 1px 6px 0 rgba(0,0,0,.20);
    -moz-box-shadow: 0 1px 6px 0 rgba(0,0,0,.20);
    box-shadow: 0 1px 6px 0 rgba(0,0,0,.20);
}
#menu.sticky #logo-main{
    margin-top: -70px;
    opacity: 0;
    margin-bottom: 0;
}
#menu.sticky #menu-book-btn {
}
#menu-btn.sticky ~ #languages {
    top: 29px;
}
#menu-btn.sticky {
    top: 18px;
}
#menu.sticky #logo{
/*    -ms-transform: scale(.70);
    -webkit-transform: scale(.70);
    transform: scale(.70); */
    opacity: 0;
    position: absolute;
    display: none;
}
#menu.sticky #logo-device{
    /*display: block;*/
    position: relative;
    opacity: 1;
    display: block;
}
/* END STICKY */
@media (max-width: 1450px) {
    #menu #menu-toggle ul li {
        margin-left: 0;
        margin-right: 0;
    }
    #menu #menu-toggle ul li {
        position: relative;
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media (max-width: 1200px) {
    #menu #menu-book-btn {
        width: 125px;
        height: 45px;
        line-height: 45px;
    }
    #menu .container {
        max-width: none;
    }
    #menu .nav-item:not(.languages) {
        margin-left: 15px;
        margin-right: 15px;
    }
    #menu button{
        margin-right: 15px;
    }
    #menu #menu-toggle ul li a {
        font-size: 14px;
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 1050px) {
    #menu {
    padding-left: 10px;
    padding-right: 10px; 

    }
    #menu-btn {
    left: 20px;
    }
    #languages {
    left: 160px; 
    }
    #languages div{
    left: -20px;
    }
}
@media (max-width: 992px) {
    #languages {
        top: 26px;
    }
    #curve{
        display: none !important;
    }
    .aside-list{
        padding-left: 0;
    }
    .aside-list li{
        text-align: center;
    }
    .aside-section {
        justify-content: center !important;
    }
    #menu-btn {
        top: 18px;
    }
    input[type="checkbox"]:checked ~ #menu-btn .bar {
        background-color: #505050;
    }
    .aside-left {
        width: 0;
    }
    .aside-right {
        width:100%;
    }
    .slider-container {
        border-left: none !important;
        border-right: none !important;
    }
    #menu-book-btn-device{
        display:block;
    }
    #menu #menu-book-btn {
        display: none;
    }
    #book-online-btn {
        display: none;
    }
    #menu #menu-toggle{
        top: 70px;
    }
    #menu #menu-book-btn{
       position: absolute;
        top: 75px;
        right: 25px;
    }
    #menu .menu-info {
        display: none;
    }
    #menu #menu-toggle ul {
        height: auto;
    }
    #share-slider {
        left: 8px;
        top: 125px;
    }
    #share-slider a {
        display: inline-block;
        margin-left: 7px;
    }
    #share{
        right: 25px;
        top: 120px;
    }
    #share ul {
        margin-bottom: 10px;
    }
    #share ul li {
        margin-left: 5px;
    }
    #book-online{
        left: 15px;
        right: auto;
        top: 75px;
    }
    #menu {
        top: 0;
        right: 0;
        left: 0;
        max-width: none;
    }
    #menu #menu-toggle ul li a:hover::after,
    #menu #menu-toggle ul li.active a::after {
        display: none !important;
    }
    #menu #menu-toggle ul li a {
        color: #434343 !important;
    }
    .languages{
        position: relative !important;
        text-align: center !important;
    }
    #logo-device{
        display: block;
        opacity: 1 !important;
        /* position: relative; */
        right: 20px;
    }
    #logo{
        display: none;
    }
    #menu-toggle {
        margin-left: auto !important;
    }
    #menu .navbar-collapse {
        background-color: rgba(197,162,121,.9) !important;
        text-align: center;
        top: 60px;
        left: 0;
        right: 0;
        position: absolute;
    }
    #menu #menu-toggle ul {
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
    }
    #menu #menu-toggle ul li {
        margin-top: auto;
        padding-bottom: 10px;
    }
    #menu #menu-toggle ul li a {
        padding-bottom: 5px;
    }
    .languages {
        position: relative !important;
        top: 0;
        right: 0;
    }
    .language-item {
        text-align: center;
    }
    #menu #menu-toggle ul li.active a::after{
        bottom: 0 !important;
    }
    #menu #menu-toggle ul li:not(.languages):not(.book-menu) a:hover::after{
        bottom: 0 !important;
    }
    #menu #menu-toggle ul li a {
        position: relative;
        display: inline-block !important;
        color: #fff !important;
        font-size: 16px;
    }
    #menu{
        height: 78px;
        min-height: 78px;
    }
}
@media (max-width: 768px) {
    #logo-menu {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    #logo-device {
        display: block;
        position: absolute;
        right: 5px;
    }
    #menu-footer{
        position: relative;
        bottom: 0;
        height: 100px;
        background: #fff;
    }
    #menu-footer-book {
        position: relative;
        margin-top: 25px;
    }
    #menu-toggle ul li {
        max-width: 250px;
        margin: 10px auto;
    }
    #menu-toggle ul li a {
        font-size: 24px;
    }
    #scroll{
        display: none;
    }
    #myToast {
        right: 5px;
        bottom: 5px;
    }
    .swiper-button-prev, .swiper-button-next{
        display: none;
    }
}
@media (max-width: 550px) {
    .aside-section .navbar-brand {
      margin-bottom: 30px !important;
    }
    .aside-anchor {
    padding-bottom: 7px;
    font-size: 28px;
    letter-spacing: 1px;
    }
    .aside-list li {
      margin-bottom: 15px;
    }
    .lang-device-container{
        display:flex;
        justify-content: space-around;
    }
    .lang-device{
        
    }
    #menu-footer .menu-footer-link {
      margin-top: 5px;
      margin-bottom: 5px;
      display: block;
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      line-height: 15px;
    }
    #btn-close {
        left: 15px;
        top: 20px;
    }
    #languages{
        display: none;
    }
    #share{
        display: none;
    }
}
@media (max-width: 425px) {
    #logo-device {
        display: block;
        position: absolute;
        right: 5px;
    }
}
@media (max-width: 375px) {
    #logo-device {
        display: block;
        position: absolute;
        right: 1px;
    }
}
