.header-holder {
    width: 100%;
    height: 120px;
    padding: 20px 0px;
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* .logo {
    background: #fff;
    padding: 20px 10px;
} */

.header-inner ul {
    margin: 0;
}

.header-menu  > li {
    margin: 0 6px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-family: "robotobold", Arial, Helvetica, sans-serif;
    position: relative;
 
}

.header-menu li {
    list-style: none;
    display: inline-block;  
     
}

.header-menu li,
.header-menu li a {
    color: #285B72;
    text-decoration: none;
}

.header-menu li:hover, 
.header-menu li a:hover {
    color: var(--primary-color)
}

.header-menu li.menu-item-has-children {
    padding-right: 10px;
}

.header-menu li.menu-item-has-children > a {
    position: relative
}

.header-menu li.menu-item-has-children > a:before,
.header-menu li.menu-item-has-children > a:after   {
    content: "";
    display: block;
    width: 2px;
    height: 8px;
    position: absolute;
    background: #285B72;
    top: 50%;
    transform: translateY(-50%);
    right: -13px;
}

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

.header-menu li.menu-item-has-children:hover a:before,
.header-menu li.menu-item-has-children.opened a:before {
    transform: translateY(-50%) rotate(90deg)
}

.header-menu li.menu-item-has-children .sub-menu {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    background: #fff;
    left: 50%;
    top: 65px;
    transform: translateX(-50%);
    z-index: 100;
}

.header-menu li.menu-item-has-children .sub-menu li {
    display: block;
    padding: 15px;
    position: relative
}

.header-menu li.menu-item-has-children .sub-menu li:not(:last-child):after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
}

.header-menu li.menu-item-has-children:hover > .sub-menu {
    max-height: 620px;
    width: 250px;
    margin: 0;
    padding: 0;
    display: block;
    overflow-y: auto;
}


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

.header-menu li.menu-item-has-children .sub-menu li a {
    display: block;
}

.header-inner .cta-book {
    margin-left: auto;
    align-items: center;
}

.header-inner .cta-call {
    margin-left: 25px;
}

/*** MOBILE MENU BUTTON ***/
.navbar-button > button {
    outline: none;
    padding: 9px 10px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
}

.navbar-button > button .icon-bar {
    display: block;
    width: 22px;
    height: 3px;
    background-color: #242424;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

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

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

.main-menu-opened .navbar-button > button .icon-bar:nth-child(1) {
    transform: rotate(45deg);
    margin-top: -5px;
}

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

@media (min-width: 768px) {
    .header-inner ul {
        margin-left: 30px;
    }
}

@media (max-width: 991px) {
    .header-holder {
        position: relative;
        z-index: 3;
    }

    .header-inner .cta-book {
        display: none
    }

    .header-inner .cta-call {
        margin-left: auto;
    }

    .header-menu {
        position: absolute;
        z-index: 30;
        right: 10px;
        top: 90px;
        background: #fff;
        width: 80%;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: max-height 0.3s ease;
        -moz-transition: max-height 0.3s ease;
        -o-transition: max-height 0.3s ease;
        transition: max-height 0.3s ease;
    }

    .header-menu li {
        display: block;
        border-bottom: 1px solid #efefef;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-menu li a {
        display: block;
    }

    .main-menu-opened  .header-menu {
        max-height: 1000px;
        -webkit-transition: max-height 0.3s ease;
        -moz-transition: max-height 0.3s ease;
        -o-transition: max-height 0.3s ease;
        transition: max-height 0.3s ease;
    }

    .header-menu li.menu-item-has-children > .sub-menu {
        max-height: 0 !important;
        overflow: hidden;
        position: relative;
        top: auto;
        left: auto;
        transform: translateX(0%);
        -webkit-transition: max-height 0.3s ease;
        -moz-transition: max-height 0.3s ease;
        -o-transition: max-height 0.3s ease;
        transition: max-height 0.3s ease;
    }

    .header-menu li.menu-item-has-children > .sub-menu li {
        position: relative;
        border-bottom: 1px solid #fff;
        padding: 0;
    }

    .header-menu li.menu-item-has-children.opened > .sub-menu {
        max-height: 1000px !important;;
        display: block;
        width: 100%;
        -webkit-transition: max-height 0.3s ease;
        -moz-transition: max-height 0.3s ease;
        -o-transition: max-height 0.3s ease;
        transition: max-height 0.3s ease;
    }

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

    .header-menu li.menu-item-has-children > .sub-menu a:before {
        font-size: 23px;
        position: absolute;
        top: 50%;
        bottom: auto;
        left: 40px;
        right: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .header-menu li.menu-item-has-children a:before,
    .header-menu li.menu-item-has-children a:after {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .header-holder {
        background: #fff;
        padding: 20px 0;
        height: initial;
    }

    .header-holder .logo img {
        max-width: 150px;
        height: auto;
    }

    .header-menu {
        right: 0;
        width: 100%;
    }
}