#navbar_cnt {
    width: 100%;
    background: #0D3B66 !important;
    height: 96px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

#navbar_cnt.sticky {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 99;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

#navbar_cnt:after {
    position: absolute;
    content: '';
    border-bottom: 20px solid #fff;
    width: 100%;
    transform: translateX(-50%);
    bottom: -20px;
    left: 50%;
}

#navbar_occhiello {
    background-color: #FFC525;
    color: #0D3B66;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    width: 280px;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 30px;
    padding-right: 50px;
}

h1 {
    width: 250px;
    color: #0D3B66;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

#navbar_angolo {
    position: absolute;
    top: 0;
    right: -2px;
    width: 86px;
    background-color: #0D3B66;
    height: 100%;
    border-top-left-radius: 100%;
}


#navbar {
    position: relative;
    width: calc(100% - 280px);
    border: none;
    color: #fff;
    background: #0D3B66;
    height: 100%;
}

#navbar {
    padding-left: 0;
    margin-left: 0;
    padding-right: 50px;
}

.navbar_swiper {
    width: 100%;
    height: 100%;
}

.navbar_swiper_slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    cursor: pointer;
    position: relative;
    padding-top: 10px;
    padding-left: 30px;
    max-width: 270px;
}

.navbar_slide_text {
    position: relative;
}

.navbar_slide_text .link_num {
    width: 20px;
    height: 20px;
    background-color: #FFC525;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #0D3B66;
    text-align: center;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: -25px;
}

.navbar-swiper-button-prev {
    color: #fff;
    left: -40px;
    opacity: 0 !important;
}

.navbar-swiper-button-next {
    color: #fff;
    right: 5px;
    opacity: 0 !important;
}

.navbar-swiper-button-prev:after,
.navbar-swiper-button-next:after {
    font-size: 20px;
}

@media only screen and (max-width: 820px) {
    #navbar_cnt {
        height: 90px;
        justify-content: center;
    }

    #navbar_occhiello {
        width: 160px;
        padding-left: 10px;
    }

    h1 {
        font-size: 14px;
        line-height: 16px;
    }

    #navbar_angolo {
        width: 46px;
        border-top-left-radius: 50px;
    }

    #navbar {
        width: calc(100% - 160px);
        padding-right: 30px;
    }

    .navbar_swiper_slide {
        font-size: 14px;
        line-height: 16px;
    }
}

@media only screen and (min-width: 1540px) {
    .navbar_swiper_slide {
        padding-top: 20px;
    }
}