.menuXweb {
    border-bottom: 2px solid #ECF2F7;
    background: #fff;
    z-index: 2;
    position: sticky;
    left: 0px;
    top: 0px;
    width: 100%;
    margin: 0px 0px 0px;
}
.menuXweb .contentMenuXweb {
    height: 58px;
    padding: 10px 10px 10px 0px;
    display: flex;
    position: relative;
}
.menuXweb .contentMenuXweb p {
    display: grid;
    align-items: center;
    padding-right: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.1px;
    text-align: left;
    color: #004C73;
    white-space: nowrap;
}
.menuXweb .contentMenuXweb ul {
    border-left: 1px solid #D3D3D3;
    padding-left: 16px;
    display: flex;
    gap: 24px;
}
.menuXweb .contentMenuXweb ul li a {
    display: block;
    padding: 9.5px 0px;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.03px;
    text-align: left;
    position: relative;
    white-space: nowrap;
    color: #354A5F;
}
.menuXweb .contentMenuXweb ul li a:hover:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0px;
    width: 100%;
    height: 4px;
    background: #3DBDFF;
    border-radius: 4px;
}
.menuXweb .contentMenuXweb ul li .active:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0px;
    width: 100%;
    height: 4px;
    background: #3DBDFF;
    border-radius: 4px;
}
.menuXweb .contentMenuXweb .btnFree {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0%, -50%);
}
.menuXweb .contentMenuXweb .btnFree .button-hover-all-2 {
    border-radius: 12px;
}
.menuXweb .btnXwebMobile {
    display: none;
}

#menuXweb .modal-dialog {
    margin: 4rem auto 0px;
    width: 350px;
    max-width: 350px;
    border-radius: 8px;
}
#menuXweb .modal-dialog .modal-content {
    padding-bottom: 16px;
    position: relative;
}
#menuXweb .modal-dialog .modal-content .btn-close {
    position: absolute;
    top: -50px;
    right: -13px;
    opacity: 1;
    width: 50px;
    height: 50px;
}
#menuXweb .modal-dialog .modal-content .btn-close:focus {
    outline: unset;
    box-shadow: unset;
}
#menuXweb .modal-dialog .modal-content .modal-body {
    padding: 0px;
}
#menuXweb .modal-dialog .modal-content .modal-body ul li a {
    border-bottom: 1px solid #ECF2F7;
    display: block;
    padding: 15px 16px 15px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    letter-spacing: -0.0299999993px;
    text-align: left;
    color: #061020;
}
#menuXweb .modal-dialog .modal-content .modal-body ul .activePage p {
    margin-bottom: 0px;
    padding: 15px 16px 15px 16px;
    border-radius: 3px 3px 0px 0px;
    background: #004C73;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    letter-spacing: -0.0299999993px;
    text-align: left;
    color: #FFFFFF;
    position: relative;
}
#menuXweb .modal-dialog .modal-content .modal-body ul .activePage p svg {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(0%, -50%);
}

