
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    background: #fff;
    box-shadow: 0 2px 25px 5px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}


.top-bar {
    padding: 11.5px 0;
    background: #f1f1ff;
}

.top-bar {
    font-weight: 500;
}



.btn-sm {
    font-weight: 400;
    padding: 10px 25px;
    font-size: 14px;
}

/*btn theme*/
.btn-theme {
    background: #ee4f77 !important;
    color: #fff !important;
}


/*btn shadow*/
.btn-theme-shadow {
    box-shadow: 0px 8px 24px rgba(238, 79, 118, 0.47);
}


 


/* top-bar dropdown */


.top-bar .dropdown-menu {
    margin-top: 13px;
    border-radius: 8px;
    border: none;
    min-width: 12rem;
    padding: 16px 12px;
    box-shadow: 0 1px 10px 2px rgba(0, 0, 0, .1);
    min-width: 270px;
}

.top-bar h6 {
    margin-bottom: 0px;
    font-size: 14px;
}

.top-bar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-number li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-number li:first-child {
    border-bottom: 1px solid #ddd;

}

.top-bar .dropdown-menu hr {
    margin-top: 11px;
}

.top-bar .contact-number li>a {
    font-size: 14px;
}

.hr-contact {
    border-top: 1px solid #ddd;
}

.social-link {
    border-top: 1px solid #ddd;
}

ul.social-link li {
    margin: 0 5px;
}

ul.social-link li a {
    width: 30px;
    height: 30px;
    overflow: hidden;
    text-align: center;
    line-height: 34px;
    border-radius: 30px;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.social-link li.facebook a {
    background: #2374E1;
}

ul.social-link li.linkedin a {
    background: #0072b1;
}

ul.social-link li.twitter a {
    background: #1DA1F2;
}

ul.social-link li.instagram a {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

ul.social-link li.quora a {
    background: #AA2200;
}


.header .top-bar .rightcontact {
    text-align: right;
}

/*navigation css*/


.header .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #3c3c3c;
    text-transform: uppercase;
    padding: 32px 15px !important;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.navbar .nav-link:hover {
    color: #0a58ca;
    background: #f1f1ff;
}

.navbar .nav-link.show {
    color: #0a58ca;
    background: #f1f1ff;
}

.menu-bar .dropdown-menu {
    margin-top: -5px;
    
    box-shadow: none;
    border: none;
    
    background: rgba(255, 255, 255, 0.8);
    padding: 0;
    border-radius: 0;
    box-shadow: 0 2px 25px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-radius: 0 0 5px 5px;
    backdrop-filter: blur(12px);
}


.wrapper {
    margin-top: 133px;
}


.header .main_menu {
    padding: 14px 0;
}
.main_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EFEFEF;
    border-radius: 50px;
    padding: 3px;
}
.header .nav-link {
  	padding: 12px 14px !important;
    line-height: 1.1;
    color: #111;
    border-radius: 50px;
    font-size: 15px;
}
.nav-link:hover {
    background: #f1f1ff;
}





@media (min-width: 992px) {
    .menu-bar .dropdown-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 20px);
        display: block;
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
    }

    .menu-bar .dropdown.nav-item:hover .dropdown-menu,
    .menu-bar .dropdown-menu.show {
        opacity: 1;
        pointer-events: all;
        visibility: visible;
        transform: translateY(-15px);
        overflow: hidden;
    }

    .dropdown-menu.smallwidth {
        min-width: 280px;
        max-width: 400px;
        left: auto;
        right: auto;
    }
    .menu-bar .dropdown {
        position: inherit;
    }

}

.dropdown-item {
    border-radius: 0;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    border-left: 2px solid transparent;
    transition: 0.2s;
    /*white-space: break-spaces;*/
}

.header .dropdown-item:hover {
    border-color: #ee4f77;
    color: #16181b;
    background-color: #f8f9fa;
}


.dropdown-menu.fullwidth .nav-tabs {
    background: #1668e2;
    padding: 30px;
    border-radius: 0 0 0 5px;
    flex-direction: column;
    margin-bottom: -1px;
}

.nav-item .nav-link-tab {
    padding: 15px 25px;
    color: #fff;
    border-radius: 50px;
    min-width: 100%;
    border: none !important;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.nav-item .nav-link-tab.active {
    background: #fff;
    color: #3c3c3c;
}

.nav-item .nav-link-tab:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f061";
    opacity: 0;
    transition: 0.3s;
    transform: translateX(-10px);
}

.nav-item .nav-link-tab.active:after {
    opacity: 1;
    transform: translateX(0px);
}

.border-right {
    border-right: 1px solid #b9b6b8 !important;
}



.flat_button {
    position: fixed;
    left: 25px;
    z-index: 99;
    top: calc(100vh - 150px);
}
.flat_button a {
    height: 47.98px;
    width: 47.98px;
    font-size: 22px;
    border-radius: 50%;
    display: block;
    line-height: 47.98px;
    text-align: center;
}
.flat_button a * {
    width: 100%;
    max-width: 22px;
    max-height: 22px;
    margin: 0 auto;
    object-fit: scale-down;
}
.float_whatsapp {
    background: #55cd6c;
    box-shadow: -5px 6px 25px #55cd6c6b;
    transition: all .3s;
}
.float_skype {
    background: #fff;
    box-shadow: -5px 6px 25px hsl(199deg 98% 48% / 41%);
    transition: all .3s;
}

@media only screen and (min-width:1200px) and (max-width:1439px) {


/*navbar css*/
    .header .nav-link {
        font-size: 14px;
        padding: 32px 11px !important;
}


}
@media screen and (min-width: 1200px) and (max-width: 1600px) {

    .header a.navbar-brand {
        max-width: 230px;
        max-width: 200px;
    }


}


@media screen and (min-width: 1200px) and (max-width: 1439px) {


    .menu-bar .navbar .nav-link {
        font-size: 13px;
        padding: 10px 7px !important;
    }

}



@media only screen and (min-width:992px) and (max-width:1199px) {

    .navbar-brand {
        max-width: 207px;
    }

  /*navbar css*/
    .header .nav-link {
        font-size: 13px;
        padding: 10px 10px !important;
    }
 
}



@media only screen and (min-width:768px) and (max-width:991px){

    .header .main_menu {
        padding: 5px 0;
    }

.wrapper {
    margin-top: 118px;
}

.navbar-brand {
    max-width: 207px;
}

.ma5menu__toggle {
    width: 47px;
    height: 44px;
    margin: 1rem auto;
    line-height: 1;
}
.top-bar a {
    font-size: 13px;
}






}

@media only screen and (min-width:320px) and (max-width:767px){






    .header .main_menu {
        padding: 5px 0;
    }

    
.main_nav, .btn-raq{
    display: none;
}




.wrapper {
    margin-top: 93px;
}

  
/*top bar*/
.top-bar a {
    font-size: 13px;
}
.navbar-brand {
    max-width: 180px;
}
.ma5menu__toggle {
    width: 47px;
    height: 44px;
    margin: 0.4rem auto;
    line-height: 1;
}
.top-bar {
    padding: 8.5px 0;
}




}





