/* ===================== MENU CSS ===================== */
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a, #cssmenu #menu-button {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

    #cssmenu:after, #cssmenu > ul:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0;
    }

    #cssmenu #menu-button {
        display: none;
    }

#cssmenu {
    width: auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    text-align: left;
}


    /*#menu-line {position: absolute;top: 0;left: 0;height: 3px;background: #009ae1;-webkit-transition: all 0.25s ease-out;-moz-transition: all 0.25s ease-out;-ms-transition: all 0.25s ease-out;-o-transition: all 0.25s ease-out;transition: all 0.25s ease-out;}*/
    #cssmenu > ul > li {
        float: left;
    }

    #cssmenu.align-center > ul {
        font-size: 0;
        text-align: center;
    }

        #cssmenu.align-center > ul > li {
            display: inline-block;
            float: none;
        }

    #cssmenu.align-center ul ul {
        text-align: left;
    }

    #cssmenu.align-right > ul > li {
        float: right;
    }

    #cssmenu.align-right ul ul {
        text-align: right;
    }

    #cssmenu > ul > li > a {
        padding: 5px 25px 5px 0px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        -webkit-transition: color .2s ease;
        -moz-transition: color .2s ease;
        -ms-transition: color .2s ease;
        -o-transition: color .2s ease;
        transition: color .2s ease;
    }

    #cssmenu > ul > li:hover > a, #cssmenu > ul > li.active > a {
        color: #05798d;
    }

    #cssmenu > ul > li.has-sub > a {
        padding-right: 35px;
    }

        #cssmenu > ul > li.has-sub > a::after {
            position: absolute;
            top: 8px;
            right: 20px;
            width: 7px;
            height: 7px;
            border-bottom: 2px solid #05798d;
            border-right: 2px solid #05798d;
            content: "";
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: border-color 0.2s ease;
            -moz-transition: border-color 0.2s ease;
            -ms-transition: border-color 0.2s ease;
            -o-transition: border-color 0.2s ease;
            transition: border-color 0.2s ease;
        }

    #cssmenu > ul > li.has-sub:hover > a::after {
        border-color: #05798d;
    }

    #cssmenu ul ul {
        position: absolute;
        left: -9999px;
        /* border-bottom: 1px solid #404040; */
        z-index: 99;
    }

    #cssmenu li:hover > ul {
        left: auto;
    }

    #cssmenu.align-right li:hover > ul {
        right: 0;
    }

    #cssmenu ul ul {
        /* min-height: 308px;
  max-height: 308px; */
        background-color: #fff;
    }

        #cssmenu ul ul ul {
            margin-left: 100%;
            top: 0;
            background-color: #d8e2e2;
        }

            #cssmenu ul ul ul ul {
                margin-left: 100%;
                top: 0;
                background-color: #fff;
            }

    #cssmenu ul:nth-child(1) {
        background: red;
    }

    #cssmenu::-webkit-scrollbar {
        width: 10px;
        background-color: #222;
    }

    #cssmenu::-webkit-scrollbar-track {
        border-radius: 0px;
    }

    #cssmenu::-webkit-scrollbar-thumb {
        background: #999;
        border-radius: 0px;
    }

        #cssmenu::-webkit-scrollbar-thumb:hover {
            background: #ccc;
        }

    #cssmenu.align-right ul ul ul {
        margin-left: 0;
        margin-right: 100%;
    }

    #cssmenu .subMenu {
        /* background: #f1f1f1; */
    }

    #cssmenu ul ul li {
        height: 0;
        -webkit-transition: height .2s ease;
        -moz-transition: height .2s ease;
        -ms-transition: height .2s ease;
        -o-transition: height .2s ease;
        transition: height .2s ease;
    }

    #cssmenu ul li:hover > ul > li {
        height: 34px; /*border-bottom: 1px solid #666;*/
    }

    #cssmenu ul ul li a {
        padding: 10px 20px;
        width: 100%;
        min-width: 250px;
        font-size: 14px;
        background: transparent;
        text-decoration: none;
        color: #222;
        -webkit-transition: color .2s ease;
        -moz-transition: color .2s ease;
        -ms-transition: color .2s ease;
        -o-transition: color .2s ease;
        transition: color .2s ease;
    }

    #cssmenu ul ul ul li a {
        padding: 10px 20px;
        min-width: 250px;
        width: 100%;
        font-size: 14px;
        background: transparent;
        text-decoration: none;
        color: #222;
        -webkit-transition: color .2s ease;
        -moz-transition: color .2s ease;
        -ms-transition: color .2s ease;
        -o-transition: color .2s ease;
        transition: color .2s ease;
    }

    #cssmenu ul ul li a, #cssmenu ul ul ul li a {
        border-bottom: 1px dotted #b8caca;
    }

        #cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
            color: #fff;
            background: #05798d;
        }

    #cssmenu ul ul li.has-sub > a::after {
        position: absolute;
        top: 13px;
        right: 10px;
        width: 4px;
        height: 4px;
        border-bottom: 1px solid #05798d;
        border-right: 1px solid #05798d;
        content: "";
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: border-color 0.2s ease;
        -moz-transition: border-color 0.2s ease;
        -ms-transition: border-color 0.2s ease;
        -o-transition: border-color 0.2s ease;
        transition: border-color 0.2s ease;
    }

    #cssmenu.align-right ul ul li.has-sub > a::after {
        right: auto;
        left: 10px;
        border-bottom: 0;
        border-right: 0;
        border-top: 1px solid #dddddd;
        border-left: 1px solid #dddddd;
    }

    #cssmenu ul ul li.has-sub:hover > a::after {
        border-color: #ffffff;
    }

