/* @import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap");
.header-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #ffffff;
}

.header-top .grid-header-top {
    display: grid;
    grid-template-columns: auto 350px;
    grid-gap: 15px;
    padding: 10px 0 15px;
}

@media (max-width: 991px) {
    .header-top .grid-header-top {
        grid-template-columns: 50px auto;
        grid-gap: 15px;
        padding: 0;
    }
}

.header-top .grid-header-top .widget-left {
    display: grid;
    grid-template-columns: 65px auto;
    grid-gap: 10px;
}

@media (max-width: 991px) {
    .header-top .grid-header-top .widget-left {
        grid-template-columns: 1fr;
    }
}

.header-top .grid-header-top .widget-left .logo {
    position: relative;
}

.header-top .grid-header-top .widget-left .logo img {
    position: relative;
    top: 7px;
}

.header-top .grid-header-top .widget-left .search-box {
    position: relative;
}

.header-top .grid-header-top .widget-left .search-box input {
    width: 100%;
    border: 2px solid #222;
    border-radius: 50px;
    height: 50px;
    position: relative;
    top: 3px;
    outline: none;
    background-color: #ffeaea;
    padding-left: 20px;
    font-size: 17px;
}

.header-top .grid-header-top .widget-left .search-box button.icon-search {
    position: absolute;
    right: 2px;
    top: 5px;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background-color: #ffeaea;
}

.header-top .grid-header-top .widget-left .search-box button.icon-search svg {
    width: 25px;
}

.header-top .grid-header-top .widget-left .search-box button.icon-search:hover {
    background-color: var(--color-1);
}

.header-top .grid-header-top .widget-left .search-box button.icon-search:hover svg {
    fill: #fff;
}

.header-top .grid-header-top .widget-right {
    text-align: right;
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.header-top .grid-header-top .widget-right>div {
    display: inline-block;
    height: 100%;
    display: flex;
}

.header-top .grid-header-top .widget-right>div a {
    margin: auto;
    height: 100%;
    display: block;
    padding: 11px 10px;
    color: #222;
    font-weight: bold;
}

@media (max-width: 991px) {
    .header-top .grid-header-top .widget-right>div a {
        padding: 10px 8px;
        font-size: 13px;
    }
}

.header-top .grid-header-top .widget-right>div a svg {
    width: 20px;
}

.header-top .grid-header-top .widget-right img.profile-top {
    --v: 25px;
    width: var(--v);
    height: var(--v);
    border-radius: var(--v);
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid var(--color-1);
}

@media (max-width: 991px) {
    .header-top .logo img {
        position: relative;
        top: 10px;
    }
}

.navbar-expand-lg {
    padding: 0;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: unset;
    text-align: center;
    display: block;
    width: 100%;
}

.navbar-expand-lg .navbar-nav li {
    padding: 0 5px;
    display: inline-block;
}

.navbar-expand-lg .navbar-nav li .nav-link {
    font-size: 13px;
    padding: 0 20px 20px;
    text-transform: uppercase;
    color: #222;
}

.navbar-expand-lg .navbar-nav li .nav-link:first-child {
    padding-left: 0;
} */

/*# sourceMappingURL=header.css.map */