<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/**{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}*/
body{
    line-height: 1.4;
}


.top-nav{
    display: block;
}
.top-nav-desktop{
    display: none;
}
.icon a:hover{
    transform: scale(1.01);
    transition: 200ms;
}
.background-header{
    background-color: #e6e6e633 !important;
}
.main-wrapper img{
    width: 100%;
    display: block;
}
.main-wrapper a{
    color: #000000;
    text-decoration: none;
}
.main-wrapper ul li{
    list-style-type: none;
}
.navbar{
    background: #fafafa;
    padding: 0 1rem;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    z-index: 10;
}
.brand-and-icon{
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    width: 90%;
    flex-direction: row-reverse;

}
.navbar-brand{
    font-size: 1.8rem;
    letter-spacing: 3px;
    font-weight: 700;
}
.navbar-toggler{
    display: block;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    transition: all 0.4s ease;
    border-radius: 4px;
    color: #ffffff;
    border: none;
}
.navbar-toggler:hover{
    opacity: 0.7;
    border: none;
}
.navbar-toggler:active{
    border: none;
}
.navbar-collapse{
    overflow-y: visible;
    display: none;
    width: 100%;
}
.navbar-nav &gt; li &gt; a{
    text-transform: uppercase;
    font-weight: normal;
    display: block;
    padding: 10px;
    margin: 0.2rem 0;
    position: relative;
    transition: all 0.4s ease;
}
.navbar-nav &gt; li &gt; a:hover{
    color: red;
}

.drop-icon{
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #098458;
}

.navbar-nav &gt; li &gt; a:hover{
    opacity: 0.7;
}
.sub-menu h4 {
  text-transform: capitalize;
  font-size: 1rem;
  padding: 0.5rem 0;
  color: #17a2b8;
}
.sub-menu ul li{
    text-transform: capitalize;
    padding: 0.2rem 0;
    margin: 0.2rem 0;
    font-size: 0.95rem;
}
.sub-menu ul li a{
    opacity: 0.8;
    transition: all 0.5s ease;
}
.sub-menu ul li a:hover{
    padding-left: 14px;
    opacity: 0.9;
}
.sub-menu{
    display: none;
}

.sub-menu-item{
    box-sizing: border-box;
    padding-left: 1.2rem;
    width: 45%;
    display: inline-block;
}
.Sub-menu-item &gt; ul &gt; a:hover h4 {
  color: #0f6674 !important;
}
.Sub-menu-item &gt; ul &gt; li &gt; a:hover {
  color: red !important;
}

    .icon-header1 {
        display:none;
    }
    .icon-header2{
        display:block;
    }
/* Media Queries */
@media screen and (min-width: 992px){
    .top-nav{
        display: none;
    }
    .top-nav-desktop{
        display: block;
    }
    .sub-menu-item{
        width: 90%;
    }
    header{
        background-color: #ffffff !important;
    }
    .icon-header1{
        display:flex !important;
    }
    .icon-header2{
        display:none;
    }

    .navbar{
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        position: relative;
    }
    .navbar-toggler{
        display: none;
    }
    .brand-and-icon{
        border-bottom: none;
        padding: 0;
    }
    .navbar-collapse{
        display: flex !important;
        overflow-y: hidden;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%;
    }
    .navbar-nav{
        display: flex;
        align-items: start;
        justify-content: start;
        flex-direction: row;
        width: 100%;
    }
    .navbar-nav &gt; li &gt; a{
        border-bottom: none;
        margin: 0 0.4rem;
        padding: 20px;
        font-size: 1rem;
        font-weight:normal;
    }
    .sub-menu{
        position: absolute;
        left: 0;
        width: 100%;
        top: 100%;
        background: #f3f3f3fa;
        border-radius: 10px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;

    }
    .sub-menu a{
        color: #000 !important;

    }
    .navbar-nav &gt; li:hover .sub-menu{
        display: grid!important;
        grid-template-columns: repeat(4, 1fr);
        padding: 0 5rem;
    }
    .navbar-nav &gt; li{
        border-bottom: 2px solid transparent;
        transition: border-bottom 0.4s ease;
    }
    .navbar-nav &gt; li:hover{
        border-bottom-color: #000;
    }
    .sub-menu-item{
        padding-left: 0;
    }


}
</pre></body></html>