.has-sub {
    position: initial !important;
}

.simpleDrop {
    min-height: auto !important;
    max-height: auto !important;
}

header {
    background: #fff;
}

.header_social ul {
    text-align: right;
}

    .header_social ul li {
        display: inline-block;
    }

        .header_social ul li a {
            color: #fff;
        }

/*TOP_CTA*/
.TopCTA {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #fff6c8;
    background: #f3d638;
    z-index: 999;
    color: #000;
    text-align: center;
    padding: 10px 0px;
}

    .TopCTA p {
        display: inline-block;
        margin-right: 20px;
        padding: 9px 0px 0px;
        font-size: 18px;
        letter-spacing: 0px;
        font-family: 'Montserrat', sans-serif;
    }

        .TopCTA p span {
            font-weight: 800;
        }

    .TopCTA .order-now-btn {
        background: #2669e6;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        float: none;
        margin: 0;
        padding: 8px 14px;
        border-radius: 4px;
        font-size: 16px;
        text-transform: uppercase;
        text-align: center;
        -webkit-transition: border-radius 0.8s;
        transition: border-radius 0.8s;
        position: relative;
        z-index: 99;
    }

        .TopCTA .order-now-btn:hover {
            background: #fff;
            color: #000;
        }

/*CHAT API*/
div#livechat-compact-container, div#livechat-full {
    left: 15px;
}

div#livechat-eye-catcher {
    left: 24px;
    display: inline-table;
    zoom: 65%;
}

/* ==================== RESPONSIVE CSS ==================== */
@media all and (max-width:1199px) {
    .TopCTA .order-now-btn:hover {
        background: #fff;
        color: #000;
    }
}

@media all and (max-width:991px) {
}

