.header {
    background: -webkit-linear-gradient(90deg, #8fb0ff,#709bff,#6190ff);
    background: linear-gradient(90deg, #8fb0ff,#709bff,#6190ff);
    font-family: var(--bs-font-sans-serif)
}
.header__menu {
    justify-content: space-between;
    width: 100%;
    display: flex;
    align-items: center;
}
.mb-4 {
    margin-bottom: 0px !important;
}
.nav__item, .nav__item a {
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
    color: #fff;
    text-decoration: none;
}
.auth__btn {
    background: -webkit-linear-gradient(0deg, #3561e8,#4a7ef2,#558df6);
    background: linear-gradient(0deg, #3561e8,#4a7ef2,#558df6);
    color: #fff;
}
.nav__item:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: all .2s linear;
}
.nav__item:hover.nav__item:after {
    width: 90%;
}
.logoContent__inner {
    display: flex;
    align-items: center;
}
.logoContent__img {
    width: 30%;
    height: auto;
    margin-right: 40px;
}
.logoContent__img img{
    width: 100%;
    height: auto;
}
.logoContent {
    padding: 40px 0;
    background-image: url("/app/portal/assets/images/logo.jpg");
    background-repeat: no-repeat;
    background-size: cover;

}
.logoContent__title {
    background: rgb(30,64,96);
    background: linear-gradient(54deg, rgba(30,64,96,1) 10%, rgba(6,13,82,1) 78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Scada', sans-serif;
    font-weight: 700;
}