<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.overlay3 {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .9);
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s
}

header{
    position: relative;
    background-color: #fff;
    z-index: 10;
	width: 1296px;
	display:flex;
	margin:auto;
	max-width:100%;
}


header .sticky-menu {
    z-index: 1000;
    background: transparent;
    transition: ease-in 0.15s;
}

header .sticky-menu &gt; .container &gt; .row{
    align-items: center;
}

.header-logo{
    width: 150px;
    padding-top: 20px;
    padding-bottom: 20px;
}

header .main-logo-wrapper a img {
    transition: 0.15s all ease-in-out;
}

header .border-btn{
    padding: 8px 15px;
}

/*Add by Dorithy 25/10/23/*/
.navbar-expand-lg .navbar-nav .nav-link:hover {
	color:var(--primary-color);
}
/*Edit by Dorithy 26/9/23*/
.sticky-menu.fixed-menu {
    position: fixed;
    background-color: var(--white);
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--border-gray);
    z-index: 1040;
}

.sticky-menu.fixed-menu img {
    width: 100px;
}

.navbar.menu {
    padding: 0;
    justify-content: end;
}

.navbar-nav {
    align-items: center;
}



header .navbar-nav li {
    display: inline-block;
    position: relative;
    margin: 0 10px
}

header .navbar-nav li a {
    font-weight: 600;
    color: var(--black);
    font-size: 16px;
    white-space: normal;
    padding: 0 5px;
    transition: 0.15s;
    text-decoration: none;
}

/*Add color to the nav-link on hover*/
header .navbar-nav li:hover {
	color:var(--white-color);
}
/*Add background color when hover the nav-link*/
header .navbar-nav li a:hover{
    background-color: var(--green-color);
	
}
/*Show nav-item when hover dropdown-menu nav-link*/
header .navbar-nav li:hover .nav-link {
    /*color: var(--primary-color);*/

}
.nav-item  i {
    font-size: 12px;
    padding: 2px;
}
.navbar-nav .nav-item{
	white-space: nowrap;
    padding-top: 15px;
    padding-bottom: 15px;
	
}
.navbar-nav .nav-item .nav-link {
	white-space: nowrap;
    padding-top: 10px;
    padding-bottom: 10px;
	border-radius:5px;
}
.nav-item.dropdown:hover &gt; .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-item.dropdown &gt; .dropdown-menu .dropdown-item:hover &gt; .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    width: 100%;
    border-radius: 0;
    text-align: left;
    transition: 0.25s all;
    margin: 0;
    padding: 0;
    border: 1px solid #e5e5e5;
}

.dropdown-item{
    position: relative;
   padding: 0;
    background-color: var(--secondary-color);
    transition: 0.15s;
    border: 1px solid transparent;
}



.dropdown-item:last-child{
    border-bottom: 0;
}

.dropdown-item:hover {
    background-color: rgba(167,32,44,15%);
}


.dropdown-item a {
    display: block;
    font-size: 14px !important;
}

.dropdown-item:hover a{
    color: var(--black) !important;
}


.dropdown-item:last-child a {
    border-bottom: 0px;
}

.nav-item.dropdown &gt; .dropdown-menu .dropdown-item &gt; .dropdown-menu{
    top: 0;
    left: 151%;
}

.nav-item.dropdown &gt; .dropdown-menu .dropdown-item a{
    display: block;
  text-align: center;
	white-space: pre-wrap;
    padding: 10px;
}

.access-btn{
    background-color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 25px;
    transition: 0.15s;
}

.access-btn i{
    display: none;
}

.access-btn &gt; a{
    color: var(--white) !important;
}

.access-btn:hover{
    background-color: var(--secondary-color-hover);
}

.access-btn:hover a{
    text-decoration: none;
}

/* .access-btn .dropdown-menu{
    background-color: var(--secondary-color);
    border-radius: 5px;
    border: 0;
}

.access-btn .dropdown-menu .dropdown-item{
    border: 0;
}

.access-btn .dropdown-menu .dropdown-item a{
    color: var(--white);
    font-size: 14px;
} */


/*Search Input*/
.search-input {
    background-color: var(--input);
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 40px;
    border-radius: 25px;
    border: 0;
}

.search-input::placeholder{
    color: #BCBEC0;
}

.search-box {
    position: relative;
}

.search-box .btn_search_content {
    all: unset;
    position: absolute;
    top: 17px;
    right: 35px;
    cursor: pointer;
}


/*Search Box*/

.search-trigger {
    cursor: pointer;
}

.search-block {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 25px;
    background-color: #fff;
    transition: all 0.15s;
}

.search-block.show {
    opacity: 1;
    visibility: visible;
}

.search-block .search-box {
    width: 92%;
    position: relative;
    margin: 0 auto;
}

.search-block .search-box .search-input {
    border: 0;
    border-radius: 0;
    padding: 10px;
    font-size: 20px;
}

.search-block .search-box .search-input:focus {
    box-shadow: unset !important;
}