@media all and (max-width:768px) {
    #cssmenu {
        width: 100%;
    }

        #cssmenu ul {
            width: 100%;
            display: none;
            margin-top: 32px; /*background: #111; color: #fff; margin-bottom: 10px;*/
        }

        #cssmenu.align-center > ul, #cssmenu.align-right ul ul {
            text-align: left;
        }

        #cssmenu ul li, #cssmenu ul ul li, #cssmenu ul li:hover > ul > li {
            width: 100%;
            height: auto;
            border-top: 1px solid rgba(120, 120, 120, 0.15);
        }

            #cssmenu ul li a, #cssmenu ul ul li a {
                width: 100%;
            }

        #cssmenu > ul > li, #cssmenu.align-center > ul > li, #cssmenu.align-right > ul > li {
            float: none;
            display: block;
        }

        #cssmenu ul ul li a {
            padding: 20px 20px 20px 30px;
            font-size: 15px;
            color: #333;
            background: none;
            font-weight: 400;
        }

        #cssmenu ul ul ul li a {
            background: #f9f9f9;
            color: #111;
        }

        #cssmenu > ul > li > a {
            padding: 18px 20px;
            font-size: 15px;
        }

        #cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
            color: #fff;
        }

        #cssmenu ul ul ul li a {
            padding: 20px 0px 20px 40px;
            width: 100%
        }

        #cssmenu ul ul, #cssmenu ul ul ul {
            position: relative;
            left: 0;
            right: auto;
            width: 100%;
            margin: 0;
        }

            #cssmenu > ul > li.has-sub > a::after, #cssmenu ul ul li.has-sub > a::after {
                display: none;
            }

    #menu-line {
        display: none;
    }

    #cssmenu #menu-button {
        display: block;
        padding: 28px;
        color: #000000;
        cursor: pointer;
        font-size: 12px;
        text-transform: uppercase;
    }

        #cssmenu #menu-button::after {
            content: '';
            position: absolute;
            top: 22px;
            left: 0px;
            display: block;
            width: 15px;
            height: 3px;
            background: #000000;
        }

        #cssmenu #menu-button::before {
            content: '';
            position: absolute;
            top: 29px;
            left: 0px;
            display: block;
            width: 25px;
            height: 10px;
            border-top: 3px solid #000000;
            border-bottom: 3px solid #000000;
        }

    #cssmenu .submenu-button {
        position: absolute;
        z-index: 10;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid rgba(120, 120, 120, 0.15);
        height: 52px;
        width: 52px;
        cursor: pointer;
    }

        #cssmenu .submenu-button::after {
            content: '';
            position: absolute;
            top: 21px;
            left: 26px;
            display: block;
            width: 1px;
            height: 11px;
            background: #000000;
            z-index: 99;
        }

        #cssmenu .submenu-button::before {
            content: '';
            position: absolute;
            left: 21px;
            top: 26px;
            display: block;
            width: 11px;
            height: 1px;
            background: #000000;
            z-index: 99;
        }

        #cssmenu .submenu-button.submenu-opened:after {
            display: none;
        }

    #cssmenu ul ul {
        border: none;
    }

    .has-sub {
        position: inherit !important;
    }

    #cssmenu ul ul {
        min-height: 100% !important;
        max-height: 100% !important;
        background-color: #d0e2e5;
    }

    .TopCTA {
        display: none !important;
    }

    #cssmenu > ul > li > a {
        color: #333;
    }
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (-webkit-min-device-pixel-ratio:2) {
    #cssmenu {
        width: 100%;
    }

        #cssmenu ul {
            width: 100%;
            display: none;
            margin-top: 32px; /*background: #111; color: #fff; margin-bottom: 10px;*/
        }

        #cssmenu.align-center > ul, #cssmenu.align-right ul ul {
            text-align: left;
        }

        #cssmenu ul li, #cssmenu ul ul li, #cssmenu ul li:hover > ul > li {
            width: 100%;
            height: auto;
            border-top: 1px solid rgba(120, 120, 120, 0.15);
        }

            #cssmenu ul li a, #cssmenu ul ul li a {
                width: 100%;
            }

        #cssmenu > ul > li, #cssmenu.align-center > ul > li, #cssmenu.align-right > ul > li {
            float: none;
            display: block;
        }

        #cssmenu ul ul li a {
            padding: 20px 20px 20px 30px;
            font-size: 15px;
            color: #333;
            background: none;
            font-weight: 400;
        }

        #cssmenu ul ul ul li a {
            background: #f9f9f9;
            color: #111;
        }

        #cssmenu > ul > li > a {
            padding: 18px 20px;
            font-size: 15px;
        }

        #cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
            color: #000000;
        }

        #cssmenu ul ul ul li a {
            padding: 20px 0px 20px 40px;
            width: 100%
        }

        #cssmenu ul ul, #cssmenu ul ul ul {
            position: relative;
            left: 0;
            right: auto;
            width: 100%;
            margin: 0;
        }

            #cssmenu > ul > li.has-sub > a::after, #cssmenu ul ul li.has-sub > a::after {
                display: none;
            }

    #menu-line {
        display: none;
    }

    #cssmenu #menu-button {
        display: block;
        padding: 20px;
        color: #000000;
        cursor: pointer;
        font-size: 12px;
        text-transform: uppercase;
    }

        #cssmenu #menu-button::after {
            content: '';
            position: absolute;
            top: 27px;
            left: 20px;
            display: block;
            width: 15px;
            height: 3px;
            background: #000000;
        }

        #cssmenu #menu-button::before {
            content: '';
            position: absolute;
            top: 34px;
            left: 20px;
            display: block;
            width: 25px;
            height: 10px;
            border-top: 3px solid #000000;
            border-bottom: 3px solid #000000;
        }

    #cssmenu .submenu-button {
        position: absolute;
        z-index: 10;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid rgba(120, 120, 120, 0.15);
        height: 52px;
        width: 52px;
        cursor: pointer;
    }

        #cssmenu .submenu-button::after {
            content: '';
            position: absolute;
            top: 21px;
            left: 26px;
            display: block;
            width: 1px;
            height: 11px;
            background: #000000;
            z-index: 99;
        }

        #cssmenu .submenu-button::before {
            content: '';
            position: absolute;
            left: 21px;
            top: 26px;
            display: block;
            width: 11px;
            height: 1px;
            background: #000000;
            z-index: 99;
        }

        #cssmenu .submenu-button.submenu-opened:after {
            display: none;
        }

    #cssmenu ul ul {
        border: none;
    }

    .has-sub {
        position: inherit !important;
    }

    #cssmenu ul ul {
        min-height: 100% !important;
        max-height: 100% !important;
        background-color: #f1f1f1;
    }
}

