.header-holder {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    position: sticky;
    top: 0;
    z-index: 300;
    background: var(--header-background);
}

.header-inner {
    padding: 5px 0;
    position: relative;
}

.header-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-row .logo-holder {
    width: 180px;
    align-self: center;
}

.header-menu {
    padding: 0;
    list-style: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--menu-nav-color);
    text-transform: uppercase;
}

.header-menu > li {
    display: inline-block;
    margin: 0 5px;
    position: relative;
}

.header-menu > li > a {
    padding: 20px 10px;
    display: inline-block;
    color: var(--menu-nav-color);
    position: relative;
}

.header-menu > li > a:after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    bottom: -5px;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
    background: transparent;
	transition: width .5s ease, background-color .5s ease;
}

.header-menu > li.current_page_item > a,
.header-menu > li:hover > a,
.header-menu > li:active > a,
.header-menu > li:focus > a {
    color: var(--menu-nav-color-hover);
}

.header-menu > li.current_page_item > a:after,
.header-menu > li:hover > a:after,
.header-menu > li:active > a:after,
.header-menu > li:focus > a:after {
    background: var(--menu-nav-color-hover);
    width: 100%;
}

.header-menu > li.menu-item-has-children > a {
    padding-right: 15px;
}

.header-menu > li.menu-item-has-children:before,
.header-menu > li.menu-item-has-children:after {
    content: '';
    display: block;
    width: 2px;
    height: 7px;
    position: absolute;
    background: var(--menu-nav-color);
    right: 0;
    margin-top: -2px;
}

.header-menu > li:hover:before,
.header-menu > li:hover:after {
    background: var(--menu-nav-color-hover);
}

.header-menu > li.menu-item-has-children:before,
.header-menu > li.menu-item-has-children:after {
    top: 50%;
    transform: translateY(-50%);
}

.header-menu > li.menu-item-has-children:before {
    transform: rotate(-45deg) translateY(-50%);
    right: -1px;
}

.header-menu li.menu-item-has-children:after {
    transform: rotate(45deg) translateY(-50%);
}

.header-menu > li.menu-item-has-children > .sub-menu li {
    display: block;
    width: 100%;
    background: var(--sub-menu-nav-background-color);
    position: relative;
    padding: 10px 15px;
}

.header-menu > li.menu-item-has-children > .sub-menu li:before {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    font-size: 30px;
    z-index: 10;
}

.header-menu > li.menu-item-has-children > .sub-menu li a {
    font-weight: 500;
    color: var(--sub-menu-nav-color);
    background: var(--sub-menu-nav-background-color);
    padding: 25px 30px 25px 70px;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-align: left;
    text-transform: none;
}

.header-menu > li.menu-item-has-children > .sub-menu li a:hover,
.header-menu > li.menu-item-has-children > .sub-menu li.current-menu-item a {
    color: var(--sub-menu-nav-color-hover);
    background: var(--sub-menu-nav-background-color-hover);
    border-radius: 8px;
}