.search-block .search-box .btn-search {
    all: unset;
    position: absolute;
    top: 10%;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.search-close-btn {
    position: absolute;
    top: 20%;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.search-overlay {
    position: fixed;
    /* Sit on top of the page content */
    opacity: 0;
    visibility: hidden;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 11;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
    transition: all 0.15s;
}

.search-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .mobile-logo{
    width: 75px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.mobile-menu .container &gt; .row{
    align-items: center;
}

.mobile-menu {
    display: none;
}

.mobile-logo-wrapper .row &gt; .col-12{
    padding: 0;
}

.desktop-logo-wrapper .row &gt; .col-12 &gt; .row, .desktop-logo-wrapper .row &gt; .col-12 &gt; .row &gt;.row, .mobile-logo-wrapper .row &gt; .col-12 &gt; .row , .mobile-logo-wrapper .row &gt; .col-12 &gt; .row &gt; .row{
    all: unset !important;

}

.mobile-menu-icon{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mobile-menu-icon div{
    margin-left: 25px;
}

.mobile-menu-icon div button{
    padding: 5px 10px;
}

@media (max-width:1399px){
    header .navbar-nav li {
        margin-left: 20px;
    }

    
}



@media (max-width:1199px){
    header .navbar-nav li {
        margin-left: 10px;
    }

}


@media (max-width:991px) {
    

    .navbar-expand-lg .navbar-nav .nav-link{
       padding-bottom: 10px;
}

	header .navbar-nav li a, .navbar-expand-lg .navbar-nav .nav-link:hover {
		color:var(--primary-color);
	}

    .dropdown-menu{
        margin-top: 10px;
    }

    .main-logo{
        width: 90px;
		/*padding: 10px;*/
    }

    .search-trigger.desktop {
        display: none;
    }

    .main-menu&gt;.row {
        width: 100%;
        margin: 0;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
    }

    .main-menu .container{
        padding: 0;
    }

    .navbar {
        justify-content: center;
    }

    header .sticky-menu {
        border-top: 0;
        padding: 0;
    }

    .header-search-wrapper {
        display: none !important;
    }

    .navbar-toggler:focus{
        box-shadow: unset;
    }

    a#toggle {
        color: #464646;
        transition: all 0.15s ease-in-out;
        padding: 0;
    }

    header .sticky-menu {
        border: 0;
    }

    .mobile-menu {
        display: block;
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        /* padding-top: 15px;
        padding-bottom: 15px; */
        z-index: 99;
    }

    .nav-item i{
        position: absolute;
        top: 8px;
    }

    .fixed-menu {
        position: fixed;
        top: 0;
        background-color: #fff;
        border-bottom: 1px solid #e0e0e0;
    }

    .top-bar .location i {
        font-size: 20px;
    }

    .top-bar .location span {
        font-size: 14px;
    }

    .header-sm-icon-wrapper i {
        font-size: 20px;
    }

    .mobile-menu-logo{
        max-width: 175px;
        margin-bottom: 25px;
    }

    .navbar.menu {
        display: block;
		text-align: center;
    }

    .navbar.menu&gt;.row {
        all: unset;
    }


    header .navbar-nav li {
        width: 100%;
        margin: 0;
        padding: 15px 0;
    }

    .navbar-expand-lg .navbar-nav .nav-link, .dropdown-item a{
        font-size: 14px !important;
    }

    header .navbar-nav li .nav-link.active,
    header .navbar-nav li:hover .nav-link {
        border-radius: 0;
    }

    header .main-menu {
        position: fixed;
        background-color: white;
        width: 250px;
        /* width: 90%; */
        height: 100%;
        margin-top: 0px;
        padding-top: 15px;
        padding-left: 0;
        padding-right: 0;
        top: 0;
        right: 0;
        z-index: 1031;
        transform: translateX(250px);
        transition: all ease-out .3s;
        text-align: center;
    }


    html.open-menu .main-menu {
        transform: translateX(0);
        overflow: hidden;
    }

    html.open-menu .overlay3{
        visibility: visible !important;
        opacity: 0.8 !important;
        display: block !important;
         margin-left: 0 !important;
    }

    html.open-menu a#toggle {
        position: fixed;
        right: 275px;
        top: 35px;
        color: var(--white);
    }
/* 
    html .fa-bars::before{
        content: '\f0c9' !important;
    }

    html.open-menu .fa-bars::before{
        content: '\f057' !important;
    } */

    .dropdown-menu {
        display: none;
        left: 0;
        transform: unset;
        min-width: 100%;
        border-top: 1px solid #e5e5e5 !important;
        border-bottom: 1px solid #e5e5e5 !important
    }

    .nav-item .dropdown_toggle {
        display: inline-block;
        margin-left: 10px;
    }

    .nav-item:hover .dropdown-menu {
        display: block;
    }

    .search-block {
        padding: 10px;
    }

    .search-block .search-box .search-input {
        font-size: 16px;
    }

    .search-block .search-box .btn-search {
        font-size: 18px;
        top: 28%;
    }

    .search-close-btn {
        top: 28%;
        right: 15px;
        font-size: 18px;
    }

    .desktop-logo-wrapper{
        margin-bottom: 15px
    }

    .mobile-menu .dropdown-item{
        padding: 0px 10px;
    }

    .search-input-wrapper{
        width: 90% !important;
    }

    .search-input-wrapper .form-control{
        padding: 13px;
    }

    .search-box .btn_search_content{
        top: 19px;
        right: 25px;
    }
}


@media (max-width:575px) {
    .header-sm-icon-wrapper {
        text-align: center;
        margin-top: 10px;
    }
}


.desktop-menu.inner-page .fa-search, .desktop-menu.home-header  .fa-search{
    color: #fff;
}


.desktop-menu.inner-page .get-started-nav-btn, .desktop-menu.home-header .get-started-nav-btn{
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.mobile-icon-wrapper{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.mobile-icon-wrapper .fa-search{
    color: #000;
}</pre></body></html>