/*iPad in portrait*/
@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait) {
    #cssmenu {
        width: 100%;
    }

        #cssmenu ul {
            width: 100%;
            display: none;
            margin-top: 32px; /*background: #111; color: #fff; margin-bottom: 10px;*/
        }

        #cssmenu.align-center > ul, #cssmenu.align-right ul ul {
            text-align: left;
        }

        #cssmenu ul li, #cssmenu ul ul li, #cssmenu ul li:hover > ul > li {
            width: 100%;
            height: auto;
            border-top: 1px solid rgba(120, 120, 120, 0.15);
        }

            #cssmenu ul li a, #cssmenu ul ul li a {
                width: 100%;
            }

        #cssmenu > ul > li, #cssmenu.align-center > ul > li, #cssmenu.align-right > ul > li {
            float: none;
            display: block;
        }

        #cssmenu ul ul li a {
            padding: 20px 20px 18px 30px;
            font-size: 15px;
            color: #333;
            background: none;
            font-weight: 400;
        }

        #cssmenu ul ul ul li a {
            background: #f9f9f9;
            color: #111;
        }

        #cssmenu > ul > li > a {
            padding: 17px 20px;
            font-size: 15px;
        }

        #cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
            color: #000000;
        }

        #cssmenu ul ul ul li a {
            padding: 20px 0px 20px 40px;
            width: 100%
        }

        #cssmenu ul ul, #cssmenu ul ul ul {
            position: relative;
            left: 0;
            right: auto;
            width: 100%;
            margin: 0;
        }

            #cssmenu > ul > li.has-sub > a::after, #cssmenu ul ul li.has-sub > a::after {
                display: none;
            }

    #menu-line {
        display: none;
    }

    #cssmenu #menu-button {
        display: block;
        padding: 20px;
        color: #000000;
        cursor: pointer;
        font-size: 12px;
        text-transform: uppercase;
    }

        #cssmenu #menu-button::after {
            content: '';
            position: absolute;
            top: 27px;
            left: 20px;
            display: block;
            width: 15px;
            height: 3px;
            background: #000000;
        }

        #cssmenu #menu-button::before {
            content: '';
            position: absolute;
            top: 34px;
            left: 20px;
            display: block;
            width: 25px;
            height: 10px;
            border-top: 3px solid #000000;
            border-bottom: 3px solid #000000;
        }

    #cssmenu .submenu-button {
        position: absolute;
        z-index: 10;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid rgba(120, 120, 120, 0.15);
        height: 52px;
        width: 52px;
        cursor: pointer;
    }

        #cssmenu .submenu-button::after {
            content: '';
            position: absolute;
            top: 21px;
            left: 26px;
            display: block;
            width: 1px;
            height: 11px;
            background: #000000;
            z-index: 99;
        }

        #cssmenu .submenu-button::before {
            content: '';
            position: absolute;
            left: 21px;
            top: 26px;
            display: block;
            width: 11px;
            height: 1px;
            background: #000000;
            z-index: 99;
        }

        #cssmenu .submenu-button.submenu-opened:after {
            display: none;
        }

    #cssmenu ul ul {
        border: none;
    }

    .has-sub {
        position: inherit !important;
    }

    #cssmenu ul ul {
        min-height: 100% !important;
        max-height: 100% !important;
        background-color: #dedef2;
    }
}

@media only screen and (max-width:768px) {
    .goahOffer .close {
        top: 0px;
        right: 0px;
    }
}

@media all and (max-width:600px) {
}

@media all and (max-width:480px) {
}

@media all and (max-width:479px) {
}

/* #cssmenu ul ul{visibility: hidden} */