@media screen and (max-width: 1310px) {
    .menuXweb .contentMenuXweb ul {
        gap: 15px;
    }
}
@media screen and (max-width: 1280px) {
    /*header .container {*/
    /*    margin-left: 10px;*/
    /*    margin-right: 10px;*/
    /*    padding-left: 0px;*/
    /*    padding-right: 0px;*/
    /*}*/
    .menuXweb {
        padding: 0px 10px;
    }
}
@media screen and (max-width: 1200px) {
    .menuXweb .contentMenuXweb {
        height: 58px;
    }
    .menuXweb .contentMenuXweb p {
        display: none;
    }
    .menuXweb .contentMenuXweb ul {
        border-left: 0px;
        padding-left: 0px;
    }
}
@media screen and (max-width: 1100px) {
    .menuXweb {
        border-bottom: 2px solid #004c73;
        padding: 0px;
    }
    .menuXweb .contentMenuXweb {
        height: auto;
        border-bottom: 1px solid #ECF2F7;
        padding: 12px 10px;
    }
    .menuXweb .contentMenuXweb p {
        width: 115px;
        display: grid;
        border-right: 0px;
        padding-right: 10px;
    }
    .menuXweb .contentMenuXweb ul {
        display: none;
    }
    .menuXweb .contentMenuXweb .btnFree {
        width: calc(100% - 125px);
        position: relative;
        top: unset;
        transform: unset;
        display: grid;
        justify-content: end;
    }
    .menuXweb .btnXwebMobile {
        padding: 12px 0px 12px 10px;
        display: block;
        font-size: 14px;
        font-weight: 500;
        line-height: 16.94px;
        letter-spacing: -0.2800000012px;
        text-align: left;
        position: relative;
    }
    .menuXweb .btnXwebMobile img {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translate(0%, -50%);
    }
}
@media screen and (max-width: 1100px) {
    .header-active {
        animation-name: exampleHeader2;
        animation-duration: 0.3s;
        display: block;
        opacity: 1;
    }
    @keyframes exampleHeader2 {
        from {
            display: none;
            opacity: 0;
        }
        to {
            display: block;
            opacity: 1;
        }
    }
    .header-hidden {
        animation-name: exampleHeader;
        animation-duration: 0.3s;
        display: block;
        opacity: 1;
        position: fixed;
        background: white;
    }
    @keyframes exampleHeader {
        from {
            display: block;
            opacity: 0;
        }
        to {
            display: none;
            opacity: 1;
        }
    }
    .menuXweb {
        border-bottom: 2px solid #004c73;
        padding: 0px;
        animation-name: exampleMenu2;
        animation-duration: 0.3s;
        top: 0px;
    }
    .menuXweb .container {
        display: flex;
    }
    .menuXweb .contentMenuXweb {
        position: relative;
        height: auto;
        border-bottom: 1px solid #ECF2F7;
        padding: 12px 10px 12px 0px !important;
    }
    .menuXweb .contentMenuXweb:after {
        content: "";
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translate(0%, -50%);
        height: 32px;
        width: 1px;
        background: #d3d3d3;
    }
    .menuXweb .contentMenuXweb p {
        font-size: 16px !important;
        width: 115px !important;
        display: grid;
        border-right: 0px;
        padding-right: 10px;
        line-height: 130%;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        text-overflow: ellipsis;
        overflow: hidden;
        height: 20px;
    }
    .menuXweb .contentMenuXweb ul {
        display: none;
    }
    .menuXweb .contentMenuXweb .btnFree {
        width: calc(100% - 93px);
        position: relative;
        top: unset;
        transform: unset;
        display: grid;
        justify-content: end;
    }
    .menuXweb .btnXwebMobile {
        width: calc(100% - 125px) !important;
        padding: 12px 0px 12px 0px !important;
        font-size: 14px;
        font-weight: 500;
        line-height: 16.94px;
        letter-spacing: -0.2800000012px;
        text-align: left;
        position: relative;
        display: flex;
        align-items: center;
        background: unset;
        border: unset;
        margin-bottom: 0px;
    }
    .menuXweb .btnXwebMobile:focus {
        box-shadow: unset;
    }
    .menuXweb .btnXwebMobile:active {
        background: unset !important;
        box-shadow: unset !important;
        border: unset !important;
    }
    .menuXweb .btnXwebMobile span {
        position: relative;
        padding-right: 35px;
        color: #004C73;
    }
    .menuXweb .btnXwebMobile span img {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translate(0%, -50%);
    }
    @keyframes exampleMenu2 {
        from {
            top: 60px;
        }
        to {
            top: 0px;
        }
    }
    .menuXweb-bottom {
        animation-name: exampleMenu;
        animation-duration: 0.3s;
    }
    @keyframes exampleMenu {
        from {
            top: 0px;
        }
        to {
            top: 60px;
        }
    }
}
@media screen and (max-width: 1024px) {
    main {
        margin-top: 0px !important;
    }
}

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