<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* #hamburger */

#hamburger {
    width: 60px;
    height: 45px;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-top: 10px;
}

    #hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 33px;
        background: var(--primary-color);
        border-radius: 9px;
        opacity: 1;
        right: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        box-shadow: 3px 2px 6px -1px #0000007a;
    }

    #hamburger.open {
        z-index: 999;
    }

        #hamburger.open span {
            /* background: var(--theme-color-light); */
        }

    #hamburger span:nth-child(1) {
        top: 10px;
    }

    #hamburger span:nth-child(2) {
        top: 22px;
    }

    #hamburger span:nth-child(3) {
        top: 34px;
    }

    #hamburger.open span:nth-child(1) {
        top: 18px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    #hamburger.open span:nth-child(2) {
        opacity: 0;
        visibility: hidden;
        /*left: -60px;*/
    }

    #hamburger.open span:nth-child(3) {
        top: 18px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

.dropdown-block li a i {
    position: absolute !important;
    left: 7px;
    top: 12px;
    bottom: 0;
    margin: auto;
    color: var(--primary-color);
}

.dropdown-block li:nth-child(2) a i {
    font-size: 14px;
}

.dropdown:hover .dropdown-btn i {
    transform: rotate(180deg);
}

.header-span {
    position: relative;
    height: 110px;
    display: block;
    width: 100%;
}

.main-header {
    position: fixed;
    z-index: 1;
    width: 100%;
}

.logo-box {
    position: relative;
    z-index: 1;
}



