.app-header {
    height: 60px;
    display: flex;
    transition: all 0.2s;
    width: 100%;
    background: #ffffff;
    position: relative !important;
}
.navbar-wrapper {
    display: flex;
    flex-direction: row;
}
.nav-list {
    display: flex;
    flex-direction: row;
}

.nav-item {
    margin-right: 50px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #0e50b0;
    white-space: nowrap;
}
@media (max-width: 1200px) {
    .nav-item {
        margin-right: 20px !important;
    }
}
.nav-item:hover {
    color: #000000;
    text-decoration: none;
}
.navbar-wrapper a:link, a:visited, a:hover, a:active {
    text-decoration: none;
}

/* .header .navbar-nav   .nav-item .nav-link{
    font-size: 0.875rem;
    color: #000;
    font-weight: 500;
    text-transform:capitalize;
    line-height: normal;
    padding: 1rem 1.75rem;
} */

.nav-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffa41e;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.nav-btn a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
}
.nav-btn:hover {
    text-decoration: none;
    transform: translate(0, -2px); 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); 
    color: #fff;
}

.header-bs  .navbar-nav  .nav-item .nav-link:hover{
    color: #2384c6 !important;
}

.header-bs .nav-item:nth-last-child(1) .nav-button{
    padding: 12.5px 16px !important;
}
.header-bs .nav-item:nth-last-child(1) .nav-button:hover {
    color: #ffffff !important;
}

.header-bs .nav-item:nth-last-child(3) .nav-button{
    text-transform: uppercase !important;
}

.navbar-brand{
    max-width: 200px;
    min-width: 140px;
}

.header-bs  .navbar-nav.navbar-nav {
    flex-direction: row;
}
.dropdown-btn {
    background-color: none;
    color: #0e50b0;
    border: none;
    /* padding: 10px 20px; */
    text-align: center;
    text-decoration: none;
}
.dropdown-btn:hover {
    cursor: pointer;
}
.dropdown select {
    border: none;
    text-transform: capitalize;
}
.dropdown-content {
    display: none;
    top: 4rem;
    right: -10px;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 112px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, .2);
    z-index: 1;
    text-transform: capitalize;
}

.dropdown-content a {
    float: none;
    font-size: 15px;
    color: #0e50b0 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: normal;
}
 .dropdown-content a:hover {
    background-color: #ddd;
    cursor: pointer;
}
.mobile-dropdown {
    width: 100%;
    position: relative;
    box-shadow: none;
    margin: 0;
    top: 1rem !important;
    right: 0 !important;
    margin-bottom: 1.5rem;
}

 .dropdown>.lang-overlay { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

 .small-triangle {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #3498db;
    right: 0;
    top: 46%;
    transform: rotate(360deg);
    transition: 0.4s;
}

.arrow-icon {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    padding: 5px;
    box-sizing: content-box;
}

 .nav-button,
 #change_language2 {
    font-size: 16px !important;
    font-weight: bold !important;
}

 #change_language2 {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

/* currency selector */
.currency-form {
    margin-bottom: 0px;
}
.currency-dropdown {
position: relative;
display: inline-block;
}

.currency-btn {
    display: flex;
    align-items: center;
    padding: 8px 0px;
    border: none;
    color: #0e50b0;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    gap: 3px;
}
.currency-btn:focus {
    outline: none;
}

.currency-dropdown .flag-icon,
.currency-btn .flag-icon,
.currency-options .flag-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.currency-btn .chevron-down {
    box-sizing: border-box !important; 
    padding: 5px;
}

.currency-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    max-height: 200px;
    /* overflow-y: auto; */
    overflow: hidden;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, .2);
    border: none;
    border-radius: 0px;
    z-index: 1;
    display: none;
    transition: max-height 0.3s ease;
}

.currency-options.show {
    display: block;
    max-height: 200px;
}

.currency-options .option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

.currency-options .option:hover {
    background-color: #f5f5f5;
}
#nav-overlay .currency-options {
    width: 100%;
    position: relative;
    box-shadow: none;
    margin: 0;
    top: 1rem !important;
    right: 0 !important;
    transition: max-height 0.3s ease;
}

#nav-overlay .currency-btn {
    width: 100%;
    display: flex; 
    justify-content: space-between;
    gap: 0;
    padding: 0;
}

/* ecosystem styling */
.ecosystem__btn {
    display: flex;
    align-items: center;
    /* padding: 8px 12px; */
    border: none;
    color: #0e50b0;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    gap: 3px;
}

/* .ecosystem__btn:hover, .ecosystem__btn:focus {
background-color: #2980B9;
} */

