nav.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: #131518f2 !important;
    padding: 0 20px;
}

nav.navbar .container-fluid {
    padding-right: 0;
}

.navbar-nav {
    /*width: 460px;*/
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

body {
    background-color: #1e2226;
    color: white;
    font-family: 'cereal', sans-serif;
    padding: 130px 30px 0 30px;
}

.nav-link {
    color: #cdcdcd !important;
    padding: .9rem !important;
    font-size: 14px;
}

.nav-link.active {
    background: #ad974f5e;
}

.navbar-collapse {
    /*flex-grow: 0 !important;*/
}


.regular-btn {
    background-color: #785f37;
    border: 0;
    color: white;
    /*text-transform: uppercase;*/
    font-size: 13px;
    font-weight: 500;
    padding: 0.9rem 1.5rem;
    border-radius: 100px;
}
.modal-title {
    color: #fff;
}
.modal-content {
    background-color: #131518 !important;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 32px;
    outline: 0;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 1px solid #cdcdcd1a;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem; }
.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto; }

.whatsapp-logo {
    height: 40px;
    width: 40px;
    object-fit: cover;
    margin: 0 0.9rem;
}

.copyright-note {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 1rem;
}

footer .social-icon {
    padding: .5rem;
}

footer .social-icon svg {
    height: 30px;
    width: 30px;
    fill: #fff;
}

footer {
    margin-top: 60px;
    background-color: #131518;
    margin-left: -30px;
    width: 100vw;
}

footer .social-icon:first-child {
    margin-left: auto;
}

footer .social-icon:last-child {
    margin-right: auto;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
    background-image: url('../icon/bars-solid.svg');
    height: 20px;
    width: 20px;
}
.custom-toggle-wrapper {
    height: 16px;
    width: 20px;
}

.navbar-toggler-bar {
    display: block;
    height: 2px;
    width: 20px;
    background-color: white;
}

.navbar-toggler-bar.bar2 {
    margin: 5px 0;
}


.navbar-toggler[aria-expanded="true"] .navbar-toggler-bar.bar2 {
    /*display: none;*/
    animation: bar2-animation;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-bar.bar1 {
    /*margin-top: 15px;*/
    animation: bar1-animation;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
    /*transform: rotateZ(45deg) translate(5px, 5px);*/
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-bar.bar3 {
    /*margin-top: -2px;*/
    animation: bar3-animation;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;

    /*transform: rotateZ(-45deg) translate(5px, -5px);*/
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-bar.bar2 {
    /*display: none;*/
    animation: bar2-animation-rev;
    animation-duration: 1000ms;
}

.navbar-toggler[aria-expanded="false"] .navbar-toggler-bar.bar1 {
    /*margin-top: 15px;*/
    animation: bar1-animation-rev;
    animation-duration: 1000ms;
    /*animation-direction: reverse;*/
    /*animation-fill-mode: backwards;*/
    /*transform: rotateZ(45deg) translate(5px, 5px);*/
}
.navbar-toggler[aria-expanded="false"] .navbar-toggler-bar.bar3 {
    /*margin-top: -2px;*/
    animation: bar3-animation-rev;
    animation-duration: 1000ms;
    /*animation-direction: reverse;*/
    /*animation-fill-mode: backwards;*/

    /*transform: rotateZ(-45deg) translate(5px, -5px);*/
}

@keyframes bar1-animation {
    50% {
        /*margin-top: 15px;*/
        transform: translate(0, 7px);
    }
    100% {
        /*margin-top: 15px;*/
        transform: rotateZ(45deg) translate(5px, 5px);
    }
}

@keyframes bar2-animation {
    50% {}
    100% {
        background-color: transparent;
    }
    /*100% {*/
    /*    !*margin-top: 15px;*!*/
    /*    transform: rotateZ(45deg) translate(5px, 5px);*/
    /*}*/
}

@keyframes bar3-animation {
    50% {
        /*margin-top: 15px;*/
        transform: translate(0, -7px);
    }
    to {
        /*margin-top: -2px;*/
        transform: rotateZ(-45deg) translate(5px, -5px);
    }
}

@keyframes bar1-animation-rev {
    0% {
        transform: rotateZ(45deg) translate(5px, 5px);
    }
    50% {
        transform: translate(0, 7px);
    }
    100% {
        /*margin-top: 15px;*/
        transform: rotateZ(0) translate(0, 0);
    }
}

@keyframes bar2-animation-rev {
    0% {
        background-color: transparent;
    }
    100% {
        background-color: white;
    }
}

@keyframes bar3-animation-rev {
    0% {
        transform: rotateZ(-45deg) translate(5px, -5px);
    }
    50% {
        transform: translate(0, -7px);
    }
    100% {
        /*margin-top: -2px;*/
        transform: rotateZ(0) translate(0, 0);
    }
}

@keyframes navbar-btn-animation {
    0% {
        background-image: url('../icon/bars-solid.svg');
        height: 20px;
        width: 20px;
    }
    95% {
        background-image: url('../icon/bars-solid.svg');
        height: 20px;
        width: 20px;
        transform: rotateZ(-45deg);
    }
    100% {
        background-image: url('../icon/x-solid.svg');
        height: 16px;
        width: 20px;
        transform: rotateZ(-90deg);
    }
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url('../icon/x-solid.svg');
    animation: navbar-btn-animation;
    animation-duration: 5000ms;
    height: 16px;
    width: 20px;
    transform: rotateZ(-90deg);
}

.app-logo {
    height: 70px;
    margin-left: 8px;
}

.modal-dialog .btn-close {
    background: url(../icon/x-solid.svg);
    background-color: #cdcdcd2b;
    background-repeat: no-repeat;
    background-size: 40% 100%;
    background-position: center;
    height: 4px;
    width: 4px;
    padding: 15px;
    border-radius: 30px;
    margin: unset;
}

.navbar .dropdown-item {
    font-size: 14px;
    font-weight: 400;
}

.navbar .dropdown-divider {
    margin: 0;
}

.navbar .dropdown-menu a {
    color: #fff;
    padding: 0.8rem 1.1rem !important;
}
.navbar .dropdown-menu {
    background-color: #131518d6;
    padding: 0;
    min-width: 1rem;
    margin-top: 20px;
}

.navbar .dropdown-menu a:hover {
    background: #ad974f;
    color: #272727;
}

footer .navigation-info-wrapper p {
    line-height: 40px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}

footer .navigation-info-wrapper {
    margin: 0 !important;
}

footer .book-via {
    font-size: 12px;
    font-weight: 600;
    color: #565450;
}

footer .bookable-links a {
    font-size: 14px;
    margin: 8px 0;
}

footer .booking-logo {
    height: 30px;
    width: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

footer .booking-logo.bookingcom {
    background-image: url('../images/bookingcom-logo.svg');
}

footer .booking-logo.airbnb {
    background-image: url('../images/airbnb-logo.png');
}

footer .page-navigations a {
    font-size: 14px;
    line-height: 40px;
    color: #99835e !important;
    font-weight: 500;
    text-decoration: none !important;
}

footer .page-navigations {
    display: flex;
    flex-direction: row;
}

footer .round-separator {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: #ffffff36;
    margin: auto 10px;
}

footer .white-link {
    text-decoration: none;
    color: white;
}

.whatsapp-logo-link-float {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #4bca5b;
    padding: 0.8rem;
    border-radius: 50%;
    z-index: 1000;
}

.whatsapp-logo-link-float:hover {
    transform: scale(1.1);
}

.whatsapp-logo-link-float .whatsapp-logo {
    margin: 0;
    height: 30px;
    width: 30px;
}

@media (max-width: 992px) {
    .whatsapp-logo-link {
        margin: 0.9rem auto;
    }
    .nav-link {
        text-align: center;
    }

    .nav-link:not(.nav-link:last-of-type) {
        border-bottom: 1px #ffffff33 solid;
    }

    nav .navbar-nav button {
        width: 100%;
    }

    .navbar .dropdown-menu {
        min-width: 100%;
        text-align: center;
    }

    .navbar-toggler-wrapper {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
    }
}

@media (max-width: 360px) {
    body {
        padding: 100px 15px 0 15px;
    }
}

.promotion-grid {
    padding: 40px 30px 0 30px;
}

.promo-img {
    width: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.discount-rate {
    width: 60px;
    height: 60px;
    background-color: #785f37;
    text-align: center;
    margin-left: auto;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 500;
}

.promo-title {
    font-size: 22px;
    font-weight: 400;
}

.promo-short-description, #promotionModal .promo-description {
    font-weight: 100;
    font-size: 14px;
    line-height: 28px;
}

.promo-explore-btn {
    color: #99835e;
    text-decoration: none;
}

.promo-validity-period, #promotionModal .promo-booking-period, #promotionModal .promo-stay-period {
    margin-top: 8px;
    font-size: 14px;
    margin-bottom: 8px;
}

.promo-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.promo-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
}

.promo-wrapper:hover {
    transform: scale(1.01);
}

.promo-text-wrapper {
    margin-left: 22px;
}

@media (min-width: 767px){
    .promo-text-wrapper {
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .promo-title {
        margin-top: 40px;
    }
    .promo-text-wrapper {
        margin-left: 0;
    }
}

a.nav-link:hover .nav-item-underline {
    background-color: #785f37;
    height: 3px;
    display: block;
    position: fixed;
    margin-left: -10px;
    margin-top: 10px;
    animation-name: underline-grow;
    animation-duration: 500ms;
    animation-fill-mode: forwards;
}

@keyframes underline-grow {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

@media (min-width: 576px) {
    #promotionModal .modal-dialog {
        max-width: 70% !important;
    }
}

a>img[alt="www.000webhost.com"] {
    display: none !important;
    opacity: 0;
}

@font-face {
    font-family: cereal;
    font-weight: 500;
    src: url(../fonts/Cereal_W_Bd.otf);
}

@font-face {
    font-family: cereal;
    font-weight: 400;
    src: url(../fonts/Cereal_W_Md.otf);
}

@font-face {
    font-family: cereal;
    font-weight: 300;
    src: url(../fonts/Cereal_W_Lt.otf);
}

.next-btn-wrapper {
    padding: 10px;
    background-color: #131518;
    border-radius: 35px;
    border: 1px solid #cdcdcd42;
}

.next-btn-wrapper .carousel-control-next-icon, .next-btn-wrapper .carousel-control-prev-icon {
    height: 18px;
    width: 18px;
}

h1 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

.carousel-indicators {
    display: none !important;
}

@media (min-width: 1100px) {
    .body-container, nav.navbar {
        padding-left: 120px;
        padding-right: 120px;
    }
}

@media (max-width: 576px) {
    .navbar-nav {
        width: unset;
    }

    nav.navbar {
        padding: 2px 20px;
    }

}

.navbar-toggler-wrapper {
    position: relative;
}

a.regular-btn:hover {
    color: #ffffff;
}