.header-top {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .header-top .header-top-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 24px 0 10px;
    }

    .header-top .top-left {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .header-top .top-left .info-list a {
            color: var(--theme-color-dark);
            font-size: 14px;
        }

        .header-top .top-left .info-list span {
            color: #b5cf2b;
            font-size: 14px;
            font-weight: 600;
        }

    .header-top .top-center {
        margin-left: auto;
        margin-right: auto;
    }

    .header-top .top-right {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .header-top .top-right button {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            color: #ffffff;
            font-size: 14px;
            background: transparent;
        }

            .header-top .top-right button span, .header-top .top-right button img {
                margin-right: 10px;
                display: inline-block;
            }

            .header-top .top-right button span {
                font-size: 20px;
            }

            .header-top .top-right button.login-btn {
                margin-left: 72px;
            }

                .header-top .top-right button.login-btn i {
                    font-size: 18px;
                    margin-right: 7px;
                }

.main-header .header-lower {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    background: #ffffff;
}

    .main-header .header-lower .logo-box {
        position: relative;
    }

.main-header {
    width: 100%;
    z-index: 90;
}

    .main-header .logo {
        position: relative;
        display: block;
        z-index: 1;
    }



        .main-header .logo img {
            width: 150px;
            height: 49px;
            position: relative;
            top: 2px;
        }

    .main-header .main-box {
        position: relative;
        left: 0px;
        top: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .main-header .main-box .nav-outer {
            position: relative;
            transition: all .2s linear;
            /* margin-left: auto; */
            /* margin-right: auto; */
        }

.main-menu {
    position: relative;
}



    .main-menu .navbar-header {
        display: none;
    }

    .main-menu .navbar-collapse {
        padding: 0px;
    }

    .main-menu .navigation {
        position: relative;
        margin: 0px;
        height: auto;
    }

        .main-menu .navigation &gt; li {
            position: relative;
            float: left;
            padding: 20px 18px;
            /* margin-right: 44px; */
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
            cursor: pointer;
        }

            .main-menu .navigation &gt; li:last-child {
                margin-right: 0;
            }

            .main-menu .navigation &gt; li &gt; a {
                position: relative;
                display: block;
                text-align: center;
                opacity: 1;
                color: #ffffff;
                font-size: 15px;
                line-height: 30px;
                padding: 0;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .main-menu .navigation &gt; li &gt; a:hover {
                    color: var(--primary-color);
                }

            .main-menu .navigation &gt; li.dropdown:hover &gt; ul {
                visibility: visible;
                opacity: 1;
                top: 100%;
                margin-top: 0;
                -webkit-transition: all 300ms ease;
                transition: all 300ms ease;
                z-index: 99;
            }

            .main-menu .navigation &gt; li &gt; ul {
                position: absolute;
                left: 0px;
                top: 100%;
                width: 290px;
                z-index: 100;
                background-color: #fbfbfb;
                margin-top: 30px;
                opacity: 0;
                z-index: -999;
                visibility: hidden;
                border-radius: 0 0 5px 5px;
                backdrop-filter: blur(6px);
                border: 1px solid #ebebeb;
                box-shadow: 0 0 15px 2px rgba(0, 0, 0, .1);
            }

                .main-menu .navigation &gt; li &gt; ul.from-right {
                    left: auto;
                    right: 0px;
                }

                .main-menu .navigation &gt; li &gt; ul &gt; li {
                    position: relative;
                    width: 100%;
                    padding-left: 10px;
                    border-bottom: 1px solid #ffffff;
                }

                    .main-menu .navigation &gt; li &gt; ul &gt; li:hover {
                        background: #ffffff;
                    }

                    .main-menu .navigation &gt; li &gt; ul &gt; li:before {
                        content: '';
                        position: absolute;
                        left: 10px;
                        top: 0;
                        bottom: 0;
                        margin: auto;
                        width: 10px;
                        height: 10px;
                        /*background: var(--primary-color);*/
                        transform: rotate(45deg);
                    }

                    .main-menu .navigation &gt; li &gt; ul &gt; li:last-child {
                        border-bottom: none;
                    }

                    .main-menu .navigation &gt; li &gt; ul &gt; li &gt; a {
                        position: relative;
                        display: block;
                        padding: 6px 0px;
                        line-height: 29px;
                        font-weight: 400;
                        font-size: 15px;
                        color: #000;
                        text-align: left;
                        margin: 0;
                        margin-left: 0;
                        padding-left: 31px;
                        text-transform: capitalize;
                        -webkit-transition: all 200ms ease;
                        transition: all 200ms ease;
                    }

                    .main-menu .navigation &gt; li &gt; ul &gt; li:hover &gt; a {
                        color: var(--primary-color);
                    }

                    .main-menu .navigation &gt; li &gt; ul &gt; li.dropdown &gt; a:after {
                        font-family: "Font Awesome 6 Free";
                        content: "\f105";
                        position: absolute;
                        right: 8px;
                        top: 11px;
                        display: block;
                        line-height: 24px;
                        font-size: 14px;
                        font-weight: 900;
                        z-index: 5;
                    }

                    .main-menu .navigation &gt; li &gt; ul &gt; li.dropdown:hover &gt; ul {
                        visibility: visible;
                        opacity: 1;
                        top: 0px;
                        margin-top: 29px;
                        transition: all 300ms ease;
                    }

                    .main-menu .navigation &gt; li &gt; ul &gt; li &gt; ul {
                        position: absolute;
                        left: 100%;
                        top: 0px;
                        width: 280px;
                        z-index: 100;
                        background-color: #fbfbfb;
                        opacity: 0;
                        visibility: hidden;
                        padding: 0px 0 0;
                        margin-top: 10px;
                        -webkit-transform: translateY(-30px);
                        transform: translateY(-30px);
                        border-radius: 0 0 5px 5px;
                        border: 1px solid #f3f3f3;
                    }

                        .main-menu .navigation &gt; li &gt; ul &gt; li &gt; ul &gt; li {
                            position: relative;
                            border-bottom: 1px solid #ffffff;
                            width: 100%;
                        }

                            .main-menu .navigation &gt; li &gt; ul &gt; li &gt; ul &gt; li:hover {
                                background: #fff;
                            }

                            .main-menu .navigation &gt; li &gt; ul &gt; li &gt; ul &gt; li:last-child {
                                border-bottom: none;
                            }

                            .main-menu .navigation &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a {
                                display: block;
                                padding: 6px 0;
                                line-height: 29px;
                                font-weight: 400;
                                font-size: 16px;
                                color: #000;
                                text-align: left;
                                margin: 0 30px;
                                text-transform: capitalize;
                                -webkit-transition: all 300ms ease;
                                transition: all 300ms ease;
                            }

                                .main-menu .navigation &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a:hover {
                                    color: var(--primary-color);
                                }

        .main-menu .navigation li.dropdown .dropdown-btn {
            position: absolute;
            right: 10px;
            top: 8px;
            width: 34px;
            height: 30px;
            border: 1px solid #ffffff;
            text-align: center;
            font-size: 16px;
            line-height: 26px;
            color: #ffffff;
            cursor: pointer;
            z-index: 5;
            display: none;
        }

.main-header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

    .main-header .outer-box .header-btn {
        display: inline-block;
        color: #ffffff;
        text-transform: capitalize;
        font-weight: 600;
        font-size: 15px;
        padding: 0 5px 0 38px;
        height: 60px;
        line-height: 60px;
        border: 2px solid #fff;
        border-radius: 50px;
    }

        .main-header .outer-box .header-btn span {
            margin-left: 10px;
            position: relative;
            top: -2px;
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            background-color: var(--primary-color);
        }

            .main-header .outer-box .header-btn span i {
                color: #000;
                font-size: 22px;
                font-weight: 900;
                top: 4px;
                position: relative;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

        .main-header .outer-box .header-btn:hover {
            background-color: var(--primary-color);
            border-color: transparent;
        }

.main-header .ui-btn-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 17px;
    position: relative;
    right: 117px;
}

.main-header .ui-btn {
    position: relative;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background: none;
    font-size: 26px;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

    .main-header .ui-btn:hover {
        color: var(--primary-color);
    }

.main-header .info-btn {
    position: relative;
    font-size: 16px;
    padding-left: 44px;
    color: #ffffff;
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
    line-height: 20px;
}

    .main-header .info-btn small {
        display: block;
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
        color: var(--primary-color);
    }

    .main-header .info-btn .icon {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -12px;
        line-height: 40px;
        height: 40px;
        font-size: 24px;
        line-height: 1em;
        margin-right: 20px;
        padding-right: 20px;
    }

    .main-header .info-btn:hover {
        color: var(--theme-color-light);
    }

/*** 

====================================================================
    header-style-one
====================================================================

***/
.header-style-one {
    border-bottom: 1px solid #4b5758;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

    .header-style-one .sticky-header .logo {
        margin-top: 0;
    }

.social-media-footer {
    display: flex;
}

    .social-media-footer li {
    }

        .social-media-footer li a {
            width: 30px;
            height: 30px;
            display: block;
            background: var(--primary-color);
            margin-right: 10px;
            border-radius: 50%;
            display: grid;
            place-content: center;
            color: #fff;
            font-size: 15px;
        }

@media (max-width: 1199.98px) {
    .header-style-one {
        padding: 20px 0;
    }
}

.header-style-one .inner-container {
    max-width: 1792px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 1399.98px) {
    .header-style-one .main-box {
        padding: 0 20px;
    }
}

.header-style-one .main-box .nav-outer {
    margin-left: 167px;
}

    .header-style-one .main-box .nav-outer .nav .navigation li a {
        color: var(--theme-color-light);
        font-weight: 700;
    }

        .header-style-one .main-box .nav-outer .nav .navigation li a:hover {
            color: var(--primary-color);
        }

.header-style-one .main-menu .navigation &gt; li &gt; a {
    color: #000000;
    font-size: 16px;
}

    .header-style-one .main-menu .navigation &gt; li &gt; a:hover {
        color: var(--primary-color);
    }

.header-style-one .outer-box .contact-info {
    position: relative;
    padding-left: 50px;
}

    .header-style-one .outer-box .contact-info .image {
        position: absolute;
        top: 12px;
        left: 0;
    }

    .header-style-one .outer-box .contact-info span {
        font-size: 12px;
        color: var(--theme-color-light);
    }

    .header-style-one .outer-box .contact-info .title {
        color: var(--theme-color-light);
        margin-top: -4px;
        margin-bottom: 0;
    }

.header-style-one .outer-box .social-list-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 71px;
    position: relative;
}

    .header-style-one .outer-box .social-list-one::before {
        content: "";
        position: absolute;
        top: -10px;
        left: -31px;
        width: 2px;
        height: 50px;
        background-color: #525c5c;
    }

    .header-style-one .outer-box .social-list-one li {
        margin-right: 48px;
    }

        .header-style-one .outer-box .social-list-one li:last-child {
            margin-right: 0;
        }

        .header-style-one .outer-box .social-list-one li a {
            font-size: 24px;
            color: var(--theme-color-light);
        }

.header-style-one .main-menu .navigation &gt; li {
    margin-right: 45px;
}

    .header-style-one .main-menu .navigation &gt; li:last-child {
        margin-right: 0;
    }

.header-style-one .main-menu .navigation li.dropdown .dropdown-btn {
    display: inline-block;
    border: 2px;
    top: 50%;
    bottom: 1px;
    right: -14px;
    width: auto;
    height: unset;
    font-size: 10px;
    color: #8f8f8f;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    line-height: unset;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.header-style-one .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}

.header-style-one .mobile-nav-toggler {
    display: inline-block;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    color: #fff;
    margin-left: 40px;
    display: none;
}

.header-style-one .main-menu .navigation &gt; li &gt; ul &gt; li &gt; a:hover {
    color: var(--primary-color);
}

.header-style-one .sticky-header {
    background-color: var(--theme-color-v2);
}

    .header-style-one .sticky-header .mobile-nav-toggler {
        display: none;
    }

    .header-style-one .sticky-header .main-menu .navigation &gt; li.current &gt; a, .header-style-one .sticky-header .main-menu .navigation &gt; li:hover &gt; a {
        color: var(--theme-color-v2);
    }

    .header-style-one .sticky-header.fixed-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #000;
    }

    .header-style-one .sticky-header .main-menu {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .header-style-one .sticky-header .main-menu .navigation &gt; li.current &gt; a, .header-style-one .sticky-header .main-menu .navigation &gt; li:hover &gt; a {
            color: #fff;
        }

        .header-style-one .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
            color: #fff;
        }

    .header-style-one .sticky-header .inner-container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

@media (max-width: 767.98px) {
    .header-style-one .contact-info {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .header-style-one .contact-info {
        display: unset;
        width: 232px;
        margin-left: -170px;
    }
}

@media (max-width: 575.98px) {
    .header-style-one .social-list-one {
        display: none;
    }
}

.header-style-one .main-box .nav-outer .nav .navigation li ul li a {
    color: #000;
}

/*** 

====================================================================
    header-style-two
====================================================================

***/
.header-style-two {
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.15);
}

    .header-style-two .btn {
        padding-right: 0;
    }

    .header-style-two .header-top {
        background-color: var(--secondary-color);
        background: #fff;
        display: block;
        overflow: hidden;
    }

        .header-style-two .header-top::before {
            background-color: var(--primary-color);
            content: "";
            height: 100%;
            left: 95%;
            position: absolute;
            top: 0;
            width: 100%;
        }

@media (max-width: 1199.98px) {
    .header-style-two .header-top:before {
        display: none;
    }
}

.header-style-two .header-top .inner-container {
    margin: 0 auto;
    max-width: 1792px;
    padding: 0 15px;
}

.header-style-two .header-top .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1199.98px) {
    .header-style-two .header-top .inner-box {
        display: block;
    }
}

.header-style-two .header-top .inner-box .top-left ul li {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    margin-right: 21px;
    position: relative;
    padding-left: 21px;
    color: #a5a5a5;
}

    .header-style-two .header-top .inner-box .top-left ul li:last-child {
        margin-right: 0;
    }

    .header-style-two .header-top .inner-box .top-left ul li i {
        position: absolute;
        top: 3px;
        left: 0;
        color: var(--primary-color);
    }

.header-style-two .header-top .inner-box .top-right ul li {
    margin-right: 33px;
    font-size: 13px;
    display: inline-block;
}

    .header-style-two .header-top .inner-box .top-right ul li:last-child {
        margin-right: 0;
    }

.header-style-two .header-top .inner-box .top-right .social-list-one {
    background-color: var(--primary-color);
    padding: 5px 10px 8px;
    position: relative;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199.98px) {
    .header-style-two .header-top .inner-box .top-right .social-list-one {
        background: transparent;
    }
}

.header-style-two .header-top .inner-box .top-right .social-list-one::before {
    background-image: url(../images/background/cross.html);
    content: "";
    height: 41px;
    left: 0;
    position: absolute;
    top: 0;
    width: 51px;
    z-index: -1;
}

.header-style-two .header-top .inner-box .top-right .social-list-one li {
    margin-right: 10px;
}

    .header-style-two .header-top .inner-box .top-right .social-list-one li:last-child {
        margin-right: 10px;
    }

    .header-style-two .header-top .inner-box .top-right .social-list-one li a {
        background-color: var(--theme-color-light);
        border-radius: 50%;
        color: var(--theme-color-dark);
        display: inline-block;
        font-size: 11px;
        height: 26px;
        line-height: 27px;
        text-align: center;
        width: 26px;
    }

@media (max-width: 1199.98px) {
    .header-style-two .header-lower {
        height: 70px;
    }
}

.header-style-two .header-lower .inner-container {
    /* max-width: 1792px; */
    margin: 0 auto;
    padding: 0 15px;
}

.header-style-two .header-lower .main-box .nav-outer {
    /* margin-left: 167px; */
}

    .header-style-two .header-lower .main-box .nav-outer .nav .navigation li a {
        color: var(--theme-color-dark);
        font-weight: 400;
    }

        .header-style-two .header-lower .main-box .nav-outer .nav .navigation li a:hover {
            color: var(--primary-color);
        }

.header-style-two .header-lower .main-menu .navigation &gt; li &gt; a {
    color: var(--text-color);
    /* font-size: 17px; */
}

    .header-style-two .header-lower .main-menu .navigation &gt; li &gt; a:hover {
        color: var(--theme-color-dark);
    }

.header-style-two .header-lower .outer-box .contact-info {
    position: relative;
    padding-left: 50px;
}

    .header-style-two .header-lower .outer-box .contact-info .image {
        position: absolute;
        top: 12px;
        left: 0;
    }

    .header-style-two .header-lower .outer-box .contact-info span {
        font-size: 12px;
        color: var(--theme-color-light);
    }

    .header-style-two .header-lower .outer-box .contact-info .title {
        color: var(--theme-color-light);
        margin-top: -4px;
        margin-bottom: 0;
    }

.header-style-two .header-lower .outer-box .social-list-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 71px;
    position: relative;
}

    .header-style-two .header-lower .outer-box .social-list-one::before {
        content: "";
        position: absolute;
        top: -10px;
        left: -31px;
        width: 2px;
        height: 50px;
        background-color: #525c5c;
    }

    .header-style-two .header-lower .outer-box .social-list-one li {
        margin-right: 48px;
    }

        .header-style-two .header-lower .outer-box .social-list-one li:last-child {
            margin-right: 0;
        }

        .header-style-two .header-lower .outer-box .social-list-one li a {
            font-size: 24px;
            color: var(--theme-color-light);
        }

.header-style-two .header-lower .main-menu .navigation &gt; li {
    /* margin-right: 40px; */
}

    .header-style-two .header-lower .main-menu .navigation &gt; li:last-child {
        margin-right: 0;
    }

.header-style-two .header-lower .main-menu .navigation li.dropdown .dropdown-btn {
    display: inline-block;
    border: 2px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -17px;
    width: auto;
    height: unset;
    font-size: 12px;
    color: var(--theme-color-dark);
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    line-height: unset;
}

.header-style-two .header-lower .main-menu .navigation li.dropdown ul .dropdown-btn {
    display: none;
}

.header-style-two .header-lower .mobile-nav-toggler {
    display: inline-block;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    color: var(--primary-color);
    font-size: 30px;
    margin-left: 40px;
    display: none;
}

@media (max-width: 991px) {
    .header-style-two .header-lower .mobile-nav-toggler {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0;
    }
}

.header-style-two .header-lower .main-box .nav-outer .nav .navigation li a {
}

    .header-style-two .header-lower .main-box .nav-outer .nav .navigation li a:hover {
        color: var(--theme-color-dark);
    }

.header-style-two .header-lower .main-menu .navigation &gt; li &gt; ul &gt; li &gt; a:hover {
    color: var(--theme-color-v2);
}

.header-style-two .header-lower .main-box .nav-outer {
    margin-left: auto;
    /* margin-right: auto; */
    /* padding-right: 60px; */
}

.header-style-two .header-lower .sticky-header {
    background-color: var(--theme-color-v2);
}

    .header-style-two .header-lower .sticky-header .mobile-nav-toggler {
        display: none;
    }

    .header-style-two .header-lower .sticky-header .main-menu .navigation &gt; li.current &gt; a, .header-style-two .header-lower .sticky-header .main-menu .navigation &gt; li:hover &gt; a {
        color: var(--theme-color-v2);
    }

    .header-style-two .header-lower .sticky-header .main-menu .navigation &gt; li {
        padding: 0;
    }

    .header-style-two .header-lower .sticky-header.fixed-header {
        height: 70px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #000;
    }

    .header-style-two .header-lower .sticky-header .main-menu {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .header-style-two .header-lower .sticky-header .main-menu .navigation &gt; li.current &gt; a, .header-style-two .header-lower .sticky-header .main-menu .navigation &gt; li:hover &gt; a {
            color: #fff;
        }

        .header-style-two .header-lower .sticky-header .main-menu .navigation li.dropdown .dropdown-btn {
            color: #fff;
        }

    .header-style-two .header-lower .sticky-header .inner-container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

@media (max-width: 767.98px) {
    .header-style-two .header-lower .contact-info {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .header-style-two .header-lower .contact-info {
        display: unset;
        width: 232px;
        margin-left: -170px;
    }
}

.header-style-two .header-lower .outer-box {
    position: relative;
    padding: 0 !important;
}

    .header-style-two .header-lower .outer-box::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -21px;
        width: 1px;
        height: 40px;
        background-color: #00000008;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

@media (max-width: 767.98px) {
    .header-style-two .header-lower .outer-box:before {
        display: none;
    }
}

.header-style-two .header-lower .outer-box .header-btn-two {
    background-color: var(--primary-color);
    border-radius: 0;
    font-weight: 600;
    color: var(--theme-color-light) !important;
    text-transform: capitalize;
    padding: 7px 15px 7px;
    letter-spacing: 0px;
    border-radius: 5px;
}

@media (max-width: 767.98px) {
    .header-style-two .header-lower .outer-box .btn {
        display: none;
    }
}

.header-style-two .header-lower .outer-box .search-btn {
    margin-right: 17px;
    font-size: 24px;
    color: var(--theme-color-dark);
}

@media (max-width: 767.98px) {
    .header-style-two .header-lower .outer-box .search-btn {
        display: none;
    }
}

/***

==================================================================
    Main Footer
==================================================================

***/


.main-footer {
    position: relative;
    /* background-color: var(--primary-color); */
    /*background: url(../images/background/footer-bg.svg);*/
    /* Widget Section */
    background: #fff;
}

.footer-upper {
    /* background-image: url(../images/background/footer-bg.svg);
    background-size: cover;
    background-position-y: -50px;
    background-color: var(--primary-color);*/
    padding: 60px 0 0px;
    position: relative;
    /* background: var(--primary-color); */
    overflow: hidden;
}

    .footer-upper:before {
        content: '';
        position: absolute;
        left: 0;
        top: 60px;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
    }

.footer-upper-inner {
    background-image: url(../images/background/footer-bg-new.svg);
    background-size: cover;
    background-color: var(--primary-color);
    border-radius: 10px;
}
/*
    .footer-upper:before {
        content: '';
        position: absolute;
        left: 25px;
        top: -57px;
        width: 90px;
        height: 90px;
        background-color: #fff;
        transform: rotate(45deg);
    }*/

.footer-upper-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.contact-info-block-heading {
    color: var(--theme-color-light);
    font-size: 40px;
    text-align: center;
    margin-bottom: 10px;
}

.main-footer .footer-upper {
    position: relative;
    padding: 30px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer .widgets-section {
    position: relative;
    padding: 60px 0 50px;
    overflow: hidden;
}

    .main-footer .widgets-section:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url(../images/background/footer-inner.jpg);
        background-size: cover;
        opacity: 0.4;
    }

.footer_bg {
    position: absolute;
    bottom: 0;
    background: url(../images/background/footer_bg.html) no-repeat scroll center 0;
    width: 100%;
    height: 266px;
    display: none;
}

.footer_bg_one {
    background: url(../images/background/footer_bg_one.html) no-repeat center center;
    width: 330px;
    height: 105px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
}

.footer_bg_two {
    background: url(../images/background/footer_bg_two.html) no-repeat center center;
    width: 88px;
    height: 100px;
    background-size: 100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
}

@-moz-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@-webkit-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

.main-footer .footer-column {
    position: relative;
    /* margin-bottom: 50px; */
}

.main-footer .footer-widget {
    position: relative;
}

.main-footer .widget-title {
    position: relative;
    font-weight: normal;
    color: var(--theme-color-dark);
    line-height: 1.2em;
    margin-bottom: 27px;
    font-size: 20px;
}

.contact-info-block {
    position: relative;
    margin-bottom: 30px;
    margin-top: 0;
}

    .contact-info-block .inner {
        position: relative;
        padding-left: 65px;
    }

@media (max-width: 575.98px) {
    .contact-info-block .inner {
        padding-left: 0;
        text-align: center;
    }
}

.contact-info-block .inner .icon {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 48px;
    color: #fff;
    width: 45px;
}

@media (max-width: 575.98px) {
    .contact-info-block .inner .icon {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
}

.contact-info-block .inner .text {
    font-size: 15px;
    color: #ffffff;
    line-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (max-width: 575.98px) {
    .contact-info-block .inner .text {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.contact-info-block .inner .text a {
    color: #fff;
    font-size: 14px;
    transition: color .2s linear;
}

    .contact-info-block .inner .text a:hover {
        color: #fff;
    }

.main-footer .about-widget {
    position: relative;
}

    .main-footer .about-widget .logo {
        margin-bottom: 25px;
    }

    .main-footer .about-widget .text {
        font-weight: 500;
        color: var(--theme-color-dark);
        margin-bottom: 30px;
    }

    .main-footer .about-widget .contact-info {
        position: relative;
    }

        .main-footer .about-widget .contact-info li {
            position: relative;
            padding: 5px 0;
            padding-left: 50px;
            font-size: 16px;
            line-height: 27px;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 10px;
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .main-footer .about-widget .contact-info li a {
                color: inherit;
                font-weight: 700;
                -webkit-transition: none;
                transition: none;
            }

            .main-footer .about-widget .contact-info li i {
                position: absolute;
                left: 0;
                top: 0;
                height: 37px;
                width: 37px;
                background-color: #182838;
                color: var(--secondary-color);
                font-size: 16px;
                line-height: 37px;
                text-align: center;
                -webkit-transition: all 300ms ease;
                transition: all 300ms ease;
                border-radius: 50%;
            }

            .main-footer .about-widget .contact-info li:hover {
                color: var(--secondary-color);
            }

.footer-bg {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/background/overlay-shape.html);
    display: none;
}

.newsletter-widget {
    position: relative;
    padding-left: 70px;
}

@media (max-width: 1199.98px) {
    .newsletter-widget {
        padding-left: 20px;
    }
}

@media (max-width: 991.98px) {
    .newsletter-widget {
        padding-left: 0;
    }
}

.newsletter-widget .text {
    color: var(--theme-color-dark);
    margin-bottom: 20px;
}

/* Subscribe Form */
.subscribe-form {
    position: relative;
    width: 80%;
    margin-left: 30px;
}

    .subscribe-form .form-group {
        position: relative;
        margin-bottom: 0;
    }

        .subscribe-form .form-group input[type=text],
        .subscribe-form .form-group input[type=email] {
            position: relative;
            display: block;
            height: 60px;
            width: 100%;
            font-size: 14px;
            line-height: 30px;
            color: #717070;
            padding: 20px 30px;
            padding-right: 60px;
            background: #fff;
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
            border: 1px solid var(--primary-color);
            border-radius: 5px;
        }

            .subscribe-form .form-group input[type=text]::-webkit-input-placeholder, .subscribe-form .form-group input[type=email]::-webkit-input-placeholder {
                color: #717070;
            }

            .subscribe-form .form-group input[type=text]::-moz-placeholder, .subscribe-form .form-group input[type=email]::-moz-placeholder {
                color: #717070;
            }

            .subscribe-form .form-group input[type=text]:-ms-input-placeholder, .subscribe-form .form-group input[type=email]:-ms-input-placeholder {
                color: #717070;
            }

            .subscribe-form .form-group input[type=text]::-ms-input-placeholder, .subscribe-form .form-group input[type=email]::-ms-input-placeholder {
                color: #717070;
            }

            .subscribe-form .form-group input[type=text]::placeholder,
            .subscribe-form .form-group input[type=email]::placeholder {
                color: #717070;
            }

        .subscribe-form .form-group .theme-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            margin-top: -20px;
            height: 40px;
            width: 40px;
            line-height: 40px;
            font-size: 14px;
            border-radius: 50%;
            color: #ffffff;
            display: block;
            text-align: center;
            background: var(--primary-color);
        }

            .subscribe-form .form-group .theme-btn:hover {
                color: #FFFFFF;
            }

/*=== User LInks ===*/

.user-links-service {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}



.user-links li {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    color: #8f8f8f;
    font-weight: 400;
    margin-bottom: 10px;
}

    .user-links li:last-child {
        margin-bottom: 0;
    }

    .user-links li a {
        position: relative;
        display: inline-block;
        color: inherit;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
        color: var(--theme-color-dark);
    }

        .user-links li a:hover {
            color: #0176d3;
        }

        .user-links li a:before {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background-color: #0176d3;
            content: "";
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
        }

        .user-links li a:hover:before {
            width: 100%;
        }

/*=== Footer Bottom ===*/
.footer-bottom {
    position: relative;
    background-color: var(--primary-color);
    padding: 10px 0;
    border-top: 1px solid #ffffff29;
}

    .footer-bottom .copyright-text {
        position: relative;
        font-size: 15px;
        line-height: 24px;
        font-weight: 500;
        color: #e5e5e5;
        margin-bottom: 0;
        text-align: center;
    }

        .footer-bottom .copyright-text a {
        }

@media (max-width: 767.98px) {
    .footer-bottom .copyright-text {
        text-align: center;
        padding-bottom: 0;
    }
}

.footer-bottom .copyright-text a {
    color: #fff;
    background: #182d41;
    padding: 5px;
    border-radius: 2px;
}

    .footer-bottom .copyright-text a:hover {
        color: #ffffff;
    }

@media (max-width: 767.98px) {
    .footer-bottom .links-column,
    .footer-bottom .logo-column {
        -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }
}

.footer-bottom .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: center; */
    -ms-flex-align: center;
    /* align-items: center; */
    /* -webkit-box-pack: center; */
    -ms-flex-pack: center;
    /* justify-content: center; */
    min-height: 50px;
    align-items: center;
}

    .footer-bottom .footer-logo img {
        width: 110px;
    }

.footer-bottom .footer-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 13px 0;
}

@media (max-width: 767.98px) {
    .footer-bottom .footer-links {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer-bottom .footer-links li {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    color: #848484;
    padding-left: 17px;
    margin-left: 17px;
    font-weight: 500;
}

    .footer-bottom .footer-links li:before {
        position: absolute;
        left: -3px;
        top: 0;
        font-weight: 500;
        content: "/";
    }

    .footer-bottom .footer-links li:first-child {
        padding-left: 0;
        margin-left: 0;
    }

        .footer-bottom .footer-links li:first-child:before {
            display: none;
        }

    .footer-bottom .footer-links li a {
        position: relative;
        display: inline-block;
        color: inherit;
        font-weight: 500;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .footer-bottom .footer-links li a:hover {
            color: #FFFFFF;
        }

/*Social Icon Two*/
.social-icon-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .social-icon-two li {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: 7px;
    }

        .social-icon-two li:last-child {
            margin-right: 0;
        }

        .social-icon-two li a {
            position: relative;
            display: block;
            line-height: 42px;
            height: 42px;
            width: 42px;
            border-radius: 50%;
            text-align: center;
            font-size: 14px;
            color: #ffffff;
            background-color: #0f0f0f;
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .social-icon-two li a i {
                position: relative;
            }

            .social-icon-two li a::before {
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 100%;
                -webkit-transform: scale(0);
                transform: scale(0);
                background-color: var(--theme-color1);
                content: "";
                -webkit-transition: all 300ms ease;
                transition: all 300ms ease;
                border-radius: 50px;
            }

            .social-icon-two li a:hover {
                color: #fff;
            }

                .social-icon-two li a:hover:before {
                    -webkit-transform: scale(1);
                    transform: scale(1);
                }

.footer-logo {
    width: 150px;
}

.newsletter-widget {
    display: flex;
    align-items: center;
    flex-direction: row;
}
/*Media*/
@media only screen and (max-width: 1140px) {
    .main-header {
        margin: 0px !important;
        height: 70px;
    }

    .main-menu .navigation &gt; li {
        margin-left: 20px;
    }

    .main-header .header-top .top-left ul li:last-child {
        top: 0px;
    }

    .main-header .header-top .top-left .links li {
        padding-right: 14px;
        margin-right: 14px;
    }
}

@media only screen and (max-width: 1199px) {
    .logo-bg {
        top: 0;
    }

    .main-menu {
        justify-content: end;
    }

    .about-style-four .thumb {
        text-align: center;
    }

    .main-header .main-box .logo-box {
        padding-bottom: 10px;
    }

    .header-style-two .header-lower .main-menu .navigation &gt; li {
        margin-right: 20px;
    }

        .header-style-two .header-lower .main-menu .navigation &gt; li.outer-box {
            display: block;
        }

    .header-style-two .header-lower .outer-box::before {
        background-color: transparent;
    }

    .header-style-two .header-lower .main-box .nav-outer .nav .navigation li a {
        margin-top: 4px;
    }

    .header-style-two .header-lower .main-menu .navigation &gt; li.outer-box a {
        display: block;
        text-align: center;
        padding: 5px 15px;
        margin-top: 0 !important;
    }

    .main-header .nav-outer {
        width: 100%;
    }

    .main-menu .navigation &gt; li {
        margin-left: 0px;
        margin-right: 18px;
        padding: 0px;
    }

    .main-header .btn-outer {
        display: none;
        padding: 12px 0px;
    }

    .fixed-header .main-menu .navigation &gt; li &gt; a {
        padding: 20px 0px;
    }

    .main-header .nav-outer .outer-box {
        margin-top: 0;
    }
}

@media only screen and (max-width: 991px) {
    .header-style-two .header-lower .main-menu .navigation li.dropdown .dropdown-btn {
        bottom: auto;
    }

    .main-menu .navigation &gt; li.dropdown:hover &gt; ul {
        visibility: unset;
        opacity: unset;
    }

    .main-menu .navigation &gt; li &gt; ul {
        visibility: visible;
        opacity: 1;
        position: relative;
        z-index: 9;
        margin: 0;
        padding: 0;
        width: 106%;
        display: none;
        transition: none !important;
    }

    .dropdown-block li a i {
        left: 5px;
    }

    .header-style-two .header-lower .main-box .nav-outer .nav .navigation li a {
        margin-right: 0;
    }

    .header-style-two .header-lower .main-menu .navigation &gt; li {
        margin-right: 15px;
    }

    .main-menu ul {
        width: 100%;
    }

    .main-menu .navigation &gt; li &gt; ul li {
    }

    .main-header .logo {
        text-align: left;
    }

    .main-header .main-box .nav-outer {
        position: fixed;
        z-index: 99;
        left: 0;
        top: 69px;
        width: 400px;
        background: var(--theme-color-light);
        height: 100%;
        padding: 20px;
        /* padding-top: 100px; */
        transform: translateX(-100%);
        z-index: -2;
    }

    #hamburger.open span {
        background: var(--theme-color-light);
    }

    .main-header .main-box .nav-outer.active {
        transform: translateX(0px);
        overflow: scroll;
        height: 100%;
    }

    .main-menu .navigation &gt; li {
        float: none;
        height: auto;
        margin: 0;
        margin-bottom: 16px;
    }

    .header-style-two .header-lower .outer-box .header-btn-two {
        padding: 10px 20px;
        color: var(--theme-color-light) !important;
    }
}

@media only screen and (max-width: 767px) {
    .subscribe-form {
        width: 100%;
        margin-left: 0px;
        margin-top: 15px;
    }

    .newsletter-widget {
        flex-direction: column;
    }

    .main-header .main-box .nav-outer {
        width: 100%;
    }

    #hamburger.open span {
        background: var(--primary-color);
    }

    .main-footer .widget-title {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .header-style-two .header-lower .outer-box .header-btn-two {
        display: none;
    }

    .header-upper .logo-outer {
        position: relative;
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        width: 100%;
        margin: 0px;
    }

    .main-header .header-top .top-left,
    .main-header .header-top .top-right,
    .main-header .header-top .top-right .links {
        width: 100%;
        text-align: center;
    }

        .main-header .header-top .top-right .links {
            padding-bottom: 15px;
        }

    .header-top .social-icon {
        float: none;
        margin-left: 0px;
        text-align: center;
        display: inline-block;
    }

    .main-header .header-top .top-right .links li {
        float: none;
        display: inline-block;
    }

    .main-menu .collapse {
        max-height: 300px;
        overflow: auto;
        float: none;
        width: 100%;
        padding: 10px 0px 0px;
        border: none;
        margin: 0px 0px 15px;
        -ms-border-radius: 0px;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px;
        -webkit-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

        .main-menu .collapse.in,
        .main-menu .collapsing {
            padding: 10px 0px 0px;
            border: none;
            margin: 0px 0px 15px;
            -ms-border-radius: 0px;
            -moz-border-radius: 0px;
            -webkit-border-radius: 0px;
            -o-border-radius: 0px;
            border-radius: 0px;
            -webkit-box-shadow: none;
            -ms-box-shadow: none;
            -o-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

    .main-menu .navbar-header {
        position: relative;
        float: none;
        display: block;
        text-align: right;
        width: 100%;
        padding: 12px 0px;
        right: 0px;
        z-index: 12;
    }

        .main-menu .navbar-header .navbar-toggle {
            display: inline-block;
            z-index: 12;
            border: 1px solid #ff4800;
            float: none;
            margin: -2px 0px 0px 0px;
            border-radius: 0px;
            background: #ff4800;
        }

            .main-menu .navbar-header .navbar-toggle .icon-bar {
                background: #ffffff;
            }

    .main-menu .navbar-collapse &gt; .navigation {
        float: none !important;
        margin: 0px !important;
        width: 100% !important;
        background: #2c2c2c;
        border: 1px solid #ffffff;
        border-top: none;
    }

        .main-menu .navbar-collapse &gt; .navigation &gt; li {
            margin: 0px !important;
            float: none !important;
            padding: 0px !important;
            width: 100%;
        }

    .main-menu .navigation &gt; li &gt; a,
    .main-menu .navigation &gt; li &gt; ul:before {
        border: none;
    }

    .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; a {
        padding: 10px 10px !important;
        border: none !important;
        font-weight: 500;
    }

    .main-menu .navigation li.dropdown &gt; a:after,
    .main-menu .navigation &gt; li.dropdown &gt; a:before,
    .main-menu .navigation &gt; li &gt; ul &gt; li &gt; a::before,
    .main-menu .navigation &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a::before {
        color: #ffffff !important;
        right: 15px;
        font-size: 16px;
        display: none !important;
    }

    .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; ul,
    .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; ul &gt; li &gt; ul {
        position: relative;
        border: none;
        float: none;
        visibility: visible;
        opacity: 1;
        display: none;
        margin: 0px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        padding: 0px;
        outline: none;
        width: 100%;
        background: #2c2c2c;
        -webkit-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        transition: none !important;
        -webkit-transition: none !important;
        -ms-transition: none !important;
        -o-transition: none !important;
        -moz-transition: none !important;
        -webkit-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

        .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; ul,
        .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; ul &gt; li &gt; ul {
        }

            .main-menu .navbar-collapse &gt; .navigation &gt; li,
            .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; ul &gt; li,
            .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; ul &gt; li &gt; ul &gt; li {
                border-top: 1px solid rgba(255,255,255,1) !important;
                border-bottom: none;
                opacity: 1 !important;
                top: 0px !important;
                left: 0px !important;
                visibility: visible !important;
            }

                .main-menu .navbar-collapse &gt; .navigation &gt; li:first-child {
                    border: none;
                }

                .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; a,
                .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; ul &gt; li &gt; a,
                .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a {
                    padding: 12px 20px 10px !important;
                    line-height: 22px;
                    color: #ffffff;
                    background: #2c2c2c;
                    text-align: left;
                    font-size: 14px;
                    font-weight: 400;
                }

                    .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; a:hover,
                    .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; a:active,
                    .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; a:focus {
                        background: #ff4800;
                    }

                .main-menu .navbar-collapse &gt; .navigation &gt; li:hover &gt; a,
                .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; ul &gt; li:hover &gt; a,
                .main-menu .navbar-collapse &gt; .navigation &gt; li &gt; ul &gt; li &gt; ul &gt; li:hover &gt; a,
                .main-menu .navbar-collapse &gt; .navigation &gt; li.current &gt; a,
                .main-menu .navbar-collapse &gt; .navigation &gt; li.current-menu-item &gt; a {
                    background: #2c2c2c;
                    color: #ffffff !important;
                }

    .main-menu .navbar-collapse &gt; .navigation li.dropdown .dropdown-btn {
        display: block;
    }

    .services-section .owl-dots,
    .main-menu .navbar-collapse &gt; .navigation li.dropdown:after,
    .main-menu .navigation &gt; li &gt; ul:before {
        display: none !important;
    }

    .main-slider .big-title {
        font-size: 36px;
    }

    .main-header .nav-outer {
        padding-right: 0px;
        width: 100%;
    }

        .main-header .nav-outer .search-box-outer {
            left: 0px;
            top: 25px;
            right: auto;
            z-index: 12;
        }

        .main-header .nav-outer .outer-box .talk {
            margin-top: 0;
            top: 15px;
        }

        .main-header .nav-outer .search-box-outer .dropdown-menu {
            left: 0px;
            top: 44px;
        }

    .main-header .btn-outer {
        position: relative;
        display: block;
        float: left;
        z-index: 15;
        margin-left: 0px;
        margin-bottom: -58px;
    }

    .main-header .header-top .top-left .links {
        width: 100%;
    }

        .main-header .header-top .top-left .links li {
            float: none;
            display: inline-block;
        }

            .main-header .header-top .top-left .links li:before,
            .main-header .header-top .top-left .links li:after {
                display: none;
            }

    .main-header .info-box .icon-box {
        position: relative;
        top: 0px;
        text-align: center;
        margin-bottom: 10px;
    }

    .fixed-header .sticky-header,
    .sec-title .text br,
    .time-counter .time-countdown .counter-column:after {
        display: none;
    }

    .main-header .main-box .logo-box {
        text-align: center;
        padding-bottom: 20px;
    }

    .main-header .main-box .outer-container {
        padding-bottom: 5px;
    }

    .main-header .search-box-btn {
        text-align: left;
        border: 0px;
    }

    .main-slider h2.alternate {
        font-size: 36px;
    }

    .main-menu {
        width: 100%;
        padding-right: 0px !important;
    }

    .main-header .language {
        margin-top: 0px;
        top: -8px;
    }

    .main-header .header-top .top-left .links li {
        padding-right: 0px;
    }

    .main-header .info-box {
        display: block;
        padding: 0px;
        margin-bottom: 20px;
        border: 0px;
    }

    .main-header .info-box {
        text-align: center;
    }



    .main-header .logo img {
        top: 7px;
    }
}

@media only screen and (max-width: 599px) {
    .main-header .header-top .top-left {
        padding-bottom: 12px;
    }
}

@media only screen and (max-width: 479px) {
    .main-header .main-box .logo-box {
        padding-bottom: 0px;
    }

    .main-header .main-box .logo-box {
        width: 50%;
    }
}

.dropdown:hover .dropdown-btn {
    transform: rotate(180deg);
}
</pre></body></html>