body {
    font-family: Jost;
}


.cardz-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
}

.cardz {
    width: 300px;
    padding: 20px;
    border-radius: 16px;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

    .cardz:hover {
        transform: scale(1.03);
    }

    .cardz h2 {
        margin-top: 0;
        font-size: 1.5rem;
    }

    .cardz p {
        font-size: 1rem;
        line-height: 1.5;
    }

.cardz-blue {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.cardz-orange {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.cardz-gray {
    background: linear-gradient(135deg, #d3d3d3, #f5f5f5); /* Dégradé gris clair */
    color: #333;
}

.upload-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.cardz-gray hr {
    border: none;
    height: 1px;
    background-color: #ccc;
    margin: 10px 0;
}


.cardz-lightblue {
    background: linear-gradient(135deg, #b2d9f7, #c4e1f9);
    color: #222;
}

.inputz-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.tb-multiline,
.tb-single {
    font-family: inherit;
    font-size: 1rem;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
}

.cardz-content {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cardz-left {
    flex: 1 1 45%;
}

    .cardz-left ul {
        padding-left: 20px;
        margin-top: 10px;
    }

    .cardz-left li {
        margin-bottom: 8px;
    }

.cardz-right {
    flex: 1 1 50%;
    min-width: 300px;
}



.row-checkbox-wrapper {
    display: block;
    justify-content: center;
    text-align: center;
    padding-top: 15px;
}

#background-video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.display-1 {
    font-family: 'Jost', sans-serif;
    font-size: 4.6rem;
    line-height: 1.1;
}

    .display-1 > .mbr-iconfont {
        font-size: 5.75rem;
    }

.display-2 {
    font-family: 'Jost', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
}

    .display-2 > .mbr-iconfont {
        font-size: 3.75rem;
    }

.display-4 {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
}

    .display-4 > .mbr-iconfont {
        font-size: 1.375rem;
    }

.display-5 {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    line-height: 1.5;
}

    .display-5 > .mbr-iconfont {
        font-size: 2.5rem;
    }

.display-7 {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
}

    .display-7 > .mbr-iconfont {
        font-size: 1.5rem;
    }

/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
    .display-1 {
        font-size: 3.68rem;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.22rem;
        font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 2.4rem;
        font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-4 {
        font-size: 0.88rem;
        font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-5 {
        font-size: 1.6rem;
        font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-7 {
        font-size: 0.96rem;
        font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
    }
}
/* Buttons */
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-md {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-lg {
    padding: 1rem 2.6rem;
    border-radius: 4px;
}

.bg-primary {
    background-color: #6592e6 !important;
}

.bg-success {
    background-color: #40b0bf !important;
}

.bg-info {
    background-color: #47b5ed !important;
}

.bg-warning {
    background-color: #bcff61 !important;
}

.bg-danger {
    background-color: #ff9966 !important;
}

.btn-primary,
.btn-primary:active {
    background-color: #6592e6 !important;
    border-color: #6592e6 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary.focus,
    .btn-primary.active {
        color: #ffffff !important;
        background-color: #2260d2 !important;
        border-color: #2260d2 !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-primary.disabled,
    .btn-primary:disabled {
        color: #ffffff !important;
        background-color: #2260d2 !important;
        border-color: #2260d2 !important;
    }

.btn-secondary,
.btn-secondary:active {
    background-color: #ff6666 !important;
    border-color: #ff6666 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary.focus,
    .btn-secondary.active {
        color: #ffffff !important;
        background-color: #ff0f0f !important;
        border-color: #ff0f0f !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-secondary.disabled,
    .btn-secondary:disabled {
        color: #ffffff !important;
        background-color: #ff0f0f !important;
        border-color: #ff0f0f !important;
    }

.btn-info,
.btn-info:active {
    background-color: #47b5ed !important;
    border-color: #47b5ed !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-info:hover,
    .btn-info:focus,
    .btn-info.focus,
    .btn-info.active {
        color: #ffffff !important;
        background-color: #148cca !important;
        border-color: #148cca !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-info.disabled,
    .btn-info:disabled {
        color: #ffffff !important;
        background-color: #148cca !important;
        border-color: #148cca !important;
    }

.btn-success,
.btn-success:active {
    background-color: #40b0bf !important;
    border-color: #40b0bf !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-success:hover,
    .btn-success:focus,
    .btn-success.focus,
    .btn-success.active {
        color: #ffffff !important;
        background-color: #2a747e !important;
        border-color: #2a747e !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-success.disabled,
    .btn-success:disabled {
        color: #ffffff !important;
        background-color: #2a747e !important;
        border-color: #2a747e !important;
    }

.btn-warning,
.btn-warning:active {
    background-color: #bcff61 !important;
    border-color: #bcff61 !important;
    color: #386100 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-warning:hover,
    .btn-warning:focus,
    .btn-warning.focus,
    .btn-warning.active {
        color: #060a00 !important;
        background-color: #97ff0a !important;
        border-color: #97ff0a !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-warning.disabled,
    .btn-warning:disabled {
        color: #386100 !important;
        background-color: #97ff0a !important;
        border-color: #97ff0a !important;
    }

.btn-danger,
.btn-danger:active {
    background-color: #ff9966 !important;
    border-color: #ff9966 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-danger:hover,
    .btn-danger:focus,
    .btn-danger.focus,
    .btn-danger.active {
        color: #ffffff !important;
        background-color: #ff5f0f !important;
        border-color: #ff5f0f !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-danger.disabled,
    .btn-danger:disabled {
        color: #ffffff !important;
        background-color: #ff5f0f !important;
        border-color: #ff5f0f !important;
    }

.btn-white,
.btn-white:active {
    background-color: #fafafa !important;
    border-color: #fafafa !important;
    color: #7a7a7a !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-white:hover,
    .btn-white:focus,
    .btn-white.focus,
    .btn-white.active {
        color: #4f4f4f !important;
        background-color: #cfcfcf !important;
        border-color: #cfcfcf !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-white.disabled,
    .btn-white:disabled {
        color: #7a7a7a !important;
        background-color: #cfcfcf !important;
        border-color: #cfcfcf !important;
    }

.btn-black,
.btn-black:active {
    background-color: #232323 !important;
    border-color: #232323 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-black:hover,
    .btn-black:focus,
    .btn-black.focus,
    .btn-black.active {
        color: #ffffff !important;
        background-color: #000000 !important;
        border-color: #000000 !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-black.disabled,
    .btn-black:disabled {
        color: #ffffff !important;
        background-color: #000000 !important;
        border-color: #000000 !important;
    }

.btn-primary-outline,
.btn-primary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #6592e6;
}

    .btn-primary-outline:hover,
    .btn-primary-outline:focus,
    .btn-primary-outline.focus,
    .btn-primary-outline.active {
        color: #2260d2 !important;
        background-color: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .btn-primary-outline.disabled,
    .btn-primary-outline:disabled {
        color: #ffffff !important;
        background-color: #6592e6 !important;
        border-color: #6592e6 !important;
    }

.btn-secondary-outline,
.btn-secondary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #ff6666;
}

    .btn-secondary-outline:hover,
    .btn-secondary-outline:focus,
    .btn-secondary-outline.focus,
    .btn-secondary-outline.active {
        color: #ff0f0f !important;
        background-color: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .btn-secondary-outline.disabled,
    .btn-secondary-outline:disabled {
        color: #ffffff !important;
        background-color: #ff6666 !important;
        border-color: #ff6666 !important;
    }

.btn-info-outline,
.btn-info-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #47b5ed;
}

    .btn-info-outline:hover,
    .btn-info-outline:focus,
    .btn-info-outline.focus,
    .btn-info-outline.active {
        color: #148cca !important;
        background-color: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .btn-info-outline.disabled,
    .btn-info-outline:disabled {
        color: #ffffff !important;
        background-color: #47b5ed !important;
        border-color: #47b5ed !important;
    }

.btn-success-outline,
.btn-success-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #40b0bf;
}

    .btn-success-outline:hover,
    .btn-success-outline:focus,
    .btn-success-outline.focus,
    .btn-success-outline.active {
        color: #2a747e !important;
        background-color: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .btn-success-outline.disabled,
    .btn-success-outline:disabled {
        color: #ffffff !important;
        background-color: #40b0bf !important;
        border-color: #40b0bf !important;
    }

.btn-warning-outline,
.btn-warning-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #bcff61;
}

    .btn-warning-outline:hover,
    .btn-warning-outline:focus,
    .btn-warning-outline.focus,
    .btn-warning-outline.active {
        color: #97ff0a !important;
        background-color: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .btn-warning-outline.disabled,
    .btn-warning-outline:disabled {
        color: #386100 !important;
        background-color: #bcff61 !important;
        border-color: #bcff61 !important;
    }

.btn-danger-outline,
.btn-danger-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #ff9966;
}

    .btn-danger-outline:hover,
    .btn-danger-outline:focus,
    .btn-danger-outline.focus,
    .btn-danger-outline.active {
        color: #ff5f0f !important;
        background-color: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .btn-danger-outline.disabled,
    .btn-danger-outline:disabled {
        color: #ffffff !important;
        background-color: #ff9966 !important;
        border-color: #ff9966 !important;
    }

.btn-black-outline,
.btn-black-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #232323;
}

    .btn-black-outline:hover,
    .btn-black-outline:focus,
    .btn-black-outline.focus,
    .btn-black-outline.active {
        color: #000000 !important;
        background-color: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .btn-black-outline.disabled,
    .btn-black-outline:disabled {
        color: #ffffff !important;
        background-color: #232323 !important;
        border-color: #232323 !important;
    }

.btn-white-outline,
.btn-white-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #fafafa;
}

    .btn-white-outline:hover,
    .btn-white-outline:focus,
    .btn-white-outline.focus,
    .btn-white-outline.active {
        color: #cfcfcf !important;
        background-color: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .btn-white-outline.disabled,
    .btn-white-outline:disabled {
        color: #7a7a7a !important;
        background-color: #fafafa !important;
        border-color: #fafafa !important;
    }

.text-primary {
    color: #6592e6 !important;
}

.text-secondary {
    color: #ff6666 !important;
}

.text-success {
    color: #40b0bf !important;
}

.text-info {
    color: #47b5ed !important;
}

.text-warning {
    color: #bcff61 !important;
}

.text-danger {
    color: #ff9966 !important;
}

.text-white {
    color: #fafafa !important;
}

.text-black {
    color: #232323 !important;
}

a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
    color: #205ac5 !important;
}

a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
    color: #ff0000 !important;
}

a.text-success:hover,
a.text-success:focus,
a.text-success.active {
    color: #266a73 !important;
}

a.text-info:hover,
a.text-info:focus,
a.text-info.active {
    color: #1283bc !important;
}

a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
    color: #90fa00 !important;
}

a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
    color: #ff5500 !important;
}

a.text-white:hover,
a.text-white:focus,
a.text-white.active {
    color: #c7c7c7 !important;
}

a.text-black:hover,
a.text-black:focus,
a.text-black.active {
    color: #000000 !important;
}

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
    position: relative;
    background-image: transparent;
    background-size: 10000px 2px;
    background-repeat: no-repeat;
    background-position: 0px 1.2em;
    background-position: -10000px 1.2em;
}

    a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
        transition: background-position 2s ease-in-out;
        background-image: linear-gradient(currentColor 50%, currentColor 50%);
        background-position: 0px 1.2em;
    }

.nav-tabs .nav-link.active {
    color: #6592e6;
}

.nav-tabs .nav-link:not(.active) {
    color: #232323;
}

.alert-success {
    background-color: #70c770;
}

.alert-info {
    background-color: #47b5ed;
}

.alert-warning {
    background-color: #bcff61;
}

.alert-danger {
    background-color: #ff9966;
}

.mbr-section-btn a.btn:not(.btn-form) {
    border-radius: 100px;
}

.mbr-gallery-filter li a {
    border-radius: 100px !important;
}

.mbr-gallery-filter li.active .btn {
    background-color: #6592e6;
    border-color: #6592e6;
    color: #ffffff;
}

    .mbr-gallery-filter li.active .btn:focus {
        box-shadow: none;
    }

.nav-tabs .nav-link {
    border-radius: 100px !important;
}

a,
a:hover {
    color: #6592e6;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #a0d8df;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
    border-radius: 100px;
}

.form-control {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
}

    .form-control > .mbr-iconfont {
        font-size: 1.375rem;
    }

    .form-control:hover,
    .form-control:focus {
        box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
        border-color: #6592e6 !important;
    }

    .form-control:-webkit-input-placeholder {
        font-family: 'Jost', sans-serif;
        font-size: 1.1rem;
        line-height: 1.5;
        font-weight: 400;
    }

        .form-control:-webkit-input-placeholder > .mbr-iconfont {
            font-size: 1.375rem;
        }

blockquote {
    border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
    border-radius: 100px !important;
}

    .mbr-form .input-group-btn a.btn:hover {
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    }

.mbr-form .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
    padding: 1rem 3rem;
}

    .mbr-form .input-group-btn button[type="submit"]:hover {
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    }

.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: #6592e6;
    color: #ffffff;
}

.jq-number__spin {
    transition: 0.25s ease;
}

    .jq-number__spin:hover {
        border-color: #6592e6;
    }

    .jq-selectbox .jq-selectbox__trigger-arrow,
    .jq-number__spin.minus:after,
    .jq-number__spin.plus:after {
        transition: 0.4s;
        border-top-color: #353535;
        border-bottom-color: #353535;
    }

    .jq-selectbox:hover .jq-selectbox__trigger-arrow,
    .jq-number__spin.minus:hover:after,
    .jq-number__spin.plus:hover:after {
        border-top-color: #6592e6;
        border-bottom-color: #6592e6;
    }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
    color: #ffffff !important;
    background-color: #6592e6 !important;
    box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    color: #000000 !important;
    background: #ff6666 !important;
    box-shadow: none !important;
}

.lazy-bg {
    background-image: none !important;
}

.lazy-placeholder:not(section),
.lazy-none {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    height: auto;
}

iframe.lazy-placeholder,
.lazy-placeholder:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: transparent no-repeat center;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

section.lazy-placeholder:after {
    opacity: 0.5;
}

body {
    overflow-x: hidden;
}

a {
    transition: color 0.6s;
}

.cid-sEL0io5yOc {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-sEL0io5yOc nav.navbar {
        position: fixed;
    }

    .cid-sEL0io5yOc .dropdown-item:before {
        font-family: Moririse2 !important;
        content: "\e966";
        display: inline-block;
        width: 0;
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        margin-right: 0.5rem;
        line-height: 1;
        font-size: inherit;
        vertical-align: middle;
        text-align: center;
        overflow: hidden;
        transform: scale(0, 1);
        transition: all 0.25s ease-in-out;
    }

    .cid-sEL0io5yOc .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-sEL0io5yOc .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-sEL0io5yOc .dropdown-item:hover,
        .cid-sEL0io5yOc .dropdown-item:focus {
            background: #6592e6 !important;
            color: white !important;
        }

        .cid-sEL0io5yOc .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-sEL0io5yOc .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-sEL0io5yOc .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-sEL0io5yOc .nav-link {
        position: relative;
    }

    .cid-sEL0io5yOc .container {
        display: flex;
        margin: auto;
    }

    .cid-sEL0io5yOc .iconfont-wrapper {
        color: #000000 !important;
        font-size: 1.5rem;
        padding-right: 0.5rem;
    }

    .cid-sEL0io5yOc .dropdown-menu,
    .cid-sEL0io5yOc .navbar.opened {
        background: #ffffff !important;
    }

    .cid-sEL0io5yOc .nav-item:focus,
    .cid-sEL0io5yOc .nav-link:focus {
        outline: none;
    }

    .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        transition: all 0.25s ease-in-out;
    }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
            margin-right: 0.5rem;
            vertical-align: sub;
        }

            .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
                display: inline-block;
                transform: scale(1, 1);
                transition: all 0.25s ease-in-out;
            }

    .cid-sEL0io5yOc .collapsed .dropdown-menu .dropdown-item:before {
        display: none;
    }

    .cid-sEL0io5yOc .collapsed .dropdown .dropdown-menu .dropdown-item {
        padding: 0.235em 1.5em 0.235em 1.5em !important;
        transition: none;
        margin: 0 !important;
    }

    .cid-sEL0io5yOc .navbar {
        min-height: 70px;
        transition: all 0.3s;
        border-bottom: 1px solid transparent;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        background: #ffffff;
    }

        .cid-sEL0io5yOc .navbar.opened {
            transition: all 0.3s;
        }

        .cid-sEL0io5yOc .navbar .dropdown-item {
            padding: 0.5rem 1.8rem;
        }

        .cid-sEL0io5yOc .navbar .navbar-logo img {
            width: auto;
        }

        .cid-sEL0io5yOc .navbar .navbar-collapse {
            justify-content: flex-end;
            z-index: 1;
        }

        .cid-sEL0io5yOc .navbar.collapsed {
            justify-content: center;
        }

            .cid-sEL0io5yOc .navbar.collapsed .nav-item .nav-link::before {
                display: none;
            }

            .cid-sEL0io5yOc .navbar.collapsed.opened .dropdown-menu {
                top: 0;
            }

@media (min-width: 992px) {
    .cid-sEL0io5yOc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-sEL0io5yOc .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-sEL0io5yOc .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-sEL0io5yOc .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-sEL0io5yOc .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }

    .cid-sEL0io5yOc .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-sEL0io5yOc .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-sEL0io5yOc .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-sEL0io5yOc .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-sEL0io5yOc .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-sEL0io5yOc .navbar.navbar-short {
    min-height: 60px;
}

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-sEL0io5yOc .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

    .cid-sEL0io5yOc .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-sEL0io5yOc .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-sEL0io5yOc .dropdown-item.active,
.cid-sEL0io5yOc .dropdown-item:active {
    background-color: transparent;
}

.cid-sEL0io5yOc .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-sEL0io5yOc .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-sEL0io5yOc ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-sEL0io5yOc .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-sEL0io5yOc button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-sEL0io5yOc button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #000000;
    }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-sEL0io5yOc a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-sEL0io5yOc .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-sEL0io5yOc .navbar {
        height: 70px;
    }

        .cid-sEL0io5yOc .navbar.opened {
            height: auto;
        }

    .cid-sEL0io5yOc .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-sEL161Ajc8 {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url('../../images/partners-banner-1920x1238.webp');
}

    .cid-sEL161Ajc8 .mbr-overlay {
        background-color: #353535;
        opacity: 0.5;
    }

    .cid-sEL161Ajc8 .content-wrap {
        padding: 5rem 1rem;
    }

@media (min-width: 768px) {
    .cid-sEL161Ajc8 {
        align-items: flex-end;
    }

        .cid-sEL161Ajc8 .row {
            justify-content: flex-start;
        }

        .cid-sEL161Ajc8 .content-wrap {
            width: 51%;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sEL161Ajc8 .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .cid-sEL161Ajc8 {
        -webkit-align-items: center;
        align-items: center;
    }

        .cid-sEL161Ajc8 .mbr-row {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .cid-sEL161Ajc8 .content-wrap {
            width: 100%;
        }
}

.cid-sEL161Ajc8 .mbr-section-title {
    color: #4479d9;
}

.cid-sEL161Ajc8 .mbr-text,
.cid-sEL161Ajc8 .mbr-section-btn {
    color: #4479d9;
}

.cid-sEL2eowr8X {
    padding-top: 5rem;
    padding-bottom: 2rem;
    background-color: #dfe5f0;
}

    .cid-sEL2eowr8X .mbr-section-title {
        color: #353535;
    }

.cid-sEL3aTOFNg {
    padding-top: 6rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-sEL3aTOFNg .item {
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
    }

    .cid-sEL3aTOFNg .icon-box {
        background: #6592e6;
        width: 60px;
        min-width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-right: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cid-sEL3aTOFNg .mbr-iconfont {
        font-size: 2rem;
        color: #ffffff;
    }

@media (max-width: 991px) {
    .cid-sEL3aTOFNg .card {
        margin-bottom: 2rem;
    }

    .cid-sEL3aTOFNg .card-wrapper {
        margin-bottom: 2rem;
    }
}

.cid-sEL6tzBmSX {
    padding-top: 3rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

    .cid-sEL6tzBmSX .card-wrapper {
        display: flex;
    }

@media (max-width: 991px) {
    .cid-sEL6tzBmSX .card-wrapper {
        margin-bottom: 2rem;
    }
}

.cid-sEL6tzBmSX .mbr-iconfont {
    font-size: 2rem;
    color: #6592e6;
    padding-right: 1.5rem;
}

.cid-sELOPJP1dm {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-sELOPJP1dm .mbr-overlay {
        z-index: 1;
    }

@media (min-width: 992px) {
    .cid-sELOPJP1dm .carousel {
        min-height: 500px;
    }

        .cid-sELOPJP1dm .carousel img {
            max-height: 500px;
            object-fit: contain;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sELOPJP1dm .carousel {
        min-height: 325px;
    }

        .cid-sELOPJP1dm .carousel img {
            max-height: 325px;
            object-fit: contain;
        }
}

@media (max-width: 767px) {
    .cid-sELOPJP1dm .carousel {
        min-height: 275px;
    }

        .cid-sELOPJP1dm .carousel img {
            max-height: 275px;
            object-fit: contain;
        }

    .cid-sELOPJP1dm .container .carousel-control {
        margin-bottom: 0;
    }

    .cid-sELOPJP1dm .content-slider-wrap {
        width: 100% !important;
    }
}

.cid-sELOPJP1dm .carousel,
.cid-sELOPJP1dm .carousel-inner {
    display: flex;
    align-items: center;
}

.cid-sELOPJP1dm .item-wrapper {
    width: 100%;
}

.cid-sELOPJP1dm .carousel-caption {
    bottom: 40px;
}

.cid-sELOPJP1dm .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

.cid-sELOPJP1dm .mobi-mbri-arrow-next {
    margin-left: 5px;
}

.cid-sELOPJP1dm .mobi-mbri-arrow-prev {
    margin-right: 5px;
}

.cid-sELOPJP1dm .container .carousel-indicators {
    margin-bottom: 3px;
}

.cid-sELOPJP1dm .carousel-control {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

    .cid-sELOPJP1dm .carousel-control.carousel-control-prev {
        left: 0;
        margin-left: 2.5rem;
    }

    .cid-sELOPJP1dm .carousel-control.carousel-control-next {
        right: 0;
        margin-right: 2.5rem;
    }

@media (max-width: 767px) {
    .cid-sELOPJP1dm .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.cid-sELOPJP1dm .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 1.5rem !important;
}

    .cid-sELOPJP1dm .carousel-indicators li {
        max-width: 15px;
        height: 15px;
        width: 15px;
        max-height: 15px;
        margin: 3px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 2px solid #fff;
        border-radius: 50%;
        opacity: 0.5;
        transition: all 0.3s;
    }

        .cid-sELOPJP1dm .carousel-indicators li.active,
        .cid-sELOPJP1dm .carousel-indicators li:hover {
            opacity: 0.9;
        }

        .cid-sELOPJP1dm .carousel-indicators li::after,
        .cid-sELOPJP1dm .carousel-indicators li::before {
            content: none;
        }

    .cid-sELOPJP1dm .carousel-indicators.ie-fix {
        left: 50%;
        display: block;
        width: 60%;
        margin-left: -30%;
        text-align: center;
    }

@media (max-width: 768px) {
    .cid-sELOPJP1dm .carousel-indicators {
        display: none !important;
    }
}

.cid-sELPq35pwD {
    padding-top: 0rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}

.cid-sEL7MG4amF {
    padding-top: 3rem;
    padding-bottom: 6rem;
    background-color: #dfe5f0;
}

    .cid-sEL7MG4amF .video-wrapper iframe {
        width: 100%;
    }

    .cid-sEL7MG4amF .mbr-section-title,
    .cid-sEL7MG4amF .mbr-section-subtitle,
    .cid-sEL7MG4amF .mbr-text {
        text-align: center;
    }

.cid-sELbfnvx9C {
    padding-top: 3rem;
    padding-bottom: 0rem;
    background-color: #fafafa;
}

.cid-sELanW6WiB {
    padding-top: 0rem;
    padding-bottom: 5rem;
    background-color: #fafafa;
}

    .cid-sELanW6WiB .line {
        background-color: #6592e6;
        align: center;
        height: 2px;
        margin: 0 auto;
    }

.cid-sEL9xm8lj9 {
    padding-top: 0rem;
    padding-bottom: 5rem;
    background: #fafafa;
}

    .cid-sEL9xm8lj9 .list-group-item {
        background-color: transparent;
        padding: .5rem 3.25rem;
    }

    .cid-sEL9xm8lj9 .plan-body {
        padding-bottom: 2rem;
    }

    .cid-sEL9xm8lj9 .plan-header {
        padding-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cid-sEL9xm8lj9 .price {
        color: #6592e6;
    }

    .cid-sEL9xm8lj9 .plan {
        word-break: break-word;
        background-color: #ffffff;
    }

        .cid-sEL9xm8lj9 .plan .list-group-item {
            position: relative;
            justify-content: center;
            border: 0;
        }

            .cid-sEL9xm8lj9 .plan .list-group-item::after {
                position: absolute;
                bottom: 1px;
                left: 25%;
                width: 50%;
                height: 1px;
                content: "";
                background-color: rgba(0, 0, 0, 0.1);
            }

            .cid-sEL9xm8lj9 .plan .list-group-item:last-child::after {
                display: none;
            }

@media (max-width: 991px) {
    .cid-sEL9xm8lj9 .plan {
        margin-bottom: 2rem;
    }
}

.cid-sELekK7A09 {
    padding-top: 3rem;
    padding-bottom: 4rem;
    background-color: #22a5e5;
}

    .cid-sELekK7A09 .card {
        border-radius: 0;
    }

@media (min-width: 992px) {
    .cid-sELekK7A09 .card {
        border-right: 1px solid white;
    }
}

@media (max-width: 991px) {
    .cid-sELekK7A09 .card {
        border-right: 0px;
        border-bottom: 1px solid white;
    }
}

.cid-sELekK7A09 .wrapper {
    padding: 30px 0;
}

.cid-sELekK7A09 .mbr-section-title {
    color: #fafafa;
}

.cid-sELekK7A09 .mbr-text,
.cid-sELekK7A09 .mbr-section-btn {
    color: #ffffff;
}

.cid-sELd67mzn8 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

    .cid-sELd67mzn8 .card-box {
        z-index: 10;
        position: relative;
    }

@media (min-width: 1500px) {
    .cid-sELd67mzn8 .container {
        max-width: 1400px;
    }
}

.cid-sELd67mzn8 .card {
    margin: auto;
}

.cid-sELd67mzn8 .mbr-iconfont {
    display: block;
    font-size: 5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cid-sELd67mzn8 .card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cid-sELd67mzn8 .row {
    justify-content: center;
}

.cid-sELgwPGtWP {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

    .cid-sELgwPGtWP .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-sELgwPGtWP .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-sELgwPGtWP .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-sELgwPGtWP .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-sELgwPGtWP .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .cid-sELgwPGtWP .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-sELgwPGtWP .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-sELgwPGtWP .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                transition: .2s linear;
            }

                .cid-sELgwPGtWP .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-sELgwPGtWP .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-sELgwPGtWP .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-sELgwPGtWP .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-sEL0io5yOc {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-sEL0io5yOc nav.navbar {
        position: fixed;
    }

    .cid-sEL0io5yOc .dropdown-item:before {
        font-family: Moririse2 !important;
        content: "\e966";
        display: inline-block;
        width: 0;
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        margin-right: 0.5rem;
        line-height: 1;
        font-size: inherit;
        vertical-align: middle;
        text-align: center;
        overflow: hidden;
        transform: scale(0, 1);
        transition: all 0.25s ease-in-out;
    }

    .cid-sEL0io5yOc .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-sEL0io5yOc .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-sEL0io5yOc .dropdown-item:hover,
        .cid-sEL0io5yOc .dropdown-item:focus {
            background: #6592e6 !important;
            color: white !important;
        }

        .cid-sEL0io5yOc .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-sEL0io5yOc .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-sEL0io5yOc .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-sEL0io5yOc .nav-link {
        position: relative;
    }

    .cid-sEL0io5yOc .container {
        display: flex;
        margin: auto;
    }

    .cid-sEL0io5yOc .iconfont-wrapper {
        color: #000000 !important;
        font-size: 1.5rem;
        padding-right: 0.5rem;
    }

    .cid-sEL0io5yOc .dropdown-menu,
    .cid-sEL0io5yOc .navbar.opened {
        background: #ffffff !important;
    }

    .cid-sEL0io5yOc .nav-item:focus,
    .cid-sEL0io5yOc .nav-link:focus {
        outline: none;
    }

    .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        transition: all 0.25s ease-in-out;
    }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
            margin-right: 0.5rem;
            vertical-align: sub;
        }

            .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
                display: inline-block;
                transform: scale(1, 1);
                transition: all 0.25s ease-in-out;
            }

    .cid-sEL0io5yOc .collapsed .dropdown-menu .dropdown-item:before {
        display: none;
    }

    .cid-sEL0io5yOc .collapsed .dropdown .dropdown-menu .dropdown-item {
        padding: 0.235em 1.5em 0.235em 1.5em !important;
        transition: none;
        margin: 0 !important;
    }

    .cid-sEL0io5yOc .navbar {
        min-height: 70px;
        transition: all 0.3s;
        border-bottom: 1px solid transparent;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        background: #ff0f0f;
    }

        .cid-sEL0io5yOc .navbar.opened {
            transition: all 0.3s;
        }

        .cid-sEL0io5yOc .navbar .dropdown-item {
            padding: 0.5rem 1.8rem;
        }

        .cid-sEL0io5yOc .navbar .navbar-logo img {
            width: auto;
        }

        .cid-sEL0io5yOc .navbar .navbar-collapse {
            justify-content: flex-end;
            z-index: 1;
        }

        .cid-sEL0io5yOc .navbar.collapsed {
            justify-content: center;
        }

            .cid-sEL0io5yOc .navbar.collapsed .nav-item .nav-link::before {
                display: none;
            }

            .cid-sEL0io5yOc .navbar.collapsed.opened .dropdown-menu {
                top: 0;
            }

@media (min-width: 992px) {
    .cid-sEL0io5yOc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-sEL0io5yOc .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-sEL0io5yOc .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-sEL0io5yOc .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-sEL0io5yOc .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }

    .cid-sEL0io5yOc .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-sEL0io5yOc .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-sEL0io5yOc .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-sEL0io5yOc .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-sEL0io5yOc .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-sEL0io5yOc .navbar.navbar-short {
    min-height: 60px;
}

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-sEL0io5yOc .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

    .cid-sEL0io5yOc .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-sEL0io5yOc .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-sEL0io5yOc .dropdown-item.active,
.cid-sEL0io5yOc .dropdown-item:active {
    background-color: rebeccapurple;
}

.cid-sEL0io5yOc .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ff0f0f;
}

    .cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-sEL0io5yOc .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-sEL0io5yOc ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-sEL0io5yOc .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-sEL0io5yOc button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-sEL0io5yOc button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #000000;
    }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-sEL0io5yOc a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-sEL0io5yOc .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-sEL0io5yOc .navbar {
        height: 70px;
    }

        .cid-sEL0io5yOc .navbar.opened {
            height: auto;
        }

    .cid-sEL0io5yOc .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-sELivmbK9I {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url('../../images/partners-banner-1920x1238.webp');
}

    .cid-sELivmbK9I .mbr-overlay {
        background-color: #353535;
        opacity: 0.5;
    }

    .cid-sELivmbK9I .content-wrap {
        padding: 5rem 1rem;
    }

@media (min-width: 768px) {
    .cid-sELivmbK9I {
        align-items: flex-end;
    }

        .cid-sELivmbK9I .row {
            justify-content: flex-start;
        }

        .cid-sELivmbK9I .content-wrap {
            width: 51%;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sELivmbK9I .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .cid-sELivmbK9I {
        -webkit-align-items: center;
        align-items: center;
    }

        .cid-sELivmbK9I .mbr-row {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .cid-sELivmbK9I .content-wrap {
            width: 100%;
        }
}

.cid-sELivmbK9I .mbr-section-title {
    color: #4479d9;
}

.cid-sELivmbK9I .mbr-text,
.cid-sELivmbK9I .mbr-section-btn {
    color: #4479d9;
}

.cid-sELiX1cHLK {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

.cid-sELVbP1K1G {
    padding-top: 1rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

    .cid-sELVbP1K1G .mbr-overlay {
        z-index: 1;
    }

@media (min-width: 992px) {
    .cid-sELVbP1K1G .carousel {
        min-height: 500px;
    }

        .cid-sELVbP1K1G .carousel img {
            max-height: 500px;
            object-fit: contain;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sELVbP1K1G .carousel {
        min-height: 325px;
    }

        .cid-sELVbP1K1G .carousel img {
            max-height: 325px;
            object-fit: contain;
        }
}

@media (max-width: 767px) {
    .cid-sELVbP1K1G .carousel {
        min-height: 275px;
    }

        .cid-sELVbP1K1G .carousel img {
            max-height: 275px;
            object-fit: contain;
        }

    .cid-sELVbP1K1G .container .carousel-control {
        margin-bottom: 0;
    }

    .cid-sELVbP1K1G .content-slider-wrap {
        width: 100% !important;
    }
}

.cid-sELVbP1K1G .carousel,
.cid-sELVbP1K1G .carousel-inner {
    display: flex;
    align-items: center;
}

.cid-sELVbP1K1G .item-wrapper {
    width: 100%;
}

.cid-sELVbP1K1G .carousel-caption {
    bottom: 40px;
}

.cid-sELVbP1K1G .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

.cid-sELVbP1K1G .mobi-mbri-arrow-next {
    margin-left: 5px;
}

.cid-sELVbP1K1G .mobi-mbri-arrow-prev {
    margin-right: 5px;
}

.cid-sELVbP1K1G .container .carousel-indicators {
    margin-bottom: 3px;
}

.cid-sELVbP1K1G .carousel-control {
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -1.5rem;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

    .cid-sELVbP1K1G .carousel-control.carousel-control-prev {
        left: 0;
        margin-left: 2.5rem;
    }

    .cid-sELVbP1K1G .carousel-control.carousel-control-next {
        right: 0;
        margin-right: 2.5rem;
    }

@media (max-width: 767px) {
    .cid-sELVbP1K1G .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.cid-sELVbP1K1G .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 1.5rem !important;
}

    .cid-sELVbP1K1G .carousel-indicators li {
        max-width: 15px;
        height: 15px;
        width: 15px;
        max-height: 15px;
        margin: 3px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 2px solid #fff;
        border-radius: 50%;
        opacity: 0.5;
        transition: all 0.3s;
    }

        .cid-sELVbP1K1G .carousel-indicators li.active,
        .cid-sELVbP1K1G .carousel-indicators li:hover {
            opacity: 0.9;
        }

        .cid-sELVbP1K1G .carousel-indicators li::after,
        .cid-sELVbP1K1G .carousel-indicators li::before {
            content: none;
        }

    .cid-sELVbP1K1G .carousel-indicators.ie-fix {
        left: 50%;
        display: block;
        width: 60%;
        margin-left: -30%;
        text-align: center;
    }

@media (max-width: 768px) {
    .cid-sELVbP1K1G .carousel-indicators {
        display: none !important;
    }
}

.cid-sELiDtj2In {
    padding-top: 2rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .cid-sELiDtj2In .image-wrapper {
        margin-bottom: 1rem;
    }
}

.cid-sELiDtj2In img {
    width: 100%;
}

@media (min-width: 992px) {
    .cid-sELiDtj2In .text-wrapper {
        padding: 2rem;
    }
}

.cid-sELj9RAjHQ {
    padding-top: 2rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .cid-sELj9RAjHQ .image-wrapper {
        margin-bottom: 1rem;
    }
}

.cid-sELj9RAjHQ .row {
    flex-direction: row-reverse;
}

.cid-sELj9RAjHQ img {
    width: 100%;
}

@media (min-width: 992px) {
    .cid-sELj9RAjHQ .text-wrapper {
        padding: 2rem;
    }
}

.cid-sELjCRO0nn {
    padding-top: 2rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .cid-sELjCRO0nn .image-wrapper {
        margin-bottom: 1rem;
    }
}

.cid-sELjCRO0nn img {
    width: 100%;
}

@media (min-width: 992px) {
    .cid-sELjCRO0nn .text-wrapper {
        padding: 2rem;
    }
}

.cid-sELjDIsMcK {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .cid-sELjDIsMcK .image-wrapper {
        margin-bottom: 1rem;
    }
}

.cid-sELjDIsMcK .row {
    flex-direction: row-reverse;
}

.cid-sELjDIsMcK img {
    width: 100%;
}

@media (min-width: 992px) {
    .cid-sELjDIsMcK .text-wrapper {
        padding: 2rem;
    }
}

.cid-sELgwPGtWP {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

    .cid-sELgwPGtWP .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-sELgwPGtWP .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-sELgwPGtWP .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-sELgwPGtWP .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-sELgwPGtWP .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .cid-sELgwPGtWP .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-sELgwPGtWP .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-sELgwPGtWP .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                transition: .2s linear;
            }

                .cid-sELgwPGtWP .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-sELgwPGtWP .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-sELgwPGtWP .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-sELgwPGtWP .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-sEL0io5yOc {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-sEL0io5yOc nav.navbar {
        position: fixed;
    }

    .cid-sEL0io5yOc .dropdown-item:before {
        font-family: Moririse2 !important;
        content: "\e966";
        display: inline-block;
        width: 0;
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        margin-right: 0.5rem;
        line-height: 1;
        font-size: inherit;
        vertical-align: middle;
        text-align: center;
        overflow: hidden;
        transform: scale(0, 1);
        transition: all 0.25s ease-in-out;
    }

    .cid-sEL0io5yOc .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-sEL0io5yOc .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-sEL0io5yOc .dropdown-item:hover,
        .cid-sEL0io5yOc .dropdown-item:focus {
            background: #6592e6 !important;
            color: white !important;
        }

        .cid-sEL0io5yOc .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-sEL0io5yOc .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-sEL0io5yOc .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-sEL0io5yOc .nav-link {
        position: relative;
    }

    .cid-sEL0io5yOc .container {
        display: flex;
        margin: auto;
    }

    .cid-sEL0io5yOc .iconfont-wrapper {
        color: #000000 !important;
        font-size: 1.5rem;
        padding-right: 0.5rem;
    }

    .cid-sEL0io5yOc .dropdown-menu,
    .cid-sEL0io5yOc .navbar.opened {
        background: #ff0f0f !important;
    }

    .cid-sEL0io5yOc .nav-item:focus,
    .cid-sEL0io5yOc .nav-link:focus {
        outline: none;
    }

    .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        transition: all 0.25s ease-in-out;
    }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
            margin-right: 0.5rem;
            vertical-align: sub;
        }

            .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
                display: inline-block;
                transform: scale(1, 1);
                transition: all 0.25s ease-in-out;
            }

    .cid-sEL0io5yOc .collapsed .dropdown-menu .dropdown-item:before {
        display: none;
    }

    .cid-sEL0io5yOc .collapsed .dropdown .dropdown-menu .dropdown-item {
        padding: 0.235em 1.5em 0.235em 1.5em !important;
        transition: none;
        margin: 0 !important;
    }

    .cid-sEL0io5yOc .navbar {
        min-height: 70px;
        transition: all 0.3s;
        border-bottom: 1px solid transparent;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        background: #ff0f0f;
    }

        .cid-sEL0io5yOc .navbar.opened {
            transition: all 0.3s;
        }

        .cid-sEL0io5yOc .navbar .dropdown-item {
            padding: 0.5rem 1.8rem;
        }

        .cid-sEL0io5yOc .navbar .navbar-logo img {
            width: auto;
        }

        .cid-sEL0io5yOc .navbar .navbar-collapse {
            justify-content: flex-end;
            z-index: 1;
        }

        .cid-sEL0io5yOc .navbar.collapsed {
            justify-content: center;
        }

            .cid-sEL0io5yOc .navbar.collapsed .nav-item .nav-link::before {
                display: none;
            }

            .cid-sEL0io5yOc .navbar.collapsed.opened .dropdown-menu {
                top: 0;
            }

@media (min-width: 992px) {
    .cid-sEL0io5yOc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-sEL0io5yOc .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-sEL0io5yOc .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-sEL0io5yOc .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-sEL0io5yOc .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }

    .cid-sEL0io5yOc .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-sEL0io5yOc .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-sEL0io5yOc .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-sEL0io5yOc .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-sEL0io5yOc .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-sEL0io5yOc .navbar.navbar-short {
    min-height: 60px;
}

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-sEL0io5yOc .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

    .cid-sEL0io5yOc .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-sEL0io5yOc .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-sEL0io5yOc .dropdown-item.active,
.cid-sEL0io5yOc .dropdown-item:active {
    background-color: indianred;
}

.cid-sEL0io5yOc .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ff0f0f;
}

    .cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-sEL0io5yOc .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-sEL0io5yOc ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-sEL0io5yOc .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-sEL0io5yOc button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-sEL0io5yOc button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #000000;
    }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-sEL0io5yOc a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-sEL0io5yOc .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-sEL0io5yOc .navbar {
        height: 70px;
    }

        .cid-sEL0io5yOc .navbar.opened {
            height: auto;
        }

    .cid-sEL0io5yOc .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-sELiq8BtiE {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url('../../images/partners-banner-1920x1238.webp');
}

    .cid-sELiq8BtiE .mbr-overlay {
        background-color: #353535;
        opacity: 0.5;
    }

    .cid-sELiq8BtiE .content-wrap {
        padding: 5rem 1rem;
    }

@media (min-width: 768px) {
    .cid-sELiq8BtiE {
        align-items: flex-end;
    }

        .cid-sELiq8BtiE .row {
            justify-content: flex-start;
        }

        .cid-sELiq8BtiE .content-wrap {
            width: 51%;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sELiq8BtiE .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .cid-sELiq8BtiE {
        -webkit-align-items: center;
        align-items: center;
    }

        .cid-sELiq8BtiE .mbr-row {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .cid-sELiq8BtiE .content-wrap {
            width: 100%;
        }
}

.cid-sELiq8BtiE .mbr-section-title {
    color: #4479d9;
}

.cid-sELiq8BtiE .mbr-text,
.cid-sELiq8BtiE .mbr-section-btn {
    color: #4479d9;
}

.cid-sELp7chaGs {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

    .cid-sELp7chaGs .mbr-iconfont {
        font-size: 1.4rem !important;
        font-family: 'Moririse2' !important;
        color: #6592e6;
        margin-left: 1rem;
    }

    .cid-sELp7chaGs .panel-group {
        border: none;
    }

    .cid-sELp7chaGs .panel-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .cid-sELp7chaGs .panel-body,
    .cid-sELp7chaGs .card-header {
        padding: 1rem 0;
    }

    .cid-sELp7chaGs .panel-title-edit {
        color: #000000;
    }

    .cid-sELp7chaGs .card .card-header {
        background-color: transparent;
        margin-bottom: 0;
    }

.cid-sELuceAOXq {
    padding-top: 1rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

    .cid-sELuceAOXq blockquote {
        border-color: #6592e6;
        border-radius: 4px;
        background-color: #fafafa;
    }

.cid-sELpLoWHtq {
    padding-top: 5rem;
    padding-bottom: 2rem;
    background-color: #dfe5f0;
}

    .cid-sELpLoWHtq .mbr-overlay {
        background-color: #ffffff;
        opacity: 0.4;
    }

    .cid-sELpLoWHtq form .mbr-section-btn {
        text-align: center;
        width: 100%;
    }

        .cid-sELpLoWHtq form .mbr-section-btn .btn {
            display: inline-flex;
        }

@media (max-width: 991px) {
    .cid-sELpLoWHtq form .mbr-section-btn .btn {
        width: 100%;
    }
}

.cid-sELqxmyh1U {
    padding-top: 1rem;
    padding-bottom: 5rem;
    background: #dfe5f0;
}

@media (max-width: 767px) {
    .cid-sELqxmyh1U .row {
        flex-direction: column-reverse;
    }

        .cid-sELqxmyh1U .row .map-wrapper {
            margin-bottom: 2rem;
        }
}

.cid-sELqxmyh1U .google-map {
    height: 100%;
    position: relative;
}

    .cid-sELqxmyh1U .google-map iframe {
        height: 100%;
        width: 100%;
    }

    .cid-sELqxmyh1U .google-map [data-state-details] {
        color: #6b6763;
        height: 1.5em;
        margin-top: -0.75em;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        position: absolute;
        text-align: center;
        top: 50%;
        width: 100%;
    }

    .cid-sELqxmyh1U .google-map[data-state] {
        background: #e9e5dc;
    }

    .cid-sELqxmyh1U .google-map[data-state="loading"] [data-state-details] {
        display: none;
    }

.cid-sELqxmyh1U .image-wrapper {
    display: flex;
    align-items: center;
}

.cid-sELqxmyh1U .card-wrapper {
    display: flex;
    border-radius: 4px;
    background: #fafafa;
}

    .cid-sELqxmyh1U .card-wrapper:not(:nth-last-child(1)) {
        margin-bottom: 2rem;
    }

@media (max-width: 991px) {
    .cid-sELqxmyh1U .card-wrapper {
        padding: 1rem 2rem;
    }
}

@media (min-width: 992px) {
    .cid-sELqxmyh1U .card-wrapper {
        padding: 2rem 4rem;
    }
}

.cid-sELqxmyh1U .mbr-iconfont {
    font-size: 2rem;
    padding-right: 1.5rem;
    color: #6592e6;
}

.cid-sELgwPGtWP {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

    .cid-sELgwPGtWP .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-sELgwPGtWP .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-sELgwPGtWP .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-sELgwPGtWP .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-sELgwPGtWP .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .cid-sELgwPGtWP .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-sELgwPGtWP .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-sELgwPGtWP .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                transition: .2s linear;
            }

                .cid-sELgwPGtWP .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-sELgwPGtWP .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-sELgwPGtWP .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-sELgwPGtWP .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-sEL0io5yOc {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-sEL0io5yOc nav.navbar {
        position: fixed;
    }

    .cid-sEL0io5yOc .dropdown-item:before {
        font-family: Moririse2 !important;
        content: "\e966";
        display: inline-block;
        width: 0;
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        margin-right: 0.5rem;
        line-height: 1;
        font-size: inherit;
        vertical-align: middle;
        text-align: center;
        overflow: hidden;
        transform: scale(0, 1);
        transition: all 0.25s ease-in-out;
    }

    .cid-sEL0io5yOc .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-sEL0io5yOc .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-sEL0io5yOc .dropdown-item:hover,
        .cid-sEL0io5yOc .dropdown-item:focus {
            background: #6592e6 !important;
            color: white !important;
        }

        .cid-sEL0io5yOc .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-sEL0io5yOc .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-sEL0io5yOc .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-sEL0io5yOc .nav-link {
        position: relative;
    }

    .cid-sEL0io5yOc .container {
        display: flex;
        margin: auto;
    }

    .cid-sEL0io5yOc .iconfont-wrapper {
        color: #000000 !important;
        font-size: 1.5rem;
        padding-right: 0.5rem;
    }

    .cid-sEL0io5yOc .dropdown-menu,
    .cid-sEL0io5yOc .navbar.opened {
        background: #ffffff !important;
    }

    .cid-sEL0io5yOc .nav-item:focus,
    .cid-sEL0io5yOc .nav-link:focus {
        outline: none;
    }

    .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        transition: all 0.25s ease-in-out;
    }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
            margin-right: 0.5rem;
            vertical-align: sub;
        }

            .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
                display: inline-block;
                transform: scale(1, 1);
                transition: all 0.25s ease-in-out;
            }

    .cid-sEL0io5yOc .collapsed .dropdown-menu .dropdown-item:before {
        display: none;
    }

    .cid-sEL0io5yOc .collapsed .dropdown .dropdown-menu .dropdown-item {
        padding: 0.235em 1.5em 0.235em 1.5em !important;
        transition: none;
        margin: 0 !important;
    }

    .cid-sEL0io5yOc .navbar {
        min-height: 70px;
        transition: all 0.3s;
        border-bottom: 1px solid transparent;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        background: #ffffff;
    }

        .cid-sEL0io5yOc .navbar.opened {
            transition: all 0.3s;
        }

        .cid-sEL0io5yOc .navbar .dropdown-item {
            padding: 0.5rem 1.8rem;
        }

        .cid-sEL0io5yOc .navbar .navbar-logo img {
            width: auto;
        }

        .cid-sEL0io5yOc .navbar .navbar-collapse {
            justify-content: flex-end;
            z-index: 1;
        }

        .cid-sEL0io5yOc .navbar.collapsed {
            justify-content: center;
        }

            .cid-sEL0io5yOc .navbar.collapsed .nav-item .nav-link::before {
                display: none;
            }

            .cid-sEL0io5yOc .navbar.collapsed.opened .dropdown-menu {
                top: 0;
            }

@media (min-width: 992px) {
    .cid-sEL0io5yOc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-sEL0io5yOc .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-sEL0io5yOc .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-sEL0io5yOc .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-sEL0io5yOc .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }

    .cid-sEL0io5yOc .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-sEL0io5yOc .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-sEL0io5yOc .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-sEL0io5yOc .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-sEL0io5yOc .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-sEL0io5yOc .navbar.navbar-short {
    min-height: 60px;
}

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-sEL0io5yOc .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

    .cid-sEL0io5yOc .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-sEL0io5yOc .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-sEL0io5yOc .dropdown-item.active,
.cid-sEL0io5yOc .dropdown-item:active {
    background-color: transparent;
}

.cid-sEL0io5yOc .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-sEL0io5yOc .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-sEL0io5yOc ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-sEL0io5yOc .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-sEL0io5yOc button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-sEL0io5yOc button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #000000;
    }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-sEL0io5yOc a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-sEL0io5yOc .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-sEL0io5yOc .navbar {
        height: 70px;
    }

        .cid-sEL0io5yOc .navbar.opened {
            height: auto;
        }

    .cid-sEL0io5yOc .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-sELvBAg6jV {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url('../../images/partners-banner-1920x1238.webp');
}

    .cid-sELvBAg6jV .mbr-overlay {
        background-color: #353535;
        opacity: 0.5;
    }

    .cid-sELvBAg6jV .content-wrap {
        padding: 5rem 1rem;
    }

@media (min-width: 768px) {
    .cid-sELvBAg6jV {
        align-items: flex-end;
    }

        .cid-sELvBAg6jV .row {
            justify-content: flex-start;
        }

        .cid-sELvBAg6jV .content-wrap {
            width: 51%;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sELvBAg6jV .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .cid-sELvBAg6jV {
        -webkit-align-items: center;
        align-items: center;
    }

        .cid-sELvBAg6jV .mbr-row {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .cid-sELvBAg6jV .content-wrap {
            width: 100%;
        }
}

.cid-sELvBAg6jV .mbr-section-title {
    color: #4479d9;
}

.cid-sELvBAg6jV .mbr-text,
.cid-sELvBAg6jV .mbr-section-btn {
    color: #4479d9;
}

.cid-sELJCpPtiq {
    padding-top: 4rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}

.cid-sELMY0clsI {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-sELMY0clsI blockquote {
        border-color: #6592e6;
        border-radius: 4px;
        background-color: #fafafa;
    }

.cid-sELLRLlpM9 {
    padding-top: 0rem;
    padding-bottom: 3rem;
    background-color: #ffffff;
}

.cid-sELKqAWRgv {
    padding-top: 1rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-sELKqAWRgv blockquote {
        border-color: #6592e6;
        border-radius: 4px;
        background-color: #fafafa;
    }

.cid-sELLi7Zcvn {
    padding-top: 0rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}

.cid-sELJycZPPy {
    padding-top: 4rem;
    padding-bottom: 5rem;
    background: #fafafa;
}

    .cid-sELJycZPPy .list-group-item {
        background-color: transparent;
        padding: .5rem 3.25rem;
    }

    .cid-sELJycZPPy .plan-body {
        padding-bottom: 2rem;
    }

    .cid-sELJycZPPy .plan-header {
        padding-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cid-sELJycZPPy .price {
        color: #6592e6;
    }

    .cid-sELJycZPPy .plan {
        word-break: break-word;
        background-color: #ffffff;
    }

        .cid-sELJycZPPy .plan .list-group-item {
            position: relative;
            justify-content: center;
            border: 0;
        }

            .cid-sELJycZPPy .plan .list-group-item::after {
                position: absolute;
                bottom: 1px;
                left: 25%;
                width: 50%;
                height: 1px;
                content: "";
                background-color: rgba(0, 0, 0, 0.1);
            }

            .cid-sELJycZPPy .plan .list-group-item:last-child::after {
                display: none;
            }

@media (max-width: 991px) {
    .cid-sELJycZPPy .plan {
        margin-bottom: 2rem;
    }
}

.cid-sELgwPGtWP {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

    .cid-sELgwPGtWP .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-sELgwPGtWP .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-sELgwPGtWP .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-sELgwPGtWP .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-sELgwPGtWP .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .cid-sELgwPGtWP .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-sELgwPGtWP .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-sELgwPGtWP .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                transition: .2s linear;
            }

                .cid-sELgwPGtWP .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-sELgwPGtWP .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-sELgwPGtWP .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-sELgwPGtWP .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-sEL0io5yOc {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-sEL0io5yOc nav.navbar {
        position: fixed;
    }

    .cid-sEL0io5yOc .dropdown-item:before {
        font-family: Moririse2 !important;
        content: "\e966";
        display: inline-block;
        width: 0;
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        margin-right: 0.5rem;
        line-height: 1;
        font-size: inherit;
        vertical-align: middle;
        text-align: center;
        overflow: hidden;
        transform: scale(0, 1);
        transition: all 0.25s ease-in-out;
    }

    .cid-sEL0io5yOc .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-sEL0io5yOc .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-sEL0io5yOc .dropdown-item:hover,
        .cid-sEL0io5yOc .dropdown-item:focus {
            background: #6592e6 !important;
            color: white !important;
        }

        .cid-sEL0io5yOc .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-sEL0io5yOc .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-sEL0io5yOc .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-sEL0io5yOc .nav-link {
        position: relative;
    }

    .cid-sEL0io5yOc .container {
        display: flex;
        margin: auto;
    }

    .cid-sEL0io5yOc .iconfont-wrapper {
        color: #000000 !important;
        font-size: 1.5rem;
        padding-right: 0.5rem;
    }

    .cid-sEL0io5yOc .dropdown-menu,
    .cid-sEL0io5yOc .navbar.opened {
        background: #ffffff !important;
    }

    .cid-sEL0io5yOc .nav-item:focus,
    .cid-sEL0io5yOc .nav-link:focus {
        outline: none;
    }

    .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        transition: all 0.25s ease-in-out;
    }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
            margin-right: 0.5rem;
            vertical-align: sub;
        }

            .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
                display: inline-block;
                transform: scale(1, 1);
                transition: all 0.25s ease-in-out;
            }

    .cid-sEL0io5yOc .collapsed .dropdown-menu .dropdown-item:before {
        display: none;
    }

    .cid-sEL0io5yOc .collapsed .dropdown .dropdown-menu .dropdown-item {
        padding: 0.235em 1.5em 0.235em 1.5em !important;
        transition: none;
        margin: 0 !important;
    }

    .cid-sEL0io5yOc .navbar {
        min-height: 70px;
        transition: all 0.3s;
        border-bottom: 1px solid transparent;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        background: #ffffff;
    }

        .cid-sEL0io5yOc .navbar.opened {
            transition: all 0.3s;
        }

        .cid-sEL0io5yOc .navbar .dropdown-item {
            padding: 0.5rem 1.8rem;
        }

        .cid-sEL0io5yOc .navbar .navbar-logo img {
            width: auto;
        }

        .cid-sEL0io5yOc .navbar .navbar-collapse {
            justify-content: flex-end;
            z-index: 1;
        }

        .cid-sEL0io5yOc .navbar.collapsed {
            justify-content: center;
        }

            .cid-sEL0io5yOc .navbar.collapsed .nav-item .nav-link::before {
                display: none;
            }

            .cid-sEL0io5yOc .navbar.collapsed.opened .dropdown-menu {
                top: 0;
            }

@media (min-width: 992px) {
    .cid-sEL0io5yOc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-sEL0io5yOc .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-sEL0io5yOc .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-sEL0io5yOc .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-sEL0io5yOc .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }

    .cid-sEL0io5yOc .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-sEL0io5yOc .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-sEL0io5yOc .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-sEL0io5yOc .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-sEL0io5yOc .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-sEL0io5yOc .navbar.navbar-short {
    min-height: 60px;
}

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-sEL0io5yOc .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

    .cid-sEL0io5yOc .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-sEL0io5yOc .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-sEL0io5yOc .dropdown-item.active,
.cid-sEL0io5yOc .dropdown-item:active {
    background-color: transparent;
}

.cid-sEL0io5yOc .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-sEL0io5yOc .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-sEL0io5yOc ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-sEL0io5yOc .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-sEL0io5yOc button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-sEL0io5yOc button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #000000;
    }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-sEL0io5yOc a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-sEL0io5yOc .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-sEL0io5yOc .navbar {
        height: 70px;
    }

        .cid-sEL0io5yOc .navbar.opened {
            height: auto;
        }

    .cid-sEL0io5yOc .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-sELvuJnUiH {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url('../../images/partners-banner-1920x1238.webp');
}

    .cid-sELvuJnUiH .mbr-overlay {
        background-color: #353535;
        opacity: 0.5;
    }

    .cid-sELvuJnUiH .content-wrap {
        padding: 5rem 1rem;
    }

@media (min-width: 768px) {
    .cid-sELvuJnUiH {
        align-items: flex-end;
    }

        .cid-sELvuJnUiH .row {
            justify-content: flex-start;
        }

        .cid-sELvuJnUiH .content-wrap {
            width: 51%;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sELvuJnUiH .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .cid-sELvuJnUiH {
        -webkit-align-items: center;
        align-items: center;
    }

        .cid-sELvuJnUiH .mbr-row {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .cid-sELvuJnUiH .content-wrap {
            width: 100%;
        }
}

.cid-sELvuJnUiH .mbr-section-title {
    color: #4479d9;
}

.cid-sELvuJnUiH .mbr-text,
.cid-sELvuJnUiH .mbr-section-btn {
    color: #4479d9;
}

.cid-sELGkkH8z3 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.cid-sELgwPGtWP {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

    .cid-sELgwPGtWP .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-sELgwPGtWP .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-sELgwPGtWP .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-sELgwPGtWP .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-sELgwPGtWP .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .cid-sELgwPGtWP .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-sELgwPGtWP .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-sELgwPGtWP .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                transition: .2s linear;
            }

                .cid-sELgwPGtWP .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-sELgwPGtWP .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-sELgwPGtWP .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-sELgwPGtWP .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-sEL0io5yOc {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-sEL0io5yOc nav.navbar {
        position: fixed;
    }

    .cid-sEL0io5yOc .dropdown-item:before {
        font-family: Moririse2 !important;
        content: "\e966";
        display: inline-block;
        width: 0;
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        margin-right: 0.5rem;
        line-height: 1;
        font-size: inherit;
        vertical-align: middle;
        text-align: center;
        overflow: hidden;
        transform: scale(0, 1);
        transition: all 0.25s ease-in-out;
    }

    .cid-sEL0io5yOc .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-sEL0io5yOc .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-sEL0io5yOc .dropdown-item:hover,
        .cid-sEL0io5yOc .dropdown-item:focus {
            background: #6592e6 !important;
            color: white !important;
        }

        .cid-sEL0io5yOc .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-sEL0io5yOc .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-sEL0io5yOc .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-sEL0io5yOc .nav-link {
        position: relative;
    }

    .cid-sEL0io5yOc .container {
        display: flex;
        margin: auto;
    }

    .cid-sEL0io5yOc .iconfont-wrapper {
        color: #000000 !important;
        font-size: 1.5rem;
        padding-right: 0.5rem;
    }

    .cid-sEL0io5yOc .dropdown-menu,
    .cid-sEL0io5yOc .navbar.opened {
        background: #ffffff !important;
    }

    .cid-sEL0io5yOc .nav-item:focus,
    .cid-sEL0io5yOc .nav-link:focus {
        outline: none;
    }

    .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        transition: all 0.25s ease-in-out;
    }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
            margin-right: 0.5rem;
            vertical-align: sub;
        }

            .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
                display: inline-block;
                transform: scale(1, 1);
                transition: all 0.25s ease-in-out;
            }

    .cid-sEL0io5yOc .collapsed .dropdown-menu .dropdown-item:before {
        display: none;
    }

    .cid-sEL0io5yOc .collapsed .dropdown .dropdown-menu .dropdown-item {
        padding: 0.235em 1.5em 0.235em 1.5em !important;
        transition: none;
        margin: 0 !important;
    }

    .cid-sEL0io5yOc .navbar {
        min-height: 70px;
        transition: all 0.3s;
        border-bottom: 1px solid transparent;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        background: #ffffff;
    }

        .cid-sEL0io5yOc .navbar.opened {
            transition: all 0.3s;
        }

        .cid-sEL0io5yOc .navbar .dropdown-item {
            padding: 0.5rem 1.8rem;
        }

        .cid-sEL0io5yOc .navbar .navbar-logo img {
            width: auto;
        }

        .cid-sEL0io5yOc .navbar .navbar-collapse {
            justify-content: flex-end;
            z-index: 1;
        }

        .cid-sEL0io5yOc .navbar.collapsed {
            justify-content: center;
        }

            .cid-sEL0io5yOc .navbar.collapsed .nav-item .nav-link::before {
                display: none;
            }

            .cid-sEL0io5yOc .navbar.collapsed.opened .dropdown-menu {
                top: 0;
            }

@media (min-width: 992px) {
    .cid-sEL0io5yOc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-sEL0io5yOc .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-sEL0io5yOc .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-sEL0io5yOc .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-sEL0io5yOc .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }

    .cid-sEL0io5yOc .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-sEL0io5yOc .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-sEL0io5yOc .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-sEL0io5yOc .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-sEL0io5yOc .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-sEL0io5yOc .navbar.navbar-short {
    min-height: 60px;
}

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-sEL0io5yOc .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

    .cid-sEL0io5yOc .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-sEL0io5yOc .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-sEL0io5yOc .dropdown-item.active,
.cid-sEL0io5yOc .dropdown-item:active {
    background-color: transparent;
}

.cid-sEL0io5yOc .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-sEL0io5yOc .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-sEL0io5yOc ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-sEL0io5yOc .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-sEL0io5yOc button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-sEL0io5yOc button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #000000;
    }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-sEL0io5yOc a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-sEL0io5yOc .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-sEL0io5yOc .navbar {
        height: 70px;
    }

        .cid-sEL0io5yOc .navbar.opened {
            height: auto;
        }

    .cid-sEL0io5yOc .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-sELvpEXyyE {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url('../../images/partners-banner-1920x1238.webp');
}

    .cid-sELvpEXyyE .mbr-overlay {
        background-color: #353535;
        opacity: 0.5;
    }

    .cid-sELvpEXyyE .content-wrap {
        padding: 5rem 1rem;
    }

@media (min-width: 768px) {
    .cid-sELvpEXyyE {
        align-items: flex-end;
    }

        .cid-sELvpEXyyE .row {
            justify-content: flex-start;
        }

        .cid-sELvpEXyyE .content-wrap {
            width: 51%;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sELvpEXyyE .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .cid-sELvpEXyyE {
        -webkit-align-items: center;
        align-items: center;
    }

        .cid-sELvpEXyyE .mbr-row {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .cid-sELvpEXyyE .content-wrap {
            width: 100%;
        }
}

.cid-sELvpEXyyE .mbr-section-title {
    color: #4479d9;
}

.cid-sELvpEXyyE .mbr-text,
.cid-sELvpEXyyE .mbr-section-btn {
    color: #4479d9;
}

.cid-sELIhphi69 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.cid-sELgwPGtWP {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

    .cid-sELgwPGtWP .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-sELgwPGtWP .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-sELgwPGtWP .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-sELgwPGtWP .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-sELgwPGtWP .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .cid-sELgwPGtWP .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-sELgwPGtWP .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-sELgwPGtWP .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                transition: .2s linear;
            }

                .cid-sELgwPGtWP .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-sELgwPGtWP .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-sELgwPGtWP .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-sELgwPGtWP .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-sEL0io5yOc {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-sEL0io5yOc nav.navbar {
        position: fixed;
    }

    .cid-sEL0io5yOc .dropdown-item:before {
        font-family: Moririse2 !important;
        content: "\e966";
        display: inline-block;
        width: 0;
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        margin-right: 0.5rem;
        line-height: 1;
        font-size: inherit;
        vertical-align: middle;
        text-align: center;
        overflow: hidden;
        transform: scale(0, 1);
        transition: all 0.25s ease-in-out;
    }

    .cid-sEL0io5yOc .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-sEL0io5yOc .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-sEL0io5yOc .dropdown-item:hover,
        .cid-sEL0io5yOc .dropdown-item:focus {
            background: #6592e6 !important;
            color: white !important;
        }

        .cid-sEL0io5yOc .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-sEL0io5yOc .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-sEL0io5yOc .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-sEL0io5yOc .nav-link {
        position: relative;
    }

    .cid-sEL0io5yOc .container {
        display: flex;
        margin: auto;
    }

    .cid-sEL0io5yOc .iconfont-wrapper {
        color: #000000 !important;
        font-size: 1.5rem;
        padding-right: 0.5rem;
    }

    .cid-sEL0io5yOc .dropdown-menu,
    .cid-sEL0io5yOc .navbar.opened {
        background: #ffffff !important;
    }

    .cid-sEL0io5yOc .nav-item:focus,
    .cid-sEL0io5yOc .nav-link:focus {
        outline: none;
    }

    .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        transition: all 0.25s ease-in-out;
    }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
            margin-right: 0.5rem;
            vertical-align: sub;
        }

            .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
                display: inline-block;
                transform: scale(1, 1);
                transition: all 0.25s ease-in-out;
            }

    .cid-sEL0io5yOc .collapsed .dropdown-menu .dropdown-item:before {
        display: none;
    }

    .cid-sEL0io5yOc .collapsed .dropdown .dropdown-menu .dropdown-item {
        padding: 0.235em 1.5em 0.235em 1.5em !important;
        transition: none;
        margin: 0 !important;
    }

    .cid-sEL0io5yOc .navbar {
        min-height: 70px;
        transition: all 0.3s;
        border-bottom: 1px solid transparent;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        background: #ffffff;
    }

        .cid-sEL0io5yOc .navbar.opened {
            transition: all 0.3s;
        }

        .cid-sEL0io5yOc .navbar .dropdown-item {
            padding: 0.5rem 1.8rem;
        }

        .cid-sEL0io5yOc .navbar .navbar-logo img {
            width: auto;
        }

        .cid-sEL0io5yOc .navbar .navbar-collapse {
            justify-content: flex-end;
            z-index: 1;
        }

        .cid-sEL0io5yOc .navbar.collapsed {
            justify-content: center;
        }

            .cid-sEL0io5yOc .navbar.collapsed .nav-item .nav-link::before {
                display: none;
            }

            .cid-sEL0io5yOc .navbar.collapsed.opened .dropdown-menu {
                top: 0;
            }

@media (min-width: 992px) {
    .cid-sEL0io5yOc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-sEL0io5yOc .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-sEL0io5yOc .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-sEL0io5yOc .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-sEL0io5yOc .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }

    .cid-sEL0io5yOc .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-sEL0io5yOc .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-sEL0io5yOc .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-sEL0io5yOc .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-sEL0io5yOc .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-sEL0io5yOc .navbar.navbar-short {
    min-height: 60px;
}

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-sEL0io5yOc .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

    .cid-sEL0io5yOc .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-sEL0io5yOc .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-sEL0io5yOc .dropdown-item.active,
.cid-sEL0io5yOc .dropdown-item:active {
    background-color: transparent;
}

.cid-sEL0io5yOc .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-sEL0io5yOc .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-sEL0io5yOc ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-sEL0io5yOc .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-sEL0io5yOc button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-sEL0io5yOc button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #000000;
    }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-sEL0io5yOc a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-sEL0io5yOc .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-sEL0io5yOc .navbar {
        height: 70px;
    }

        .cid-sEL0io5yOc .navbar.opened {
            height: auto;
        }

    .cid-sEL0io5yOc .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-sELvgTmyZm {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url('../../images/partners-banner-1920x1238.webp');
}

    .cid-sELvgTmyZm .mbr-overlay {
        background-color: #353535;
        opacity: 0.5;
    }

    .cid-sELvgTmyZm .content-wrap {
        padding: 5rem 1rem;
    }

@media (min-width: 768px) {
    .cid-sELvgTmyZm {
        align-items: flex-end;
    }

        .cid-sELvgTmyZm .row {
            justify-content: flex-start;
        }

        .cid-sELvgTmyZm .content-wrap {
            width: 51%;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sELvgTmyZm .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .cid-sELvgTmyZm {
        -webkit-align-items: center;
        align-items: center;
    }

        .cid-sELvgTmyZm .mbr-row {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .cid-sELvgTmyZm .content-wrap {
            width: 100%;
        }
}

.cid-sELvgTmyZm .mbr-section-title {
    color: #4479d9;
}

.cid-sELvgTmyZm .mbr-text,
.cid-sELvgTmyZm .mbr-section-btn {
    color: #4479d9;
}

.cid-sELgwPGtWP {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

    .cid-sELgwPGtWP .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-sELgwPGtWP .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-sELgwPGtWP .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-sELgwPGtWP .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-sELgwPGtWP .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .cid-sELgwPGtWP .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-sELgwPGtWP .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-sELgwPGtWP .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                transition: .2s linear;
            }

                .cid-sELgwPGtWP .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-sELgwPGtWP .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-sELgwPGtWP .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-sELgwPGtWP .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-sEL0io5yOc {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-sEL0io5yOc nav.navbar {
        position: fixed;
    }

    .cid-sEL0io5yOc .dropdown-item:before {
        font-family: Moririse2 !important;
        content: "\e966";
        display: inline-block;
        width: 0;
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        margin-right: 0.5rem;
        line-height: 1;
        font-size: inherit;
        vertical-align: middle;
        text-align: center;
        overflow: hidden;
        transform: scale(0, 1);
        transition: all 0.25s ease-in-out;
    }

    .cid-sEL0io5yOc .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-sEL0io5yOc .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-sEL0io5yOc .dropdown-item:hover,
        .cid-sEL0io5yOc .dropdown-item:focus {
            background: #6592e6 !important;
            color: white !important;
        }

        .cid-sEL0io5yOc .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-sEL0io5yOc .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-sEL0io5yOc .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-sEL0io5yOc .nav-link {
        position: relative;
    }

    .cid-sEL0io5yOc .container {
        display: flex;
        margin: auto;
    }

    .cid-sEL0io5yOc .iconfont-wrapper {
        color: #000000 !important;
        font-size: 1.5rem;
        padding-right: 0.5rem;
    }

    .cid-sEL0io5yOc .dropdown-menu,
    .cid-sEL0io5yOc .navbar.opened {
        background: #ffffff !important;
    }

    .cid-sEL0io5yOc .nav-item:focus,
    .cid-sEL0io5yOc .nav-link:focus {
        outline: none;
    }

    .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        transition: all 0.25s ease-in-out;
    }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
            margin-right: 0.5rem;
            vertical-align: sub;
        }

            .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
                display: inline-block;
                transform: scale(1, 1);
                transition: all 0.25s ease-in-out;
            }

    .cid-sEL0io5yOc .collapsed .dropdown-menu .dropdown-item:before {
        display: none;
    }

    .cid-sEL0io5yOc .collapsed .dropdown .dropdown-menu .dropdown-item {
        padding: 0.235em 1.5em 0.235em 1.5em !important;
        transition: none;
        margin: 0 !important;
    }

    .cid-sEL0io5yOc .navbar {
        min-height: 70px;
        transition: all 0.3s;
        border-bottom: 1px solid transparent;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        background: #ffffff;
    }

        .cid-sEL0io5yOc .navbar.opened {
            transition: all 0.3s;
        }

        .cid-sEL0io5yOc .navbar .dropdown-item {
            padding: 0.5rem 1.8rem;
        }

        .cid-sEL0io5yOc .navbar .navbar-logo img {
            width: auto;
        }

        .cid-sEL0io5yOc .navbar .navbar-collapse {
            justify-content: flex-end;
            z-index: 1;
        }

        .cid-sEL0io5yOc .navbar.collapsed {
            justify-content: center;
        }

            .cid-sEL0io5yOc .navbar.collapsed .nav-item .nav-link::before {
                display: none;
            }

            .cid-sEL0io5yOc .navbar.collapsed.opened .dropdown-menu {
                top: 0;
            }

@media (min-width: 992px) {
    .cid-sEL0io5yOc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-sEL0io5yOc .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-sEL0io5yOc .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-sEL0io5yOc .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-sEL0io5yOc .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }

    .cid-sEL0io5yOc .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-sEL0io5yOc .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-sEL0io5yOc .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-sEL0io5yOc .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-sEL0io5yOc .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-sEL0io5yOc .navbar.navbar-short {
    min-height: 60px;
}

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-sEL0io5yOc .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

    .cid-sEL0io5yOc .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-sEL0io5yOc .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-sEL0io5yOc .dropdown-item.active,
.cid-sEL0io5yOc .dropdown-item:active {
    background-color: transparent;
}

.cid-sEL0io5yOc .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-sEL0io5yOc .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-sEL0io5yOc ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-sEL0io5yOc .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-sEL0io5yOc button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-sEL0io5yOc button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #000000;
    }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-sEL0io5yOc a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-sEL0io5yOc .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-sEL0io5yOc .navbar {
        height: 70px;
    }

        .cid-sEL0io5yOc .navbar.opened {
            height: auto;
        }

    .cid-sEL0io5yOc .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-sELvce6vrw {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url('../../images/partners-banner-1920x1238.webp');
}

    .cid-sELvce6vrw .mbr-overlay {
        background-color: #353535;
        opacity: 0.5;
    }

    .cid-sELvce6vrw .content-wrap {
        padding: 5rem 1rem;
    }

@media (min-width: 768px) {
    .cid-sELvce6vrw {
        align-items: flex-end;
    }

        .cid-sELvce6vrw .row {
            justify-content: flex-start;
        }

        .cid-sELvce6vrw .content-wrap {
            width: 51%;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sELvce6vrw .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .cid-sELvce6vrw {
        -webkit-align-items: center;
        align-items: center;
    }

        .cid-sELvce6vrw .mbr-row {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .cid-sELvce6vrw .content-wrap {
            width: 100%;
        }
}

.cid-sELvce6vrw .mbr-section-title {
    color: #4479d9;
}

.cid-sELvce6vrw .mbr-text,
.cid-sELvce6vrw .mbr-section-btn {
    color: #4479d9;
}

.cid-sELvSgKXHT {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.cid-sELgwPGtWP {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

    .cid-sELgwPGtWP .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-sELgwPGtWP .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-sELgwPGtWP .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-sELgwPGtWP .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-sELgwPGtWP .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .cid-sELgwPGtWP .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-sELgwPGtWP .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-sELgwPGtWP .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                transition: .2s linear;
            }

                .cid-sELgwPGtWP .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-sELgwPGtWP .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-sELgwPGtWP .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-sELgwPGtWP .media-container-row .row-copirayt p {
        width: 100%;
    }

.cid-sEL0io5yOc {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-sEL0io5yOc nav.navbar {
        position: fixed;
    }

    .cid-sEL0io5yOc .dropdown-item:before {
        font-family: Moririse2 !important;
        content: "\e966";
        display: inline-block;
        width: 0;
        position: absolute;
        left: 1rem;
        top: 0.5rem;
        margin-right: 0.5rem;
        line-height: 1;
        font-size: inherit;
        vertical-align: middle;
        text-align: center;
        overflow: hidden;
        transform: scale(0, 1);
        transition: all 0.25s ease-in-out;
    }

    .cid-sEL0io5yOc .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-sEL0io5yOc .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-sEL0io5yOc .dropdown-item:hover,
        .cid-sEL0io5yOc .dropdown-item:focus {
            background: #6592e6 !important;
            color: white !important;
        }

        .cid-sEL0io5yOc .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-sEL0io5yOc .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-sEL0io5yOc .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-sEL0io5yOc .nav-link {
        position: relative;
    }

    .cid-sEL0io5yOc .container {
        display: flex;
        margin: auto;
    }

    .cid-sEL0io5yOc .iconfont-wrapper {
        color: #000000 !important;
        font-size: 1.5rem;
        padding-right: 0.5rem;
    }

    .cid-sEL0io5yOc .dropdown-menu,
    .cid-sEL0io5yOc .navbar.opened {
        background: #ffffff !important;
    }

    .cid-sEL0io5yOc .nav-item:focus,
    .cid-sEL0io5yOc .nav-link:focus {
        outline: none;
    }

    .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item {
        width: auto;
        transition: all 0.25s ease-in-out;
    }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item::after {
            right: 0.5rem;
        }

        .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
            margin-right: 0.5rem;
            vertical-align: sub;
        }

            .cid-sEL0io5yOc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
                display: inline-block;
                transform: scale(1, 1);
                transition: all 0.25s ease-in-out;
            }

    .cid-sEL0io5yOc .collapsed .dropdown-menu .dropdown-item:before {
        display: none;
    }

    .cid-sEL0io5yOc .collapsed .dropdown .dropdown-menu .dropdown-item {
        padding: 0.235em 1.5em 0.235em 1.5em !important;
        transition: none;
        margin: 0 !important;
    }

    .cid-sEL0io5yOc .navbar {
        min-height: 70px;
        transition: all 0.3s;
        border-bottom: 1px solid transparent;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        background: #ffffff;
    }

        .cid-sEL0io5yOc .navbar.opened {
            transition: all 0.3s;
        }

        .cid-sEL0io5yOc .navbar .dropdown-item {
            padding: 0.5rem 1.8rem;
        }

        .cid-sEL0io5yOc .navbar .navbar-logo img {
            width: auto;
        }

        .cid-sEL0io5yOc .navbar .navbar-collapse {
            justify-content: flex-end;
            z-index: 1;
        }

        .cid-sEL0io5yOc .navbar.collapsed {
            justify-content: center;
        }

            .cid-sEL0io5yOc .navbar.collapsed .nav-item .nav-link::before {
                display: none;
            }

            .cid-sEL0io5yOc .navbar.collapsed.opened .dropdown-menu {
                top: 0;
            }

@media (min-width: 992px) {
    .cid-sEL0io5yOc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
}

.cid-sEL0io5yOc .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-sEL0io5yOc .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-sEL0io5yOc .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-sEL0io5yOc .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-sEL0io5yOc .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: 0.5rem;
        margin-top: 0.2rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 40%;
    }

    .cid-sEL0io5yOc .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-sEL0io5yOc .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-sEL0io5yOc .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-sEL0io5yOc .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-sEL0io5yOc .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-sEL0io5yOc .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-sEL0io5yOc .navbar.navbar-short {
    min-height: 60px;
}

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-sEL0io5yOc .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-sEL0io5yOc .navbar-brand {
    min-height: 70px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

    .cid-sEL0io5yOc .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-sEL0io5yOc .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-sEL0io5yOc .dropdown-item.active,
.cid-sEL0io5yOc .dropdown-item:active {
    background-color: transparent;
}

.cid-sEL0io5yOc .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-sEL0io5yOc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-sEL0io5yOc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-sEL0io5yOc .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-sEL0io5yOc ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-sEL0io5yOc .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-sEL0io5yOc button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-sEL0io5yOc button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #000000;
    }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-sEL0io5yOc button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-sEL0io5yOc nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-sEL0io5yOc .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-sEL0io5yOc a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-sEL0io5yOc .icons-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.3rem;
    text-align: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-sEL0io5yOc .navbar {
        height: 70px;
    }

        .cid-sEL0io5yOc .navbar.opened {
            height: auto;
        }

    .cid-sEL0io5yOc .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-sGhijKV5ie {
    display: flex;
    padding-top: 90px;
    padding-bottom: 90px;
    background-image: url('../../images/partners-banner-1920x1238.webp');
}

    .cid-sGhijKV5ie .mbr-overlay {
        background-color: #353535;
        opacity: 0.5;
    }

    .cid-sGhijKV5ie .content-wrap {
        padding: 5rem 1rem;
    }

@media (min-width: 768px) {
    .cid-sGhijKV5ie {
        align-items: flex-end;
    }

        .cid-sGhijKV5ie .row {
            justify-content: flex-start;
        }

        .cid-sGhijKV5ie .content-wrap {
            width: 51%;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cid-sGhijKV5ie .content-wrap {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .cid-sGhijKV5ie {
        -webkit-align-items: center;
        align-items: center;
    }

        .cid-sGhijKV5ie .mbr-row {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .cid-sGhijKV5ie .content-wrap {
            width: 100%;
        }
}

.cid-sGhijKV5ie .mbr-section-title {
    color: #4479d9;
}

.cid-sGhijKV5ie .mbr-text,
.cid-sGhijKV5ie .mbr-section-btn {
    color: #4479d9;
}

.cid-sGhlpCGAOA {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-sGhlpCGAOA blockquote {
        border-color: #6592e6;
        border-radius: 4px;
        background-color: #fafafa;
    }

.cid-sGhlrS4zky {
    padding-top: 3rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

.cid-sGhmn3IoUD {
    padding-top: 4rem;
    padding-bottom: 0rem;
    background-color: #dfe5f0;
}

.cid-sGhmkDdk5P {
    padding-top: 1rem;
    padding-bottom: 5rem;
    background-color: #dfe5f0;
}

    .cid-sGhmkDdk5P .mbr-overlay {
        background-color: #ffffff;
        opacity: 0.4;
    }

    .cid-sGhmkDdk5P form.mbr-form {
        border-radius: 10px;
        background-color: #fafafa;
    }

@media (min-width: 992px) {
    .cid-sGhmkDdk5P form.mbr-form {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .cid-sGhmkDdk5P form.mbr-form {
        padding: 1rem;
    }
}

.cid-sGhmkDdk5P form.mbr-form .mbr-section-btn {
    text-align: center;
    margin-bottom: 1.2rem;
}

    .cid-sGhmkDdk5P form.mbr-form .mbr-section-btn .btn {
        width: 100%;
        height: 100%;
    }

.cid-sELgwPGtWP {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #232323;
}

    .cid-sELgwPGtWP .row-links {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .social-row {
        width: 100%;
        justify-content: center;
    }

    .cid-sELgwPGtWP .media-container-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .cid-sELgwPGtWP .media-container-row .foot-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
            margin-bottom: 0;
        }

            .cid-sELgwPGtWP .media-container-row .foot-menu li {
                padding: 0 1rem 1rem 1rem;
            }

                .cid-sELgwPGtWP .media-container-row .foot-menu li p {
                    margin: 0;
                }

        .cid-sELgwPGtWP .media-container-row .social-list {
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

            .cid-sELgwPGtWP .media-container-row .social-list .mbr-iconfont-social {
                font-size: 1.5rem;
                color: #ffffff;
            }

            .cid-sELgwPGtWP .media-container-row .social-list .soc-item {
                margin: 0 .5rem;
            }

            .cid-sELgwPGtWP .media-container-row .social-list a {
                margin: 0;
                opacity: .5;
                transition: .2s linear;
            }

                .cid-sELgwPGtWP .media-container-row .social-list a:hover {
                    opacity: 1;
                }

@media (max-width: 767px) {
    .cid-sELgwPGtWP .media-container-row .social-list {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-sELgwPGtWP .media-container-row .row-copirayt {
    word-break: break-word;
    width: 100%;
}

    .cid-sELgwPGtWP .media-container-row .row-copirayt p {
        width: 100%;
    }

.article_line {
    background-color: #6592e6;
    align: center;
    height: 2px;
    margin: 0 auto;
}

.top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}









.cid-tyKjvkXm3d {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}

    .cid-tyKjvkXm3d .mbr-fallback-image.disabled {
        display: none;
    }

    .cid-tyKjvkXm3d .mbr-fallback-image {
        display: block;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
    }

    .cid-tyKjvkXm3d .mbr-section-title,
    .cid-tyKjvkXm3d .mbr-section-subtitle {
        text-align: center;
    }

    .cid-tyKjvkXm3d .cost {
        word-break: normal;
    }

    .cid-tyKjvkXm3d .card-wrapper {
        margin-bottom: 2rem;
        border-radius: 4px;
        background: #fafafa;
    }

        .cid-tyKjvkXm3d .card-wrapper .top-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

@media (min-width: 768px) {
    .cid-tyKjvkXm3d .card-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-tyKjvkXm3d .card-wrapper {
        padding: 1rem;
    }
}

.cid-tyKjvkXm3d P {
    color: #000000;
}

.cid-tyKjvkXm3d .card-title {
    color: #2299aa;
}

.cid-tyKjvkXm3d .mbr-section-title {
    color: #2299aa;
}








.cid-tWJp9VjsG6 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #6592e6;
}

    .cid-tWJp9VjsG6 .mbr-fallback-image.disabled {
        display: none;
    }

    .cid-tWJp9VjsG6 .mbr-fallback-image {
        display: block;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
    }

    .cid-tWJp9VjsG6 .mbr-text,
    .cid-tWJp9VjsG6 .mbr-section-btn {
        color: #232323;
    }

    .cid-tWJp9VjsG6 .card-title,
    .cid-tWJp9VjsG6 .card-box {
        color: #ffffff;
    }

    .cid-tWJp9VjsG6 .mbr-text,
    .cid-tWJp9VjsG6 .link-wrap {
        color: #ffffff;
    }

.cid-tWJooWq2xJ {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #6592e6;
}

.btn-consent-outline,
.btn-consent-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #65e689;
}

    .btn-consent-outline:hover,
    .btn-consent-outline:focus,
    .btn-consent-outline.focus,
    .btn-consent-outline.active {
        color: #22d253 !important;
        background-color: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .btn-consent-outline.disabled,
    .btn-consent-outline:disabled {
        color: rgba(0, 0, 0, 0.6) !important;
        background-color: #65e689 !important;
        border-color: #65e689 !important;
    }

.btn-consent,
.btn-consent:active {
    background-color: #65e689 !important;
    border-color: #65e689 !important;
    color: rgba(0, 0, 0, 0.6) !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-consent:hover,
    .btn-consent:focus,
    .btn-consent.focus,
    .btn-consent.active {
        color: #ffffff !important;
        background-color: #22d253 !important;
        border-color: #22d253 !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-consent.disabled,
    .btn-consent:disabled {
        color: rgba(0, 0, 0, 0.6) !important;
        background-color: #22d253 !important;
        border-color: #22d253 !important;
    }

.btn-consent-full,
.btn-consent-full:active {
    background-color: #ff6666 !important;
    border-color: #ff6666 !important;
    color: rgba(0, 0, 0, 0.6) !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-consent-full:hover,
    .btn-consent-full:focus,
    .btn-consent-full.focus,
    .btn-consent-full.active {
        color: #FFFFFF !important;
        background-color: #ff0f0f !important;
        border-color: #ff0f0f !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-consent-full.disabled,
    .btn-consent-full:disabled {
        color: rgba(0, 0, 0, 0.6) !important;
        background-color: #ff0f0f !important;
        border-color: #ff0f0f !important;
    }

.btn-consent-full-outline,
.btn-consent-full-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #ff6666;
}

    .btn-consent-full-outline:hover,
    .btn-consent-full-outline:focus,
    .btn-consent-full-outline.focus,
    .btn-consent-full-outline.active {
        color: #ff0f0f !important;
        background-color: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .btn-consent-full-outline.disabled,
    .btn-consent-full-outline:disabled {
        color: rgba(0, 0, 0, 0.6) !important;
        background-color: #ff6666 !important;
        border-color: #ff6666 !important;
    }

.lb-tv:hover,
.lb-tv:focus,
.lb-tv.focus,
.lb-tv.active {
    color: #205ac5 !important;
    font-weight: bold;
}



.login-with-google-btn {
    transition: background-color 0.3s, box-shadow 0.3s;
    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 11px
}

    .login-with-google-btn:hover {
        box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
    }

    .login-with-google-btn:active {
        background-color: #eeeeee;
    }

    .login-with-google-btn:focus {
        outline: none;
        box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25), 0 0 0 3px #c8dafc;
    }

    .login-with-google-btn:disabled {
        filter: grayscale(100%);
        background-color: #ebebeb;
        box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
        cursor: not-allowed;
    }

.display-10 {
    font-family: 'Jost', sans-serif;
}


.btn-validate,
.btn-validate:active {
    background-color: #65e689 !important;
    border-color: #65e689 !important;
    color: #0b411a !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

    .btn-validate:hover,
    .btn-validate:focus,
    .btn-validate.focus,
    .btn-validate.active {
        color: #ffffff !important;
        background-color: #22d253 !important;
        border-color: #22d253 !important;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .btn-validate.disabled,
    .btn-validate:disabled {
        color: #0b411a !important;
        background-color: #22d253 !important;
        border-color: #22d253 !important;
    }

    .btn-validate,
    .btn-validate:active {
        background-color: transparent !important;
        border-color: transparent;
        color: #65e689;
    }

.btn-validate-outline:hover,
.btn-validate-outline:focus,
.btn-validate-outline.focus,
.btn-validate-outline.active {
    color: #22d253 !important;
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.btn-validate-outline.disabled,
.btn-validate-outline:disabled {
    color: #0b411a !important;
    background-color: #65e689 !important;
    border-color: #65e689 !important;
}

