@font-face {
    font-family: "PTSans-Regular";
    src: url("../assets/fonts/PTSans-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: normal;
}


.row {
	margin-right : auto !important;
	margin-left : auto !important;
}
    .container{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
.menu-sticky.is-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1440px;
    z-index: 1000;
}
@media (min-width: 871px) {
    .menu-sticky.is-sticky {
        width: 100%;
        max-width: 854px;
    }
}

@media (min-width: 1160px) {
    .menu-sticky.is-sticky {
        width: 100%;
        max-width: 1161px;
    }
}

.menu {
    width: 100%;
    background-color: #011B58;
    display: none;
}

.menu.open {
    display: flex;
}

@media (min-width: 769px) {
    .menu {
        display: flex;
    }
}

.menu__list {
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 2rem;
}

@media (min-width: 769px) {
    .menu__list {
        padding-bottom: 0;
        padding-left: 0;
        flex-direction: row;
    }
}

@media (min-width: 1200px) {
    .menu__list {
        justify-content: space-between;
    }
}

.submenu__link {
    color: #000;
}

.menu__item {
    position: relative;
    height: 34px;
    display: flex;
    align-items: center;
}

@media (min-width: 769px) {
    .menu__item {
        height: 50px;
    }
}

.menu__link {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: block;
    font-weight: bolder;
}

.menu__link:hover{
    opacity: 0.8;
    color: #fff !important;
}

.menu__link:active{
    color: #fff !important;
}

.menu__link:focus{
    color: #fff !important;
}

.menu__item--has-submenu .menu__link {
    cursor: pointer;
}

.submenu {
    display: none;
    grid-template-columns: 100%;
    min-width: 250px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 1rem 1rem 0;
    max-height: 80vh;
    overflow-y: auto;

}

@media (max-width: 768px) {
    .fixed-mobile-big-submenu {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
}

@media (min-width: 769px) {
    .submenu {
        grid-template-columns: repeat(2, 39.15rem);
        padding-right: 2rem;
    }
}

@media (min-width: 1160px) {
    .submenu {
        grid-template-columns: repeat(4, 27.7rem);
        gap: 1rem;
    }
}

.nmo-submenu{
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    min-width: 250px;
}

@media (min-width: 769px) {
    .nmo-submenu{
        min-width: 400px;
    }
}

.nmo-submenu li{
    margin: 1rem 0;
    list-style-type: none;
}

.nmo-links{
    text-decoration: none;
    color: #000;
    font-weight: bolder;
}

.nmo-links:hover{
    color: #3cb0e3;
}

.submenu__item {
    list-style: none;
}

.submenu__link {
    text-decoration: none;
    color: #000;
    padding: 10px 15px;
    display: block;
}

.submenu__link:hover{
    color: #3cb0e3;
    text-decoration: underline;
}

@media (min-width: 769px) {
    .menu.open {
        display: none;
    }
}

.hamburger-menu {
    display: flex;
    align-items: center;
    background-color: #011B58;
    padding: 20px 0;
}
@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }
}

.close-submenu{
    cursor: pointer;
    text-align: right;
    margin-right: 1rem;
    font-weight: bolder;
}

@media (min-width: 769px) {
    .close-submenu{
        text-align: left;
        margin-left: 1.5rem;
    }}

.close-submenu:hover{
    color: #EA1D26;
    text-decoration: underline;
}

.hamburger-menu__text {
    color: #fff;
    margin-left: 1rem;
    font-weight: bolder;
    font-size: larger;
}

.hamburger-menu__icon {
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s;
    margin-left: 1rem;
    cursor: pointer;
}

.hamburger-menu__icon::before,
.hamburger-menu__icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}

.hamburger-menu__icon::before {
    top: -10px;
}

.hamburger-menu__icon::after {
    bottom: -10px;
}

.hamburger-menu.open .hamburger-menu__icon {
    background-color: transparent;
}

.hamburger-menu.open .hamburger-menu__icon::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger-menu.open .hamburger-menu__icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.submenu__item-title{
    text-align: left;
    padding-left: 15px;
    margin-top: 1rem;
}

.blue-el{
    background-color: #009ADA;
}