
header {
    background-color: #282425;
    background: linear-gradient(75deg,  rgba(2,2,2,1) 0%,rgba(62,62,62,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}

header .row {
    padding-top: 18px;
    padding-bottom: 18px;
}

.col-logo {
    width: 240px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    padding-left: 18px;
    padding-right: 18px;
}



.col-logo img {
    width: 100%;
    float: right;
}

header .col-logo img {
}

.col-logo span {
    float: left;
    width: 100%;
    text-align: left;
}

.col-logo .left, .col-logo .right {
    width: 50%;
}

.col-logo .left {
    width: 100%;
}

.col-logo .left img {
    max-width: 260px;
    float: left;
}

.col-logo .right {
    padding-left: 3px;
}

.col-logo  span.first {
    font-size: 40px;
    color: white;
    width: 100%;
    letter-spacing: 2.5px;
    margin-top: -4px;
    margin-bottom: 2px;
}

.col-logo.dark  span.first {
    color: black;
}

.col-logo.dark  span.last2 {
    background: none !important;
    -webkit-text-fill-color: initial;
}

.col-logo  span.last {
    font-size: 12px;
    width: 100%;
    text-transform: uppercase;
}

header .col-right {
    width: calc(100% - 240px);
    justify-content: flex-end;
}

header .col-right .nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    display: none;
}

header .col-right .nav li {
    margin-left: 18px;
}

header .col-right .nav li a {
    text-decoration: none;
    color: black;
}

header .wrapper {
    position: relative;
}

header a.search {
    display: block;
    width: 54px;
    height: 54px;
    margin-top: -18px;
    margin-bottom: -18px;
    position: relative;
    text-align: center;
    line-height: 54px;
    margin-right: 6px;
    color: #42ae9d;
    font-size: 26px;
    display: none;
}

header .under-header {
    position: absolute;
    width: auto;
    height: 40px;
    bottom: 0;
    right: 24px;
    margin-bottom: -40px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    padding-left: 24px;
    padding-right: 24px;
    background-color: transparent;
     background: linear-gradient(to right, rgba(116,118,189,1) 0%,rgba(66,174,157,1) 100%);
     border-bottom-left-radius: 125px;
     border-bottom-right-radius: 125px;
     display: none;
}

header .under-header::before, header .under-header::after {
    content: '';
    width: calc(50% + 24px);
    height: 100%;
    position: absolute;
    background-color: #271d3b;
    background-color: #42ae9d;
    background-color: #7675bb;
    left: 0;
    top: 0;
    transform: skewX(0deg);
    z-index: 0;
    opacity: 0;
}

header .under-header::before {
    border-bottom-left-radius: 125px;
}

header .under-header::after {
    left: auto;
    right: 0;
    transform: skewX(0deg);
}

.under-header-hidden .under-header {
    margin-bottom: 0;
}

.nav-open header .under-header {
    margin-bottom: -40px !important;
}

header .under-header ul {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
}

header .under-header ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-left: 3px;
    margin-right: 3px;
}

header .under-header ul li a {
    display: block;
    width: 30px;
    height: 40px;
    color: white;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
}


.language {
    position: relative;
}

.language .language-dropdown {
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 9px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
    margin-right: 18px;
    text-decoration: none;
    font-weight: 500;
    color: #f4f1b2;
    position: relative;
}

.language .language-dropdown span {
    margin-left: 9px;
    text-decoration: none;
}

.language .dropdown {
    padding: 0;
    margin: 0;
    position: absolute;
    width: 120px;
    top: 0;
    left: 50%;
    margin-left: -60px;
    background-color: #2a2a2a;
    list-style: none;
    margin-top: 40px;
    border-radius: 5px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.lang-nav-open .language .dropdown {
    visibility: visible;
    opacity: 1;
}

.language .dropdown::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -10px;
    margin-top: -6px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 10px 15px 10px;
    border-color: transparent transparent #2a2a2a transparent;
    transform: rotate(0deg);
    z-index: -1;
}

.language .dropdown li {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.language .dropdown li:last-child {
    border-bottom: none;
}

.language .dropdown li a {
    display: block;
    float: left;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 9px;
    font-size: 14px;
    color: #f4f1b2;
}

.language .dropdown li.active a {
    background-color: rgba(255, 255, 255, 0.1);
}




/* mobial */
@media screen and (max-width: 890px) {
    header .col-logo img {
    transform: scale(1) translateX(0px);
    }

    header .row {
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .col-logo {
        transform: scale(0.8);
        margin-left: -36px;
    }

    .mobile-menu {
        transform: scale(0.9);
        margin-right: -20px;
    }

    header .under-header {
        height: 36px;
        bottom: 0;
        right: 12px;
        margin-bottom: -36px;
        padding-left: 18px;
        padding-right: 18px;
    }

    header .under-header ul li a {
        height: 36px;
        line-height: 36px;
        font-size: 15px;
    }

    .nav-open header .under-header {
        margin-bottom: -36px !important;
    }


}