.ecosystem__dropdown {
    position: relative;
    display: inline-block;
}

.ecosystem__options {
    display: none;
    position: absolute;
    top: calc(100%);
    width: 450px;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, .2);
    z-index: 1;
}
.ecosystem__options a {
    color: #000;
    padding: 8px 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px;
    text-align: left;
    align-items: center;
}

.ecosystem__options a img {
    width: 110px;
    height: auto;
}

.ecosystem__options a:hover {background-color: #f5f5f5;}

.ecosystem__dropdown:hover .ecosystem__options {
    display: block;
}
.ecosystem__options .cn-text {
  font-size: 15px !important;
}
#nav-overlay .ecosystem__btn {
    width: 100%;
    display: flex; 
    justify-content: space-between !important;
    gap: 0;
    padding: 0;
}

#nav-overlay .ecosystem__options {
    display: none;
    position: relative;
    top: 1rem !important;
    right: 0 !important;
    width: 100%;
    background-color: #f9f9f9;
    box-shadow: none;
    z-index: 1;
    /* max-height: 0; */
    transition: max-height 0.5s ease;
}
#nav-overlay .ecosystem__options a {
    color: #000;
    padding: 8px 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px;
    text-align: left;
    align-items: center;
}

#nav-overlay .ecosystem__options a img {
    width: 110px;
    height: auto;
}
#nav-overlay .ecosystem__options.open {
    display: block;
}
#nav-overlay .ecosystem__options .cn-text {
  font-size: 15px !important;
}
.mobile-side-menu{
    overflow:hidden;
    max-width:600px;
    width:0;
    height:100%;
    background:white;
    position:fixed;
    top:0;
    right:0;
    z-index:999;
    display:none;
    transition:0.4s;
}

.mobile-side-menu .side-menu{
    padding:1rem;
}

.overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    top: 0;
    left: 0;
    z-index: 998;
    opacity: 0.6;
    display:none;
}

.logo{
    width: auto;
    height: auto;
}

.navbar-margin {
    margin-right: 200px;
    margin-left: 200px;
}
@media (max-width: 1578px) {
    .navbar-margin{margin-left: 20px; margin-right:20px} ;
}

.icon-nav {
    display: none;
}

#nav-overlay .nav-link {
    padding: 10px !important;
}

.nav-overlay {
    height: 100%;
    width: 0;
    max-width: 425px;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    left: auto;
    /* background-color: rgba(0,0,0, 0.9);  */
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
}

.nav-overlay-content {
    position: relative;
    top: 0%;
    width: 100%;
    text-align: left;
    margin-top: 10px;
    /* padding-left: 20px; */
    padding: 10px 20px;
}

.nav-overlay a {
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    /* padding-left: 30px; */
    color: #0e50b0;
    display: block;
    transition: 0.3s;
}

.nav-overlay a:hover, .nav-overlay a:focus {
    color: #f1f1f1;
}
.nav-overlay .dropdown-btn {
    padding: 0;
}
.closebtn {
    text-align: end;
    cursor: pointer;
    z-index: 99999;
}

@media (max-width: 768px) {
    .mobile-side-menu{display:block;}
    .navbar-margin{margin-left: 10px; margin-right:10px} ;

    .logo {
    width: 50%;
    height: auto;
    }
}

@media (max-width: 717px) {

    .logo {
    width: 50%;
    height: auto;
    }
}

@media (max-width: 540px) {
    .logo{
    width: 50%;
    height: auto;
    }
    .app-header {
        height: 70px;
    }
}

#homeggap {
margin-right: -25px;
}
#header-areaa{
    padding-top: 5rem;
}

/** MOBILE SIDE MENU **/
@media (max-width: 991px) {
    .nav-list {
        display: none;
    }
    .nav-overlay {
        display: block;
    }
    .icon-nav {
        display: block;
        margin-right: 20px;
    }
}


/* .mobile-side-menu{
    overflow:hidden;
    max-width:600px;
    width:0;
    height:100%;
    background:white;
    position:fixed;
    top:0;
    right:0;
    z-index:9999;
    display:none;
    transition:0.4s;
}

.mobile-side-menu .side-menu{
    padding:1rem;
} */

@media (max-width: 768px) {
    /* .mobile-side-menu{display:block;}
    .navbar-margin{margin-left: 10px; margin-right:10px} ; */

    .logo {
    width: 80%;
    height: auto;
    }
}

@media (max-width: 717px) {

    /* .logo {
    width: 50%;
    height: auto;
    } */
}

@media (max-width: 540px) {
    /* .logo{
    width: 50%;
    height: auto;
    } */
    .app-header {
        height: 70px;
    }
}