@media only screen and (min-width: 992px) {
    .header-ctas {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .call-btn {
        font-weight: 700;
        font-size: 16px;
        color: var(--menu-nav-color);
        display: inline-block;
    }

    .call-btn:before {
        margin-right: 5px;
        font-size: 22px;
        vertical-align: bottom;
    }

    .btn.cta-btn {
        min-width: 140px;
        height: 45px;
        line-height: 35px;
        padding: 5px 10px;
    }

    .header-menu-holder {
        text-align: center;
    }

    .header-menu > li.menu-item-has-children > .sub-menu {
        padding: 0;
        box-shadow: 0 3px 15px rgba(0, 0, 0, .16);
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: 50px;
        left: 100%;
        transform: translateX(-50%);
        z-index: 300;
        min-width: 300px;
        background-color: var(--sub-menu-background);
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .menu-colums-2 .header-menu > li.menu-item-has-children > .sub-menu {
        min-width: 750px;
        left: 200px;
    }

    .menu-colums-3 .header-menu > li.menu-item-has-children > .sub-menu {
        min-width: 850px;
        left: 4200px;
    }

    .menu-colums-4 .header-menu > li.menu-item-has-children > .sub-menu {
        min-width: 850px;
        left: 420px;
    }

    .menu-colums-2  .header-menu li .sub-menu li {
        width: 50%;
    }

    .menu-colums-3  .header-menu li .sub-menu li {
        width: 33.33px;
    }

    .menu-colums-4  .header-menu li .sub-menu li {
        width: 25%;
    }

    .header-menu > li.menu-item-has-children:hover .sub-menu {
        max-height: 1500px;
    }

    .header-menu li.menu-item-has-children .sub-menu {
        width: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    .header-ctas {
        gap: 30px;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 992px)  {
    .header-row {
        gap: 5px;
    }

    .header-menu {
        font-size: 13px;
    }
}

@media only screen and (max-width: 991px) {
    .header-row {
        gap: 10px;
    }

    .header-row .logo-holder {
        flex-grow: 1;
        padding-left: 70px;
        text-align: center;
    }

    .header-row .logo-holder a {
        display: inline-block;
    }

    .cta-buttons-holder {
        /* margin: 7px 0 */
    }

    .cta-buttons-holder .cta-button {
        position: relative;
        display: block;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        color: var(--button-primary-color-on-hero);
        background-color: var(--button-primary-bkg-color-on-hero);
        box-shadow: 0 4px 5px 2px transparent;
        border-radius: 50%;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        z-index: 100;
    }

    .cta-buttons-holder .cta-buttons {
        position: relative;
        display: block;
        width: 60px;
        height: 60px;
        z-index: 100;
        /* margin-left: auto */
    }


    .cta-buttons-holder .cta-buttons .cta-button.opened {
        background-color: #fff;
        color: var(--button-primary-color-on-hero);
    }

    .cta-buttons-holder .cta-buttons .cta-button>.open-cta-buttons {
        position: initial;
        display: block;
        font-size: 26px;
        line-height: 63px;
        text-indent: 2px;
        margin: 0 auto;
        text-align: center
    }

    .cta-buttons-holder .cta-buttons .cta-button>.open-cta-buttons:before {
        line-height: 60px
    }

    .cta-buttons-holder .cta-buttons .cta-button>.close-cta-buttons {
        display: none;
        position: static;
        left: -50%;
        top: 0
    }

    .cta-buttons-holder .cta-buttons .cta-button>.close-cta-buttons.visible {
        position: block !important
    }

    .cta-buttons-holder .cta-buttons .cta-button>.close-cta-buttons:after,
    .cta-buttons-holder .cta-buttons .cta-button>.close-cta-buttons:before {
        content: '';
        position: absolute;
        top: 30px;
        left: 15px;
        width: 30px;
        height: 1px;
        background-color: #606060
    }

    .cta-buttons-holder .cta-buttons .cta-button>.close-cta-buttons:before {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    .cta-buttons-holder .cta-buttons .cta-button>.close-cta-buttons:after {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .cta-buttons-holder .cta-buttons .cta-button-parent.book-btn,
    .cta-buttons-holder .cta-buttons .cta-button-parent.call-btn,
    .cta-buttons-holder .cta-buttons .cta-button-parent.login-btn {
        position: absolute;
        display: block;
        opacity: 0;
        top: -5px;
        left: -10px;
        width: 75px;
        height: 75px;
        text-align: center;
        box-shadow: 0 4px 5px 2px rgba(0, 0, 0, .2);
        background-color: var( --button-primary-bkg-color-on-hero);
        border-radius: 50%;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out
    }

    .cta-buttons-holder .cta-buttons .cta-button-parent.book-btn a,
    .cta-buttons-holder .cta-buttons .cta-button-parent.call-btn a,
    .cta-buttons-holder .cta-buttons .cta-button-parent.login-btn a {
        font-family: ralewayregular;
        font-size: 14px;
        width: 75px;
        height: 75px;
        text-align: center;
        color: #fff
    }

    .cta-buttons-holder .cta-buttons .cta-button-parent.book-btn span,
    .cta-buttons-holder .cta-buttons .cta-button-parent.call-btn span,
    .cta-buttons-holder .cta-buttons .cta-button-parent.login-btn span {
        display: inline-block;
        vertical-align: middle
    }

    .cta-buttons-holder .cta-buttons .cta-button-parent.book-btn span:before,
    .cta-buttons-holder .cta-buttons .cta-button-parent.call-btn span:before,
    .cta-buttons-holder .cta-buttons .cta-button-parent.login-btn span:before {
        font-size: 44px;
        line-height: 54px;
        vertical-align: middle
    }

    .cta-buttons-holder .cta-buttons .cta-button-parent.book-btn span {
        margin-left: 4px
    }

    .cta-buttons-holder .cta-buttons .cta-button-parent .cta-button-item span {
        color: #fff;
        line-height: 75px
    }

    .cta-buttons-holder .cta-buttons.opened>.cta-button-parent.book-btn,
    .cta-buttons-holder .cta-buttons.opened>.cta-button-parent.call-btn,
    .cta-buttons-holder .cta-buttons.opened>.cta-button-parent.login-btn {
        display: block;
        opacity: 1
    }

    .cta-buttons-holder .cta-buttons.opened>.cta-button-parent.book-btn {
        top: -5px;
        left: -123px
    }

    .cta-buttons-holder .cta-buttons.opened>.cta-button-parent.call-btn {
        top: 67px;
        left: -83px
    }

    .cta-buttons-holder .cta-buttons.opened>.cta-button-parent.login-btn {
        top: 108px;
        left: -5px
    }
    .navbar-button > button {
        outline: none;
        padding: 9px 10px;
        background-color: transparent;
        background-image: none;
        border: 1px solid transparent;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-button > button:hover {
        cursor: pointer;
    }

    .navbar-button > button .icon-bar {
        display: block;
        width: 22px;
        height: 3px;
        background-color: var(--header-mobile-toggle-color);
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .navbar-button > button .icon-bar:nth-child(1) {
        transform: rotate(45deg);
    }

    .navbar-button>button .icon-bar + .icon-bar {
        margin-top: 3px;
    }

    .navbar-button>button .icon-bar:nth-child(2) {
        display: none;
    }

    .navbar-button>button .icon-bar:nth-child(3) {
        transform: rotate(-45deg);
        margin-top: -3px;
    }

    .main-menu-closed .navbar-button > button .icon-bar:nth-child(1) {
        transform: rotate(0);
    }

    .main-menu-closed .navbar-button>button .icon-bar:nth-child(2) {
        display: block;
    }

    .main-menu-closed .navbar-button>button .icon-bar:nth-child(3) {
        transform: rotate(0);
        margin-top: 3px;
    }
    

    .main-menu-closed .sidebar {
        -webkit-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        transform: translateX(-200%);
        transition: transform 250ms ease-in-out;
    }

    .sidebar {
        background: var(--sidebar-background-color);
        color: var(--sidebar-color);
        position: absolute;
        z-index: 600;
        left: 0;
        top: 120px;
        height: calc(100vh - 100px);
        width: 100%;
        padding: 0 0 30px;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        transition: transform 250ms ease-in-out;
        overflow-y: auto;
    }

    .header-menu > li > a {
        color: var(--sidebar-menu-nav-color);
    }

    .header-menu li.menu-item-has-children:before,
    .header-menu li.menu-item-has-children:after {
        background: var(--sidebar-menu-nav-color);
    }

    .sidebar-cta {
        margin-top: 30px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .header-menu li,
    .header-menu > li {
        display: block;
        margin: 0;
    }

    .header-menu li a {
        display: block;
        padding-left: 20px;
        padding-right: 20px !important;
        color: var(--sidebar-sub-menu-nav-color);
        background-color: var( --sidebar-background-color);
    }

    .header-menu > li:hover > a:before {
        display: none;
    }

    .header-menu > li.menu-item-has-children:before,
    .header-menu > li.menu-item-has-children:after {
        top: 25px;
        transform: translate(0);
        z-index: 30;
    }
    

    .header-menu > li.menu-item-has-children:before {
        transform: rotate(-45deg);
        right: 24px;
    }

    .header-menu > li.menu-item-has-children:after {
        transform: rotate(45deg);
        right: 20px;
    }

    .header-menu > li.menu-item-has-children.opened:before {
        transform: rotate(45deg);
    }

    .header-menu > li.menu-item-has-children.opened:after {
        transform: rotate(-45deg);
    }

    .header-menu > li.current_page_item > a,
    .header-menu > li:active > a,
    .header-menu > li:focus > a {
        color: var(--sidebar-sub-menu-nav-color-hover);
        background-color: var( --sidebar-background-color-hover);
    }

    .header-menu > li.current_page_item > a:before,
    .header-menu > li:active > a:before,
    .header-menu > li:focus > a:before {
        display: none;
    }

    .header-menu li .sub-menu {
        overflow: hidden;
        position: relative;
        top: auto;
        left: auto;
        transform: translateX(0%);
        transition: max-height .3s ease;
        max-height: 0;
        border-radius: 0;
    }

    .header-menu li.opened ul.sub-menu {
        max-height: 2000px !important;
        display: block;
        width: 100%;
        -webkit-transition: max-height .3s ease;
        -moz-transition: max-height .3s ease;
        -o-transition: max-height .3s ease;
        transition: max-height .3s ease;
    }
}

@media only screen and (max-width: 767px) {
    .sidebar {
        top: 70px;
    }

    .header-row .logo-holder {
       
    }

    .header-row .logo-holder .logo {
        max-width: 60%;
    }
}