:root {
    --color-black-font: #121127;
    --color-blue-btn: #3A69FD;
    --color-blue-hover-btn: #345fe4;
    --color-white-hover: #bbb;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-weight: 400;
    color: var(--color-black-font);
}

body {
    font-family: 'Montserrat', 'NotoSansThai', sans-serif;
}

/* container 1110px */

/* section-header */

.header {
    position: absolute;
    top: 0;
    background-color: transparent;
    z-index: 5;
    width: 100%;
}

.header-box {
    display: flex;
    align-items: center;
    height: 11.6rem;
}

.header-mobile {
    display: none;
}

.logo-main {
    height: 6.8rem;
    width: 6.071rem;
}

.main-nav {
    margin-left: auto;
    margin-right: 3.8rem;
}

.main-nav-list {
    list-style: none;
    display: flex;
}

.main-nav-item:not(:last-child) {
    margin-right: 4.8rem;
}

.main-nav-link {
    font-family: 'Montserrat 500';
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all .4s;
}

.main-nav-link:hover {
    color: var(--color-white-hover);
}

.chev-link {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

.icon-chevron {
    margin-left: 1rem;
    fill: #fff;
    transition: all 0.3s;
}


/* header-mobile */

:root {
    --mm-max-size: 600px;
    --mm-size: 100%;
}

.mm-blocker--blocking {
    --mm-blocker-opacity-delay: 0;
}

.mm-listitem__btn {
    font-family: 'Montserrat 500';
    font-size: 14px;
    -webkit-padding-end: 20px;
    padding-inline-end: 20px;
}

.mm-wrapper__blocker {
    background: #0B1625;
}

.mm-blocker--blocking {
    opacity: 0.95;
}

.mm-menu {
    --mm-color-background: transparent;
    --mm-color-text: #fff;
    --mm-color-icon: #fff;
    --mm-color-border: transparent;
}

.nav-mobile-icon {
    position: sticky;
    /* top: 44px; */
    top: 0;
    z-index: 30;
    margin-bottom: -56px;

    display: none;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.nav-mobile-icon.nav-colored {
    background-color: #0C1625;
}

.mm-menu--opened .nav-mobile-icon.nav-colored {
    background-color: transparent;
}

.mm-menu a:hover,
.mm-menu a:hover .icon-chevron,
.main-nav-link:hover .icon-chevron,
.mm-menu a:active,
.mm-menu a:active .icon-chevron,
.main-nav-link:active .icon-chevron {
    color: var(--color-white-hover);
    fill: var(--color-white-hover);
}

.mm-menu .mm-listitem--opened .icon-chevron {
    transform: rotate(-180deg);
}

.mm-menu .btn-book-mobile:hover {
    color: #fff;
    background-color: var(--color-blue-hover-btn);
}

.nav-icon {
    height: 56px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 70;
}

.mm-panels {
    /* margin-top: 124px; */
    margin-top: 80px;
    overflow: hidden;
    overflow: auto;
    text-align: center;
}

.mm-panel {
    position: static;
}

.mm-btn--next:after {
    display: none;
}

.mm-listitem__btn,
.mm-listitem__text {
    padding: 16px 0;
}

.mm-listitem--vertical>.mm-panel {
    padding-left: 0;
}

/* hamburger */

/* test add */
.line {
    position: relative;
    height: 1px;
    width: 20.6px;
    background-color: #fff;
}

.line::before,
.line::after {
    position: absolute;
    content: '';
    height: 1px;
    left: 0;
    right: 0;
    background-color: #fff;
}

.line::before {
    top: -6.86px;
}

.line::after {
    top: 6.86px;
}

.mm-wrapper--opened .line {
    background-color: transparent;
}

.mm-wrapper--opened .line::before {
    top: 0;
    transform: rotate(45deg);
}

.mm-wrapper--opened .line::after {
    top: 0;
    transform: rotate(135deg);
}


/* ////////////// */

/* .line {
    position: relative;
}

.line,
.line::before,
.line::after {
    content: '';
    position: absolute;
    width: 20.57px;
    background-color: #fff;
    border-bottom: 1px solid #fff;
    transition: all .3s;
}

.line::before {
    top: -6.86px;
}

.line::after {
    top: 6.86px;
}

.mm-wrapper--opened .line {
    border-bottom-color: transparent;
}

.mm-wrapper--opened .line::before {
    top: 0;
    transform: rotate(45deg);
}

.mm-wrapper--opened .line::after {
    top: 0;
    transform: rotate(-45deg);
} */

.mm-panel:after {
    display: none;
}

.logo-main-mobile {
    height: 68px;
    width: 60.71px;
    margin: 0 auto 32px;
}

.mobile-nav-link {
    flex-grow: 0;
    flex-basis: auto;
    margin: 0 auto;
}

@media(max-width:991.95px) {
    .header-box {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .nav-mobile-icon {
        display: flex;
    }

    .main-nav-item:not(:last-child) {
        /* margin-right: 0; */
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-book {
        margin: 16px auto;
    }

    .logo-main {
        margin: 0 auto;
    }
}

/* drop-down */
.head-link-drop {
    position: relative;
    cursor: pointer;
}

.head-link-drop:hover .main-nav-link {
    color: var(--color-white-hover);
}

.head-link-drop:hover .main-nav-link .icon-chevron {
    fill: var(--color-white-hover);
    transform: rotate(-180deg);
}

.link-drop-box {
    position: absolute;
    top: 0;
    left: -10px;
    display: none;
    flex-direction: column;
    transition: all .4s;
    padding-top: 30px;
}

.head-link-drop:hover .link-drop-box {
    display: flex;
}

.text-link-drop {
    font-family: 'Montserrat 500';
    color: #fff;
    background-color: rgba(14, 30, 52, 0.75);
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
}

.text-link-drop:hover {
    color: var(--color-white-hover);
}