﻿* {
    margin: 0;
    padding: 0;
}
a, a:hover {
    color: #FFFFFF;
}


.site-header {
    width: 100%;
    background: #0f8a9d;
    background: linear-gradient(57deg, #00C6A7, #1E4D92 );
    position: relative;
    /*clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);*/
}
.site-header-new {
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.1);
}
.navbar-outer {
    width: 100%;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

    .navbar-outer .logo a {
        font-size: 1.8rem;
        font-weight: 700;
        padding-left: 40px;
        text-transform: uppercase;
    }

.header-logo img{
    height:50px;
}

.navbar-outer .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: inherit;
}

        .navbar-outer .nav-links li {
            list-style: none;
            font-size: 14px;
            font-weight: bold;
        }

            .navbar-outer .nav-links li a.btn {
                background: #FFFFFF;
                color: #000000;
            }

    .navbar-outer .toggle-menu {
        font-size: 1.8rem;
        cursor: pointer;
        margin-right: 25px;
        display: none;
    }

.dropdown-menu-outer {
    display: none;
    position: absolute;
    /*right: 1.5rem;*/
    top: 60px;
    width: 100%;
    height: 0;
    padding: 0px;
    font-weight: 500;
    background: linear-gradient(57deg, #00C6A7, #1E4D92);
    /*background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);*/
    /*border-radius: 10px;*/
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175,0.885,0.32,1.275);
    z-index: 1;
}

    .dropdown-menu-outer.open {
        height: 310px;
    }

    .dropdown-menu-outer li {
        padding: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: left;
    }

/*.navbar-outer a:hover:not(.btn,.header-logo) {
    border-bottom: 3px solid #ffc03d;
}*/
.site-header-new .navbar-outer a.active{
    color: #2EA3F2 !important;
}
.site-header-new .navbar-outer a {
    line-height: 10px !important;
    color: rgba(0,0,0,.6);
    font-size: 15px;
    font-weight: 700
}
.navbar-outer .nav-links li a.btn {
    background: #0c71c3;
    color: #fff !important;
    padding: 8px !important;
    border-radius: 8px;
    width: 100px !important;
    text-align: center;
}
/*.navbar-outer a.active:not(.btn) {
    border-bottom: 3px solid #ffc03d;
}*/
@media(max-width:992px) {
    .navbar-outer .nav-links {
        display: none;
    }

    .navbar-outer .toggle-menu {
        display: block;
    }

    .dropdown-menu-outer {
        display: block;
    }
}
/*a[href="/Account/Login"] {
    color: blue;
}*/
h2 a,h2 a:hover {
    color: blue; 
}
/*h2{
    padding:10px;
}*/
.m-footer-logo{
    height:150px !important;
    width:auto;
    overflow:hidden;
}
.m-footer-logo img{
    width:100%;
    height:150px;
}
.text-black {
    color: #000000;
}
.footer-title {
    color: #8300e9;
    font-weight:bold;
}

.site-footer-new .footer-copyright {
    min-height: 70px;
    border-style: solid;
    border-width: 0px;
    border-top-width: 1px;
    border-top-color: #c3c1c1;
    font-weight: 500;
}
.footer-menu a{
    font-weight:bold;
    font-size:16px;
}
.footer-menu a:hover {
    color: #000000 !important;
    padding-left:5px;
}
.navbar-outer .nav-links li a.btn::after {
    content: "\f061";
    display: none;
    font-family: FontAwesome;
    transform: translateX(0);
    transition: transform 300ms ease 0ms;
    opacity: 0
}
.navbar-outer .nav-links li a.btn:hover::after {
    transform: translateX(5px);
    display: inline-block;
    text-align: left;
    opacity: 1;
    transition: transform 500ms ease
}

