
header {
    background-color: white;
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
}

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

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


.col-logo img {
    width: 100%;
    float: left;
    max-width: 170px;
    margin-left: 9px;
}

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

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

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



.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% - 300px);
    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;
}





/* mobial */
@media screen and (max-width: 890px) {

    header {
        margin-top: 0px;
    }

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

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

    .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;
    }


}