body {
    font-family: Montserrat;
}

.display-1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    line-height: 1.5;
}

    .display-1 > .mbr-iconfont {
        font-size: 5.12rem;
    }

.display-2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    line-height: 1.3;
}

    .display-2 > .mbr-iconfont {
        font-size: 3.84rem;
    }

.display-4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
}

    .display-4 > .mbr-iconfont {
        font-size: 1.44rem;
    }

.display-5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    line-height: 1.3;
}

    .display-5 > .mbr-iconfont {
        font-size: 2.88rem;
    }

.display-7 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 2;
}

    .display-7 > .mbr-iconfont {
        font-size: 1.76rem;
    }
/* ---- 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: 768px) {
    .display-1 {
        font-size: 2.24rem;
        font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 1.92rem;
        font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-4 {
        font-size: 0.81rem !important;
        font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-5 {
        font-size: 1.44rem;
        font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-7 {
        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))));
    }
}
/* Buttons */
.btn {
    padding: 1rem 3rem;
    border-radius: 4px;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-md {
    padding: 1rem 2.6rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 1.2rem 3.2rem;
    border-radius: 8px;
}

.bg-primary {
    background-color: #0086d6 !important;
}

.bg-success {
    background-color: #f7ed4a !important;
}

.bg-info {
    background-color: #333333 !important;
}

.bg-warning {
    background-color: #0086d6 !important;
}

.bg-danger {
    background-color: #78be20 !important;
}

.btn-primary,
.btn-primary:active {
    background-color: #0086d6 !important;
    border-color: #0086d6 !important;
    color: #ffffff !important;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary.focus,
    .btn-primary.active {
        color: #ffffff !important;
        background-color: #00568a !important;
        border-color: #00568a !important;
    }

    .btn-primary.disabled,
    .btn-primary:disabled {
        color: #ffffff !important;
        background-color: #00568a !important;
        border-color: #00568a !important;
    }

    .btn-primary:hover {
        background-color: #0086d6 !important;
        border-color: #0086d6 !important;
    }

.btn-secondary,
.btn-secondary:active {
    background-color: #78be20 !important;
    border-color: #78be20 !important;
    color: #ffffff !important;
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary.focus,
    .btn-secondary.active {
        color: #ffffff !important;
        background-color: #4f7d15 !important;
        border-color: #4f7d15 !important;
    }

    .btn-secondary.disabled,
    .btn-secondary:disabled {
        color: #ffffff !important;
        background-color: #4f7d15 !important;
        border-color: #4f7d15 !important;
    }

    .btn-secondary:hover {
        background-color: #0086d6 !important;
        border-color: #0086d6 !important;
    }

.btn-info,
.btn-info:active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

    .btn-info:hover,
    .btn-info:focus,
    .btn-info.focus,
    .btn-info.active {
        color: #ffffff !important;
        background-color: #0d0d0d !important;
        border-color: #0d0d0d !important;
    }

    .btn-info.disabled,
    .btn-info:disabled {
        color: #ffffff !important;
        background-color: #0d0d0d !important;
        border-color: #0d0d0d !important;
    }

    .btn-info:hover {
        background-color: #0086d6 !important;
        border-color: #0086d6 !important;
    }

.btn-success,
.btn-success:active {
    background-color: #f7ed4a !important;
    border-color: #f7ed4a !important;
    color: #3f3c03 !important;
}

    .btn-success:hover,
    .btn-success:focus,
    .btn-success.focus,
    .btn-success.active {
        color: #3f3c03 !important;
        background-color: #eadd0a !important;
        border-color: #eadd0a !important;
    }

    .btn-success.disabled,
    .btn-success:disabled {
        color: #3f3c03 !important;
        background-color: #eadd0a !important;
        border-color: #eadd0a !important;
    }

    .btn-success:hover {
        background-color: #0086d6 !important;
        border-color: #0086d6 !important;
    }

.btn-warning,
.btn-warning:active {
    background-color: #0086d6 !important;
    border-color: #0086d6 !important;
    color: #ffffff !important;
}

    .btn-warning:hover,
    .btn-warning:focus,
    .btn-warning.focus,
    .btn-warning.active {
        color: #ffffff !important;
        background-color: #00568a !important;
        border-color: #00568a !important;
    }

    .btn-warning.disabled,
    .btn-warning:disabled {
        color: #ffffff !important;
        background-color: #00568a !important;
        border-color: #00568a !important;
    }

    .btn-warning:hover {
        background-color: #0086d6 !important;
        border-color: #0086d6 !important;
    }

.btn-danger,
.btn-danger:active {
    background-color: #78be20 !important;
    border-color: #78be20 !important;
    color: #ffffff !important;
}

    .btn-danger:hover,
    .btn-danger:focus,
    .btn-danger.focus,
    .btn-danger.active {
        color: #ffffff !important;
        background-color: #4f7d15 !important;
        border-color: #4f7d15 !important;
    }

    .btn-danger.disabled,
    .btn-danger:disabled {
        color: #ffffff !important;
        background-color: #4f7d15 !important;
        border-color: #4f7d15 !important;
    }

    .btn-danger:hover {
        background-color: #0086d6 !important;
        border-color: #0086d6 !important;
    }

.btn-white,
.btn-white:active {
    background-color: #f3f3f3 !important;
    border-color: #f3f3f3 !important;
    color: #737373 !important;
}

    .btn-white:hover,
    .btn-white:focus,
    .btn-white.focus,
    .btn-white.active {
        color: #737373 !important;
        background-color: #cdcdcd !important;
        border-color: #cdcdcd !important;
    }

    .btn-white.disabled,
    .btn-white:disabled {
        color: #737373 !important;
        background-color: #cdcdcd !important;
        border-color: #cdcdcd !important;
    }

    .btn-white:hover {
        background-color: #0086d6 !important;
        border-color: #0086d6 !important;
    }

    .btn-white:hover {
        color: white !important;
    }

.btn-black,
.btn-black:active {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

    .btn-black:hover,
    .btn-black:focus,
    .btn-black.focus,
    .btn-black.active {
        color: #ffffff !important;
        background-color: #000000 !important;
        border-color: #000000 !important;
    }

    .btn-black.disabled,
    .btn-black:disabled {
        color: #ffffff !important;
        background-color: #000000 !important;
        border-color: #000000 !important;
    }

    .btn-black:hover {
        background-color: #0086d6 !important;
        border-color: #0086d6 !important;
    }

.btn-primary-outline,
.btn-primary-outline:active {
    background: none;
    border-color: #0086d6;
    color: #0086d6;
}

    .btn-primary-outline:hover,
    .btn-primary-outline:focus,
    .btn-primary-outline.focus,
    .btn-primary-outline.active {
        color: #ffffff;
        background-color: #0086d6;
        border-color: #0086d6;
    }

    .btn-primary-outline.disabled,
    .btn-primary-outline:disabled {
        color: #ffffff !important;
        background-color: #0086d6 !important;
        border-color: #0086d6 !important;
    }

.btn-secondary-outline,
.btn-secondary-outline:active {
    background: none;
    border-color: #78be20;
    color: #78be20;
}

    .btn-secondary-outline:hover,
    .btn-secondary-outline:focus,
    .btn-secondary-outline.focus,
    .btn-secondary-outline.active {
        color: #ffffff;
        background-color: #78be20;
        border-color: #78be20;
    }

    .btn-secondary-outline.disabled,
    .btn-secondary-outline:disabled {
        color: #ffffff !important;
        background-color: #78be20 !important;
        border-color: #78be20 !important;
    }

.btn-info-outline,
.btn-info-outline:active {
    background: none;
    border-color: #333333;
    color: #333333;
}

    .btn-info-outline:hover,
    .btn-info-outline:focus,
    .btn-info-outline.focus,
    .btn-info-outline.active {
        color: #ffffff;
        background-color: #333333;
        border-color: #333333;
    }

    .btn-info-outline.disabled,
    .btn-info-outline:disabled {
        color: #ffffff !important;
        background-color: #333333 !important;
        border-color: #333333 !important;
    }

.btn-success-outline,
.btn-success-outline:active {
    background: none;
    border-color: #f7ed4a;
    color: #f7ed4a;
}

    .btn-success-outline:hover,
    .btn-success-outline:focus,
    .btn-success-outline.focus,
    .btn-success-outline.active {
        color: #3f3c03;
        background-color: #f7ed4a;
        border-color: #f7ed4a;
    }

    .btn-success-outline.disabled,
    .btn-success-outline:disabled {
        color: #3f3c03 !important;
        background-color: #f7ed4a !important;
        border-color: #f7ed4a !important;
    }

.btn-warning-outline,
.btn-warning-outline:active {
    background: none;
    border-color: #0086d6;
    color: #0086d6;
}

    .btn-warning-outline:hover,
    .btn-warning-outline:focus,
    .btn-warning-outline.focus,
    .btn-warning-outline.active {
        color: #ffffff;
        background-color: #0086d6;
        border-color: #0086d6;
    }

    .btn-warning-outline.disabled,
    .btn-warning-outline:disabled {
        color: #ffffff !important;
        background-color: #0086d6 !important;
        border-color: #0086d6 !important;
    }

.btn-danger-outline,
.btn-danger-outline:active {
    background: none;
    border-color: #78be20;
    color: #78be20;
}

    .btn-danger-outline:hover,
    .btn-danger-outline:focus,
    .btn-danger-outline.focus,
    .btn-danger-outline.active {
        color: #ffffff;
        background-color: #78be20;
        border-color: #78be20;
    }

    .btn-danger-outline.disabled,
    .btn-danger-outline:disabled {
        color: #ffffff !important;
        background-color: #78be20 !important;
        border-color: #78be20 !important;
    }

.btn-black-outline,
.btn-black-outline:active {
    background: none;
    border-color: #333333;
    color: #333333;
}

    .btn-black-outline:hover,
    .btn-black-outline:focus,
    .btn-black-outline.focus,
    .btn-black-outline.active {
        color: #ffffff;
        background-color: #333333;
        border-color: #333333;
    }

    .btn-black-outline.disabled,
    .btn-black-outline:disabled {
        color: #ffffff !important;
        background-color: #333333 !important;
        border-color: #333333 !important;
    }

.btn-white-outline,
.btn-white-outline:active {
    background: none;
    border-color: #f3f3f3;
    color: #f3f3f3;
}

    .btn-white-outline:hover,
    .btn-white-outline:focus,
    .btn-white-outline.focus,
    .btn-white-outline.active {
        color: #737373;
        background-color: #f3f3f3;
        border-color: #f3f3f3;
    }

    .btn-white-outline.disabled,
    .btn-white-outline:disabled {
        color: #737373 !important;
        background-color: #f3f3f3 !important;
        border-color: #f3f3f3 !important;
    }

.text-primary {
    color: #0086d6 !important;
}

.text-secondary {
    color: #78be20 !important;
}

.text-success {
    color: #f7ed4a !important;
}

.text-info {
    color: #333333 !important;
}

.text-warning {
    color: #0086d6 !important;
}

.text-danger {
    color: #78be20 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #3db6ff !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #aae460 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #fbf7ac !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #666666 !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #3db6ff !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #aae460 !important;
}

a.text-white:hover,
a.text-white:focus {
    color: #ffffff !important;
}

a.text-black:hover,
a.text-black:focus {
    color: #4d4d4d !important;
}

.alert-success {
    background-color: #70c770;
}

.alert-info {
    background-color: #333333;
}

.alert-warning {
    background-color: #0086d6;
}

.alert-danger {
    background-color: #78be20;
}

.mbr-gallery-filter li.active .btn {
    background-color: #0086d6;
    border-color: #0086d6;
    color: #ffffff;
}

    .mbr-gallery-filter li.active .btn:focus {
        box-shadow: none;
    }

a,
a:hover {
    color: #0086d6;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #a3ddff;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #a6a6a6;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
    color: #a3ddff;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #b5e876;
}
/* Scroll to top button*/
blockquote {
    border-color: #0086d6;
}
/* Forms */
.mbr-form .btn {
    margin: .4rem 0;
}

.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: #0086d6;
    color: #ffffff;
}

.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
    transition: 0.4s;
    border-top-color: gray !important;
    border-bottom-color: gray !important;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
    border-top-color: #0086d6;
    border-bottom-color: #0086d6;
}

.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: #0086d6 !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: #78be20 !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='%230086d6' %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-t2j11OlQ4m {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2j11OlQ4m nav.navbar {
        position: fixed;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2j11OlQ4m .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2j11OlQ4m .dropdown-item:hover,
        .cid-t2j11OlQ4m .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2j11OlQ4m .dropdown-item:hover span {
                color: white;
            }

        .cid-t2j11OlQ4m .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2j11OlQ4m .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2j11OlQ4m .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2j11OlQ4m .nav-link {
        position: relative;
    }

    .cid-t2j11OlQ4m .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .container {
        flex-wrap: nowrap;
    }
}

.cid-t2j11OlQ4m .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2j11OlQ4m .dropdown-menu,
.cid-t2j11OlQ4m .navbar.opened {
    background: #ffffff !important;
}

.cid-t2j11OlQ4m .nav-item:focus,
.cid-t2j11OlQ4m .nav-link:focus {
    outline: none;
}

.cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2j11OlQ4m .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2j11OlQ4m .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2j11OlQ4m .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2j11OlQ4m .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2j11OlQ4m .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2j11OlQ4m .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2j11OlQ4m .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2j11OlQ4m .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2j11OlQ4m .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2j11OlQ4m .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2j11OlQ4m .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2j11OlQ4m .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2j11OlQ4m .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2j11OlQ4m .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2j11OlQ4m .dropdown-item.active,
.cid-t2j11OlQ4m .dropdown-item:active {
    background-color: transparent;
}

.cid-t2j11OlQ4m .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2j11OlQ4m .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2j11OlQ4m ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2j11OlQ4m .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2j11OlQ4m button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2j11OlQ4m button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2j11OlQ4m a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar {
        height: 70px;
    }

        .cid-t2j11OlQ4m .navbar.opened {
            height: auto;
        }

    .cid-t2j11OlQ4m .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-t27kQarOeu .modal-body .close {
    background: #1b1b1b;
}

    .cid-t27kQarOeu .modal-body .close span {
        font-style: normal;
    }

.cid-t27kQarOeu .carousel-inner > .active,
.cid-t27kQarOeu .carousel-inner > .next,
.cid-t27kQarOeu .carousel-inner > .prev {
    display: flex;
}

.cid-t27kQarOeu .carousel-control .icon-next,
.cid-t27kQarOeu .carousel-control .icon-prev {
    margin-top: -18px;
    font-size: 22px;
    line-height: 27px;
}

.cid-t27kQarOeu .carousel-control:hover {
    background-color: transparent;
    color: #fff;
    opacity: .5;
}

@media (max-width: 767px) {
    .cid-t27kQarOeu .container .carousel-control {
        margin-bottom: 0;
    }
}

.cid-t27kQarOeu .boxed-slider {
    position: relative;
    padding: 93px 0;
}

    .cid-t27kQarOeu .boxed-slider > div {
        position: relative;
    }

.cid-t27kQarOeu .container img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
}

    .cid-t27kQarOeu .container img + .row {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        z-index: 2;
    }

.cid-t27kQarOeu .mbr-section {
    padding: 0;
    background-attachment: scroll;
}

.cid-t27kQarOeu .mbr-table-cell {
    padding: 0;
}

.cid-t27kQarOeu .container .carousel-indicators {
    margin-bottom: 3px;
}

.cid-t27kQarOeu .carousel-caption {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    display: -webkit-flex;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-align-items: center;
}

.cid-t27kQarOeu .mbr-overlay {
    z-index: 1;
}

.cid-t27kQarOeu .container-slide.container {
    min-width: 100%;
    min-height: 100vh;
    padding: 0;
    height: 1000px;
}

.cid-t27kQarOeu .carousel-item {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
}

    .cid-t27kQarOeu .carousel-item.active.right,
    .cid-t27kQarOeu .carousel-item.next {
        left: 0;
        transition: opacity 0.7s ease-in-out;
        opacity: 0;
    }

    .cid-t27kQarOeu .carousel-item.active.left,
    .cid-t27kQarOeu .carousel-item.prev {
        left: 0;
        transition: opacity 0.7s ease-in-out;
        opacity: 0;
    }

        .cid-t27kQarOeu .carousel-item.active,
        .cid-t27kQarOeu .carousel-item.next.left,
        .cid-t27kQarOeu .carousel-item.prev.right {
            left: 0;
            opacity: 1;
        }

.cid-t27kQarOeu .mbr-slider .carousel-control {
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -1.5rem;
    font-size: 22px;
    transition: all .25s ease;
    opacity: 1;
    z-index: 11;
}

    .cid-t27kQarOeu .mbr-slider .carousel-control.carousel-control-prev {
        left: 0;
        margin-left: 2.5rem;
    }

    .cid-t27kQarOeu .mbr-slider .carousel-control.carousel-control-next {
        right: 0;
        margin-right: 2.5rem;
    }

    .cid-t27kQarOeu .mbr-slider .carousel-control .mbr-iconfont {
        font-size: 22px;
    }

@media (max-width: 767px) {
    .cid-t27kQarOeu .mbr-slider .carousel-control {
        top: auto;
        bottom: 1rem;
        display: none;
    }
}

.cid-t27kQarOeu .mbr-slider .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .cid-t27kQarOeu .mbr-slider .carousel-indicators {
        margin-bottom: .5rem;
    }
}

.cid-t27kQarOeu .mbr-slider .carousel-indicators li {
    max-width: 10px;
    width: 110px;
    height: 10px;
    max-height: 10px;
    margin: 0 5px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: .3;
    transition: all .25s ease;
    box-sizing: border-box;
}

    .cid-t27kQarOeu .mbr-slider .carousel-indicators li.active,
    .cid-t27kQarOeu .mbr-slider .carousel-indicators li:hover {
        opacity: 1;
        background-color: #fff;
    }

    .cid-t27kQarOeu .mbr-slider .carousel-indicators li::after,
    .cid-t27kQarOeu .mbr-slider .carousel-indicators li::before {
        content: none;
    }

.cid-t27kQarOeu .mbr-slider .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 576px) {
    .cid-t27kQarOeu .mbr-slider .carousel-indicators {
        display: none !important;
    }
}

.cid-t27kQarOeu .mbr-slider > .container img {
    width: 100%;
}

    .cid-t27kQarOeu .mbr-slider > .container img + .row {
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        z-index: 2;
        transform: translateY(-50%);
    }

.cid-t27kQarOeu .mbr-slider > .container .carousel-indicators {
    margin-bottom: 3px;
}

@media (max-width: 576px) {
    .cid-t27kQarOeu .mbr-slider > .container .carousel-control {
        margin-bottom: 0;
    }
}

.cid-t27kQarOeu .mbr-slider .mbr-section {
    padding: 0;
    background-attachment: scroll;
}

.cid-t27kQarOeu .mbr-slider .mbr-table-cell {
    padding: 0;
}

.cid-t27kQarOeu .carousel-item .container.container-slide {
    position: initial;
    width: auto;
    min-height: 0;
}

.cid-t27kQarOeu .full-screen .slider-fullscreen-image {
    min-height: 100vh;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

    .cid-t27kQarOeu .full-screen .slider-fullscreen-image.active {
        display: -o-flex;
    }

.cid-t27kQarOeu .full-screen .container {
    width: auto;
    padding-right: 0;
    padding-left: 0;
}

.cid-t27kQarOeu .full-screen .carousel-item .container.container-slide {
    width: 100%;
    min-height: 100vh;
    padding: 0;
}

    .cid-t27kQarOeu .full-screen .carousel-item .container.container-slide img {
        display: none;
    }

.cid-t27kQarOeu .mbr-background-video-preview {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.cid-t27kQarOeu .mbr-overlay ~ .container-slide {
    z-index: auto;
}

.cid-t27kQarOeu h2 {
    margin-bottom: 0;
    font-weight: 700;
}

.cid-t27kQarOeu .mbr-text {
    margin-bottom: 0;
    margin-top: 30px;
    font-weight: 500;
}

.cid-t27kQarOeu .mbr-section-btn {
    margin-top: 100px;
}

@media (max-width: 991px) {
    .cid-t27kQarOeu .mbr-section-btn {
        margin-top: 30px;
    }
}

.cid-t27kQarOeu .mbr-section-btn .btn {
    height: 60px;
    padding: 0 40px;
    font-weight: 700;
}

.cid-t27kQarOeu .mbr-iconfont {
    transition: all 0.25s ease;
}

.cid-t27kQarOeu .carousel-control-next .mbr-iconfont::before {
    content: "\e909";
}

.cid-t27kQarOeu .carousel-control-next .mbr-iconfont:hover {
    opacity: .5;
}

.cid-t27kQarOeu .carousel-control-prev .mbr-iconfont::before {
    content: "\e90a";
}

.cid-t27kQarOeu .carousel-control-prev .mbr-iconfont:hover {
    opacity: .5;
}

.cid-t27kQarOeu P {
    text-align: center;
}

.cid-t27kQarOeu H2 {
    text-align: center;
}

.cid-rVtXUpDj2u {
    padding-top: 75px;
    padding-bottom: 105px;
    background-color: #ffffff;
}

    .cid-rVtXUpDj2u .mbr-iconfont {
        font-size: 4rem;
        color: #0086d6;
        min-width: 100px;
        margin-bottom: 2rem;
        display: block;
        background: -webkit-linear-gradient(#78be20, #78be20);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .cid-rVtXUpDj2u .card-wrapper {
        background-color: #f7f7f7;
        padding: 1rem;
        transition: all 0.3s;
    }

        .cid-rVtXUpDj2u .card-wrapper:hover {
            box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
        }

    .cid-rVtXUpDj2u .card-box {
        border: 1px solid transparent;
        padding: 2rem 1rem;
        transition: all 0.3s;
    }

    .cid-rVtXUpDj2u .card-title {
        position: relative;
        cursor: pointer;
        color: #000000;
    }

    .cid-rVtXUpDj2u .card {
        overflow: visible;
    }

        .cid-rVtXUpDj2u .card:hover {
            cursor: pointer;
        }

            .cid-rVtXUpDj2u .card:hover .card-box {
                border: 1px solid #f3f3f3;
            }

    .cid-rVtXUpDj2u .card-title,
    .cid-rVtXUpDj2u .card-box {
        text-align: center;
        color: #0086d6;
        text-transform: uppercase;
    }

    .cid-rVtXUpDj2u .card-text {
        color: #555555;
        text-align: center;
    }

    .cid-rVtXUpDj2u .link {
        color: #0086d6;
        letter-spacing: 1px;
    }

@media (max-width: 992px) {
    .cid-rVtXUpDj2u .card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-rVtXUpDj2u .card-box {
        border: 1px solid #f3f3f3;
    }
}

.cid-rVtXUpDj2u .main-subtitle {
    color: #232323;
}

.cid-rVtXUpDj2u .main-title {
    color: #232323;
}

.cid-slwz7VcpWy {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #78be20;
}

    .cid-slwz7VcpWy img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cid-slwz7VcpWy .card {
        border-radius: 0;
        margin: auto 0;
    }

    .cid-slwz7VcpWy .img-col {
        padding: 0;
    }

    .cid-slwz7VcpWy .wrapper {
        padding: 6rem 12rem;
    }

    .cid-slwz7VcpWy .link-wrap {
        width: 100%;
    }

    .cid-slwz7VcpWy .link {
        position: relative;
        cursor: pointer;
        letter-spacing: 1px;
        display: inline-block;
        width: fit-content;
        transition: all 0.3s;
        transition-delay: 0.15s;
        color: #000000;
        text-align: center;
    }

        .cid-slwz7VcpWy .link:after {
            content: "";
            position: absolute;
            height: 1px;
            width: 100%;
            background: currentColor;
            bottom: -6px;
            opacity: 0.2;
            left: 0;
        }

        .cid-slwz7VcpWy .link:before {
            content: "";
            position: absolute;
            height: 1px;
            width: 0;
            transition: all 0.4s ease-in-out;
            background: currentColor;
            bottom: -6px;
            left: auto;
            right: 0;
        }

        .cid-slwz7VcpWy .link:hover:before {
            width: 100%;
            right: auto;
            left: 0;
        }

@media (max-width: 1500px) {
    .cid-slwz7VcpWy .wrapper {
        padding: 6rem 4rem;
    }
}

@media (max-width: 767px) {
    .cid-slwz7VcpWy .wrapper {
        padding: 2rem 0rem;
    }
}

.cid-slwz7VcpWy .link,
.cid-slwz7VcpWy .wrapper {
    color: #ffffff;
}

.cid-slwz7VcpWy .mbr-section-subtitle {
    color: #ffffff;
}

.cid-slwz7VcpWy .card-title,
.cid-slwz7VcpWy .card-box {
    color: #ffffff;
}

.cid-slwz7VcpWy .mbr-text,
.cid-slwz7VcpWy .mbr-section-btn {
    color: #999999;
}

.cid-slwz7VcpWy .mbr-text,
.cid-slwz7VcpWy .wrapper {
    color: #ffffff;
}

.cid-slwzE3zieQ {
    padding-top: 120px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

    .cid-slwzE3zieQ .mbr-overlay {
        background: linear-gradient(90deg, #21b968, #1ec5bf);
    }

    .cid-slwzE3zieQ .mbr-section-btn {
        margin-left: -0.8rem;
    }

    .cid-slwzE3zieQ .text-content {
        padding-right: 1.5rem;
    }

    .cid-slwzE3zieQ .mbr-text {
        color: #8d97ad;
    }

    .cid-slwzE3zieQ .mbr-figure img {
        -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
        box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
        border-radius: .25rem;
    }

    .cid-slwzE3zieQ .counter-container {
        padding-top: 1rem;
    }

        .cid-slwzE3zieQ .counter-container ul {
            margin-bottom: 0;
            padding-left: 1.5rem;
        }

            .cid-slwzE3zieQ .counter-container ul li {
                margin-bottom: 1rem;
                list-style: none;
            }

                .cid-slwzE3zieQ .counter-container ul li:before {
                    font-family: MobiriseIcons !important;
                    content: '\e966';
                    position: absolute;
                    left: 0px;
                    padding-top: 2px;
                    display: inline-block;
                    text-align: center;
                    margin: 4px 10px;
                    line-height: 10px;
                    transition: all .2s;
                    width: 16px;
                    height: 16px;
                    font-size: 16px !important;
                    font-weight: 500;
                    background: none;
                    color: #188ef4;
                }

@media (max-width: 991px) {
    .cid-slwzE3zieQ .main-row {
        margin: 0;
    }

    .cid-slwzE3zieQ .mbr-section-title,
    .cid-slwzE3zieQ .mbr-text,
    .cid-slwzE3zieQ .list,
    .cid-slwzE3zieQ .mbr-section-btn {
        text-align: center !important;
    }

    .cid-slwzE3zieQ .text-content {
        padding: 0;
    }
}

.cid-slwzE3zieQ .mbr-text,
.cid-slwzE3zieQ .mbr-section-btn {
    color: #000000;
}

.cid-slwhVLdFCb {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #0086d6;
}

    .cid-slwhVLdFCb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cid-slwhVLdFCb .card {
        border-radius: 0;
        margin: auto 0;
    }

    .cid-slwhVLdFCb .img-col {
        padding: 0;
    }

    .cid-slwhVLdFCb .wrapper {
        padding: 6rem 12rem;
    }

    .cid-slwhVLdFCb .link-wrap {
        width: 100%;
    }

    .cid-slwhVLdFCb .link {
        position: relative;
        cursor: pointer;
        letter-spacing: 1px;
        display: inline-block;
        width: fit-content;
        transition: all 0.3s;
        transition-delay: 0.15s;
        color: #000000;
        text-align: center;
    }

        .cid-slwhVLdFCb .link:after {
            content: "";
            position: absolute;
            height: 1px;
            width: 100%;
            background: currentColor;
            bottom: -6px;
            opacity: 0.2;
            left: 0;
        }

        .cid-slwhVLdFCb .link:before {
            content: "";
            position: absolute;
            height: 1px;
            width: 0;
            transition: all 0.4s ease-in-out;
            background: currentColor;
            bottom: -6px;
            left: auto;
            right: 0;
        }

        .cid-slwhVLdFCb .link:hover:before {
            width: 100%;
            right: auto;
            left: 0;
        }

@media (max-width: 1500px) {
    .cid-slwhVLdFCb .wrapper {
        padding: 6rem 4rem;
    }
}

@media (max-width: 767px) {
    .cid-slwhVLdFCb .wrapper {
        padding: 2rem 0rem;
    }
}

.cid-slwhVLdFCb .link,
.cid-slwhVLdFCb .wrapper {
    color: #ffffff;
}

.cid-slwhVLdFCb .mbr-section-subtitle {
    color: #ffffff;
}

.cid-slwhVLdFCb .card-title,
.cid-slwhVLdFCb .card-box {
    color: #ffffff;
}

.cid-slwhVLdFCb .mbr-text,
.cid-slwhVLdFCb .mbr-section-btn {
    color: #999999;
}

.cid-slwhVLdFCb .mbr-text,
.cid-slwhVLdFCb .wrapper {
    color: #ffffff;
}

.cid-slwhsGsWn4 {
    padding-top: 105px;
    padding-bottom: 90px;
    background-color: #78be20;
}

    .cid-slwhsGsWn4 h4 {
        color: #ffffff;
    }

.cid-tDhfGF6asw {
    padding-top: 8rem;
    padding-bottom: 3rem;
    background-color: #f3f3f3;
}

    .cid-tDhfGF6asw .btn {
        border-radius: 10px;
        padding: 1rem 2rem;
        margin: 0.5rem;
    }

    .cid-tDhfGF6asw .mbr-section-subtitle {
        color: #bbbbbb;
    }

    .cid-tDhfGF6asw .mbr-section-title {
        color: #242424;
    }

.cid-tDha9c3CeV {
    padding-top: 0px;
    padding-bottom: 105px;
    background: #f3f3f3;
}

    .cid-tDha9c3CeV .team-card {
        margin-bottom: 2rem;
        transition: all 0.3s;
    }

        .cid-tDha9c3CeV .team-card:hover {
            transform: translateY(-10px);
        }

    .cid-tDha9c3CeV .card-wrap {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

        .cid-tDha9c3CeV .card-wrap .image-wrap img {
            width: 100%;
        }

        .cid-tDha9c3CeV .card-wrap .content-wrap {
            padding: 1.5rem;
        }

            .cid-tDha9c3CeV .card-wrap .content-wrap .mbr-section-btn {
                padding-top: 1rem;
            }

                .cid-tDha9c3CeV .card-wrap .content-wrap .mbr-section-btn .btn {
                    margin: 0;
                }

@media (max-width: 767px) {
    .cid-tDha9c3CeV .team-card.last-card {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .cid-tDha9c3CeV .team-card.last-row-card {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .cid-tDha9c3CeV .team-card:not(.first-row-card) {
        margin-bottom: 0;
    }
}

.cid-tDha9c3CeV .card-title {
    text-align: left;
    color: #242424;
}

.cid-tDha9c3CeV .mbr-role {
    text-align: left;
}

.cid-tDha9c3CeV .card-text,
.cid-tDha9c3CeV .mbr-section-btn {
    text-align: left;
}

.cid-t28tcxvUwR {
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t28tcxvUwR .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t28tcxvUwR .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t28tcxvUwR H2 {
        color: #e7272d;
    }

    .cid-t28tcxvUwR .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t28tcxvUwR .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t28tcxvUwR .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t28tcxvUwR .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t28tcxvUwR .col-lg-12 {
        overflow: hidden;
    }

    .cid-t28tcxvUwR H4 {
        color: #fbbe36;
    }

    .cid-t28tcxvUwR .mbr-text,
    .cid-t28tcxvUwR .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t28tcxvUwR .logo-wrap:before {
        content: none;
    }

    .cid-t28tcxvUwR .logo-wrap:after {
        content: none;
    }
}

.cid-t28tcxvUwR H3 {
    color: #555555;
}

.cid-t28tbGL7Am {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t28tbGL7Am p {
        text-align: center;
    }

    .cid-t28tbGL7Am .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t28tbGL7Am .btn-underline:hover {
        color: #505050;
    }

    .cid-t28tbGL7Am .btn-underline:before {
        background-color: #505050;
    }

    .cid-t28tbGL7Am .social-list a:focus {
        text-decoration: none;
    }

    .cid-t28tbGL7Am .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t28tbGL7Am .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t28tbGL7Am .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t28tbGL7Am .logo-footer {
        line-height: normal;
    }

    .cid-t28tbGL7Am .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t28tbGL7Am .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t28tbGL7Am .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t28tbGL7Am .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t28SyyRnf2 {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/pexels-artem-podrez-6779716-2000x1333.jpg");
}

    .cid-t28SyyRnf2 h3 {
        color: #000000;
    }

    .cid-t28SyyRnf2 h4 {
        color: #000000;
    }

    .cid-t28SyyRnf2 .mbr-text,
    .cid-t28SyyRnf2 .mbr-section-btn {
        color: #999999;
    }

    .cid-t28SyyRnf2 img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-t28SyyRnf2 H4 {
        color: #ffffff;
    }

    .cid-t28SyyRnf2 H3 {
        color: #ffffff;
    }

.cid-t28Syzf7zr {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-t28Syzf7zr .mbr-text,
    .cid-t28Syzf7zr .mbr-section-btn {
        color: #000000;
        text-align: center;
    }

@media (max-width: 991px) {
    .cid-t28Syzf7zr .mbr-section-title,
    .cid-t28Syzf7zr .mbr-section-btn,
    .cid-t28Syzf7zr .mbr-text {
        text-align: center;
    }
}

.cid-t28Syzf7zr .mbr-section-subtitle {
    color: #999999;
    letter-spacing: 6px;
}

.cid-t28Syzf7zr .mbr-section-title {
    color: #0086d6;
}

.cid-t2903sPCmL {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-t2903sPCmL .row {
        align-items: center;
        justify-content: space-between;
    }

    .cid-t2903sPCmL .mbr-section-title {
        width: 100%;
        text-align: left;
        margin-bottom: 24px;
        line-height: 1.171em;
    }

    .cid-t2903sPCmL .mbr-section-subtitle {
        color: #4c4c4c;
        width: 100%;
        text-align: left;
    }

    .cid-t2903sPCmL .mbr-text {
        color: #8c8c95;
        margin-bottom: 36px;
    }

    .cid-t2903sPCmL .right-side {
        max-width: 554px;
    }

    .cid-t2903sPCmL .rs {
        margin-right: 60px;
    }

    .cid-t2903sPCmL .mbr-section-btn {
        width: auto;
        display: inline-block;
    }

    .cid-t2903sPCmL .margin {
        margin-right: 14px;
    }

    .cid-t2903sPCmL .gray {
        padding: 45px 0;
        background-color: #f3f3f3;
    }

    .cid-t2903sPCmL img {
        position: relative;
        right: 0px;
    }

@media (max-width: 767px) {
    .cid-t2903sPCmL .gray {
        padding: 0px 0 5px;
    }

    .cid-t2903sPCmL img {
        right: initial;
        width: 0%;
        margin: auto;
        top: 0px;
    }

    .cid-t2903sPCmL .col-md-5 {
        padding-top: 0px;
    }
}

@media (max-width: 0px) {
    .cid-t2903sPCmL .b {
        margin-bottom: 0px;
    }
}

.cid-t2903sPCmL .btn {
    margin-top: 20px;
}

.cid-t2903sPCmL a.btn > span {
    margin-left: 0.5rem;
}

.cid-t2f9QWBuBa {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

    .cid-t2f9QWBuBa .row {
        align-items: center;
        justify-content: space-between;
    }

    .cid-t2f9QWBuBa .mbr-section-title {
        width: 100%;
        text-align: left;
        margin-bottom: 24px;
        line-height: 1.171em;
    }

    .cid-t2f9QWBuBa .mbr-section-subtitle {
        color: #4c4c4c;
        width: 100%;
        text-align: left;
    }

    .cid-t2f9QWBuBa .mbr-text {
        color: #8c8c95;
        margin-bottom: 36px;
    }

    .cid-t2f9QWBuBa .right-side {
        max-width: 554px;
    }

    .cid-t2f9QWBuBa .rs {
        margin-right: 60px;
    }

    .cid-t2f9QWBuBa .mbr-section-btn {
        width: auto;
        display: inline-block;
    }

    .cid-t2f9QWBuBa .margin {
        margin-right: 14px;
    }

    .cid-t2f9QWBuBa .gray {
        padding: 45px 0;
        background-color: #f3f3f3;
    }

    .cid-t2f9QWBuBa img {
        position: relative;
        right: 0px;
    }

@media (max-width: 767px) {
    .cid-t2f9QWBuBa .gray {
        padding: 0px 0 5px;
    }

    .cid-t2f9QWBuBa img {
        right: initial;
        width: 0%;
        margin: auto;
        top: 0px;
    }

    .cid-t2f9QWBuBa .col-md-5 {
        padding-top: 0px;
    }
}

@media (max-width: 0px) {
    .cid-t2f9QWBuBa .b {
        margin-bottom: 0px;
    }
}

.cid-t2f9QWBuBa .btn {
    margin-top: 20px;
}

.cid-t2f9QWBuBa a.btn > span {
    margin-left: 0.5rem;
}

.cid-t2f9QWBuBa .row {
    flex-direction: row-reverse;
}

.cid-t2dDlBb37i {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #78be20;
}

    .cid-t2dDlBb37i h4 {
        color: #ffffff;
    }

.cid-t28SyAGK8p {
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t28SyAGK8p .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t28SyAGK8p .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t28SyAGK8p H2 {
        color: #e7272d;
    }

    .cid-t28SyAGK8p .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t28SyAGK8p .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t28SyAGK8p .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t28SyAGK8p .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t28SyAGK8p .col-lg-12 {
        overflow: hidden;
    }

    .cid-t28SyAGK8p H4 {
        color: #fbbe36;
    }

    .cid-t28SyAGK8p .mbr-text,
    .cid-t28SyAGK8p .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t28SyAGK8p .logo-wrap:before {
        content: none;
    }

    .cid-t28SyAGK8p .logo-wrap:after {
        content: none;
    }
}

.cid-t28SyAGK8p H3 {
    color: #555555;
}

.cid-t2dBSnnBqq {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2dBSnnBqq p {
        text-align: center;
    }

    .cid-t2dBSnnBqq .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2dBSnnBqq .btn-underline:hover {
        color: #505050;
    }

    .cid-t2dBSnnBqq .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2dBSnnBqq .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2dBSnnBqq .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2dBSnnBqq .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2dBSnnBqq .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2dBSnnBqq .logo-footer {
        line-height: normal;
    }

    .cid-t2dBSnnBqq .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2dBSnnBqq .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2dBSnnBqq .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2dBSnnBqq .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2j11OlQ4m {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2j11OlQ4m nav.navbar {
        position: fixed;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2j11OlQ4m .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2j11OlQ4m .dropdown-item:hover,
        .cid-t2j11OlQ4m .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2j11OlQ4m .dropdown-item:hover span {
                color: white;
            }

        .cid-t2j11OlQ4m .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2j11OlQ4m .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2j11OlQ4m .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }


        .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2j11OlQ4m .nav-link {
        position: relative;
    }

    .cid-t2j11OlQ4m .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .container {
        flex-wrap: nowrap;
    }
}

.cid-t2j11OlQ4m .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2j11OlQ4m .dropdown-menu,
.cid-t2j11OlQ4m .navbar.opened {
    background: #ffffff !important;
}

.cid-t2j11OlQ4m .nav-item:focus,
.cid-t2j11OlQ4m .nav-link:focus {
    outline: none;
}

.cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2j11OlQ4m .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2j11OlQ4m .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2j11OlQ4m .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2j11OlQ4m .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2j11OlQ4m .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2j11OlQ4m .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2j11OlQ4m .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2j11OlQ4m .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2j11OlQ4m .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2j11OlQ4m .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2j11OlQ4m .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2j11OlQ4m .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2j11OlQ4m .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2j11OlQ4m .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2j11OlQ4m .dropdown-item.active,
.cid-t2j11OlQ4m .dropdown-item:active {
    background-color: transparent;
}

.cid-t2j11OlQ4m .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2j11OlQ4m .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2j11OlQ4m ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2j11OlQ4m .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2j11OlQ4m button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2j11OlQ4m button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2j11OlQ4m a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar {
        height: 70px;
    }

        .cid-t2j11OlQ4m .navbar.opened {
            height: auto;
        }

    .cid-t2j11OlQ4m .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-t295sALz8x {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/gestao-1-2000x968.jpeg");
}

    .cid-t295sALz8x h3 {
        color: #000000;
    }

    .cid-t295sALz8x h4 {
        color: #000000;
    }

    .cid-t295sALz8x .mbr-text,
    .cid-t295sALz8x .mbr-section-btn {
        color: #999999;
    }

    .cid-t295sALz8x img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-t295sALz8x H4 {
        color: #ffffff;
    }

    .cid-t295sALz8x H3 {
        color: #ffffff;
    }

.cid-t295sB7vlA {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

    .cid-t295sB7vlA .mbr-text,
    .cid-t295sB7vlA .mbr-section-btn {
        color: #000000;
        text-align: center;
    }

@media (max-width: 991px) {
    .cid-t295sB7vlA .mbr-section-title,
    .cid-t295sB7vlA .mbr-section-btn,
    .cid-t295sB7vlA .mbr-text {
        text-align: center;
    }
}

.cid-t295sB7vlA .mbr-section-subtitle {
    color: #999999;
    letter-spacing: 6px;
}

.cid-t295sB7vlA .mbr-section-title {
    color: #0086d6;
}

.cid-t2dDshWBx1 {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #78be20;
}

    .cid-t2dDshWBx1 h4 {
        color: #ffffff;
    }

.cid-t295sC2TXE {
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t295sC2TXE .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t295sC2TXE .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t295sC2TXE H2 {
        color: #e7272d;
    }

    .cid-t295sC2TXE .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t295sC2TXE .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t295sC2TXE .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t295sC2TXE .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t295sC2TXE .col-lg-12 {
        overflow: hidden;
    }

    .cid-t295sC2TXE H4 {
        color: #fbbe36;
    }

    .cid-t295sC2TXE .mbr-text,
    .cid-t295sC2TXE .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t295sC2TXE .logo-wrap:before {
        content: none;
    }

    .cid-t295sC2TXE .logo-wrap:after {
        content: none;
    }
}

.cid-t295sC2TXE H3 {
    color: #555555;
}

.cid-t2dCBbCZTm {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2dCBbCZTm p {
        text-align: center;
    }

    .cid-t2dCBbCZTm .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2dCBbCZTm .btn-underline:hover {
        color: #505050;
    }

    .cid-t2dCBbCZTm .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2dCBbCZTm .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2dCBbCZTm .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2dCBbCZTm .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2dCBbCZTm .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2dCBbCZTm .logo-footer {
        line-height: normal;
    }

    .cid-t2dCBbCZTm .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2dCBbCZTm .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2dCBbCZTm .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2dCBbCZTm .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2j11OlQ4m {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2j11OlQ4m nav.navbar {
        position: fixed;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2j11OlQ4m .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2j11OlQ4m .dropdown-item:hover,
        .cid-t2j11OlQ4m .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2j11OlQ4m .dropdown-item:hover span {
                color: white;
            }

        .cid-t2j11OlQ4m .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2j11OlQ4m .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2j11OlQ4m .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2j11OlQ4m .nav-link {
        position: relative;
    }

    .cid-t2j11OlQ4m .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .container {
        flex-wrap: nowrap;
    }
}

.cid-t2j11OlQ4m .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2j11OlQ4m .dropdown-menu,
.cid-t2j11OlQ4m .navbar.opened {
    background: #ffffff !important;
}

.cid-t2j11OlQ4m .nav-item:focus,
.cid-t2j11OlQ4m .nav-link:focus {
    outline: none;
}

.cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2j11OlQ4m .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2j11OlQ4m .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2j11OlQ4m .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2j11OlQ4m .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2j11OlQ4m .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2j11OlQ4m .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2j11OlQ4m .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2j11OlQ4m .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2j11OlQ4m .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2j11OlQ4m .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2j11OlQ4m .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2j11OlQ4m .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2j11OlQ4m .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2j11OlQ4m .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2j11OlQ4m .dropdown-item.active,
.cid-t2j11OlQ4m .dropdown-item:active {
    background-color: transparent;
}

.cid-t2j11OlQ4m .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2j11OlQ4m .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2j11OlQ4m ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2j11OlQ4m .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2j11OlQ4m button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2j11OlQ4m button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2j11OlQ4m a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar {
        height: 70px;
    }

        .cid-t2j11OlQ4m .navbar.opened {
            height: auto;
        }

    .cid-t2j11OlQ4m .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-t29nSqNtiv {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/contactos-2000x901.jpeg");
}

    .cid-t29nSqNtiv h3 {
        color: #000000;
    }

    .cid-t29nSqNtiv h4 {
        color: #000000;
    }

    .cid-t29nSqNtiv .mbr-text,
    .cid-t29nSqNtiv .mbr-section-btn {
        color: #999999;
    }

    .cid-t29nSqNtiv img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-t29nSqNtiv H4 {
        color: #ffffff;
    }

    .cid-t29nSqNtiv H3 {
        color: #ffffff;
    }

.cid-t29nStu4St {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #ffffff;
}

    .cid-t29nStu4St .mbr-iconfont {
        font-size: 4rem;
        color: #0086d6;
        width: 100%;
        min-width: 100px;
        display: block;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;
        padding-bottom: 2rem;
    }

    .cid-t29nStu4St .card-title {
        cursor: pointer;
        color: #e5e5e5;
        text-align: center;
    }

    .cid-t29nStu4St .card:hover {
        cursor: pointer;
    }

        .cid-t29nStu4St .card:hover .card-title:before {
            width: 100%;
        }

        .cid-t29nStu4St .card:hover .mbr-iconfont {
            transform: translateY(-12px);
        }

    .cid-t29nStu4St .card-text {
        color: #000000;
    }

    .cid-t29nStu4St .card-title,
    .cid-t29nStu4St .card-wrapper {
        color: #e5e5e5;
    }

.cid-t29oxUPMYt .google-map {
    height: 30rem;
    position: relative;
}

    .cid-t29oxUPMYt .google-map iframe {
        height: 100%;
        width: 100%;
    }

    .cid-t29oxUPMYt .google-map [data-state-details] {
        color: #6b6763;
        font-family: Montserrat;
        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-t29oxUPMYt .google-map[data-state] {
        background: #e9e5dc;
    }

    .cid-t29oxUPMYt .google-map[data-state="loading"] [data-state-details] {
        display: none;
    }

.cid-t2d9jH7jOO {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #fafafa;
}

    .cid-t2d9jH7jOO .mbr-text,
    .cid-t2d9jH7jOO .mbr-section-btn {
        color: #0086d6;
        text-align: center;
    }

@media (max-width: 991px) {
    .cid-t2d9jH7jOO .mbr-section-title,
    .cid-t2d9jH7jOO .mbr-section-btn,
    .cid-t2d9jH7jOO .mbr-text {
        text-align: center;
    }
}

.cid-t2d9jH7jOO .mbr-section-subtitle {
    color: #999999;
    letter-spacing: 6px;
}

.cid-t2d9jH7jOO .mbr-section-title {
    color: #0086d6;
}

.cid-t2da4mWrxD {
    padding-top: 0rem;
    padding-bottom: 5rem;
    background-color: #fafafa;
}

    .cid-t2da4mWrxD .mbr-overlay {
        background-color: #ffffff;
        opacity: 0.4;
    }

    .cid-t2da4mWrxD form .mbr-section-btn {
        text-align: center;
        width: 100%;
    }

        .cid-t2da4mWrxD form .mbr-section-btn .btn {
            display: inline-flex;
        }

@media (max-width: 991px) {
    .cid-t2da4mWrxD form .mbr-section-btn .btn {
        width: 100%;
    }
}

.cid-t29nStQ7ik {
    padding-top: 75px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t29nStQ7ik .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t29nStQ7ik .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t29nStQ7ik H2 {
        color: #e7272d;
    }

    .cid-t29nStQ7ik .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t29nStQ7ik .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t29nStQ7ik .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t29nStQ7ik .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t29nStQ7ik .col-lg-12 {
        overflow: hidden;
    }

    .cid-t29nStQ7ik H4 {
        color: #fbbe36;
    }

    .cid-t29nStQ7ik .mbr-text,
    .cid-t29nStQ7ik .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t29nStQ7ik .logo-wrap:before {
        content: none;
    }

    .cid-t29nStQ7ik .logo-wrap:after {
        content: none;
    }
}

.cid-t29nStQ7ik H3 {
    color: #555555;
}

.cid-t2dBP7KvYT {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2dBP7KvYT p {
        text-align: center;
    }

    .cid-t2dBP7KvYT .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2dBP7KvYT .btn-underline:hover {
        color: #505050;
    }

    .cid-t2dBP7KvYT .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2dBP7KvYT .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2dBP7KvYT .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2dBP7KvYT .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2dBP7KvYT .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2dBP7KvYT .logo-footer {
        line-height: normal;
    }

    .cid-t2dBP7KvYT .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2dBP7KvYT .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2dBP7KvYT .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2dBP7KvYT .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2j11OlQ4m {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2j11OlQ4m nav.navbar {
        position: fixed;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2j11OlQ4m .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2j11OlQ4m .dropdown-item:hover,
        .cid-t2j11OlQ4m .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2j11OlQ4m .dropdown-item:hover span {
                color: white;
            }

        .cid-t2j11OlQ4m .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2j11OlQ4m .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2j11OlQ4m .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2j11OlQ4m .nav-link {
        position: relative;
    }

    .cid-t2j11OlQ4m .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .container {
        flex-wrap: nowrap;
    }
}

.cid-t2j11OlQ4m .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2j11OlQ4m .dropdown-menu,
.cid-t2j11OlQ4m .navbar.opened {
    background: #ffffff !important;
}

.cid-t2j11OlQ4m .nav-item:focus,
.cid-t2j11OlQ4m .nav-link:focus {
    outline: none;
}

.cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2j11OlQ4m .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2j11OlQ4m .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2j11OlQ4m .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2j11OlQ4m .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2j11OlQ4m .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2j11OlQ4m .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2j11OlQ4m .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2j11OlQ4m .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2j11OlQ4m .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2j11OlQ4m .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2j11OlQ4m .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2j11OlQ4m .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2j11OlQ4m .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2j11OlQ4m .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2j11OlQ4m .dropdown-item.active,
.cid-t2j11OlQ4m .dropdown-item:active {
    background-color: transparent;
}

.cid-t2j11OlQ4m .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2j11OlQ4m .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2j11OlQ4m ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2j11OlQ4m .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2j11OlQ4m button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2j11OlQ4m button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2j11OlQ4m a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar {
        height: 70px;
    }

        .cid-t2j11OlQ4m .navbar.opened {
            height: auto;
        }

    .cid-t2j11OlQ4m .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-slZNyxTLpV {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/a-lezriagest-1900x741.jpg");
}

    .cid-slZNyxTLpV h3 {
        color: #000000;
    }

    .cid-slZNyxTLpV h4 {
        color: #000000;
    }

    .cid-slZNyxTLpV .mbr-text,
    .cid-slZNyxTLpV .mbr-section-btn {
        color: #999999;
    }

    .cid-slZNyxTLpV img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-slZNyxTLpV H4 {
        color: #ffffff;
    }

    .cid-slZNyxTLpV H3 {
        color: #ffffff;
    }

.cid-t28zgDXwVm {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

    .cid-t28zgDXwVm .mbr-text,
    .cid-t28zgDXwVm .mbr-section-btn {
        color: #000000;
        text-align: center;
    }

@media (max-width: 991px) {
    .cid-t28zgDXwVm .mbr-section-title,
    .cid-t28zgDXwVm .mbr-section-btn,
    .cid-t28zgDXwVm .mbr-text {
        text-align: center;
    }
}

.cid-t28zgDXwVm .mbr-section-subtitle {
    color: #999999;
    letter-spacing: 6px;
}

.cid-t28zgDXwVm .mbr-section-title {
    color: #0086d6;
}

.cid-t28Lt2aVB2 {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #0086d6;
}

    .cid-t28Lt2aVB2 .carousel-item {
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-justify-content: center;
    }

        .cid-t28Lt2aVB2 .carousel-item.active,
        .cid-t28Lt2aVB2 .carousel-item-next,
        .cid-t28Lt2aVB2 .carousel-item-prev {
            display: flex;
        }

    .cid-t28Lt2aVB2 .img-box {
        position: relative;
        width: fit-content;
        margin: auto;
    }

    .cid-t28Lt2aVB2 .mbr-iconfont {
        font-family: Moririse2 !important;
        font-size: 1rem;
        font-weight: 900;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }

    .cid-t28Lt2aVB2 .carousel-controls a {
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
        font-size: 2rem;
    }

        .cid-t28Lt2aVB2 .carousel-controls a span {
            position: absolute;
            top: 45%;
            padding: 10px;
            border-radius: 100%;
            color: #232323;
            opacity: 1;
        }

        .cid-t28Lt2aVB2 .carousel-controls a:hover span {
            opacity: 0.4;
        }

    .cid-t28Lt2aVB2 h1 {
        color: #36404c;
    }

    .cid-t28Lt2aVB2 .author-box {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
    }

    .cid-t28Lt2aVB2 .face {
        width: 100px;
        height: 100px;
        border-radius: 100%;
        box-shadow: none;
        margin: 0rem;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .cid-t28Lt2aVB2 .author {
        margin: auto 0;
    }

    .cid-t28Lt2aVB2 h3,
    .cid-t28Lt2aVB2 h4 {
        margin: 0;
        padding: 0;
    }

    .cid-t28Lt2aVB2 h3 {
        color: #130947;
    }

        .cid-t28Lt2aVB2 h3.display-7 {
            line-height: 1.1;
            letter-spacing: 0;
        }

    .cid-t28Lt2aVB2 h4 {
        color: #4f87fb;
        font-weight: 700;
    }

        .cid-t28Lt2aVB2 h4.display-4 {
            line-height: 1.5;
            font-size: 13px;
        }

    .cid-t28Lt2aVB2 .mbr-text {
        padding-bottom: 30px;
        color: #6d7a8c;
        font-weight: 300;
    }

        .cid-t28Lt2aVB2 .mbr-text.display-5 {
            line-height: 1.3;
        }

    .cid-t28Lt2aVB2 .box {
        max-width: 800px !important;
        margin: auto !important;
    }

@media (max-width: 992px) {
    .cid-t28Lt2aVB2 .carousel-controls a span {
        bottom: auto;
        top: 30%;
    }
}

@media (max-width: 767px) {
    .cid-t28Lt2aVB2 .carousel-controls a span {
        bottom: auto;
        top: 20%;
    }
}

.cid-t28Lt2aVB2 .mbr-text,
.cid-t28Lt2aVB2 .mbr-section-btn {
    color: #ffffff;
}

.cid-t28Lt2aVB2 H3 {
    color: #ffffff;
}

.cid-t28Lt2aVB2 H4 {
    color: #ffffff;
}

.cid-t28PhuAvAi {
    padding-top: 90px;
    padding-bottom: 75px;
    background-color: #f2f2f2;
}

    .cid-t28PhuAvAi .mbr-iconfont {
        font-size: 4rem;
        color: #0086d6;
        width: 100%;
        min-width: 100px;
        display: block;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;
        padding-bottom: 2rem;
    }

    .cid-t28PhuAvAi .card-title {
        cursor: pointer;
        color: #000000;
        text-align: center;
    }

    .cid-t28PhuAvAi .card:hover {
        cursor: pointer;
    }

        .cid-t28PhuAvAi .card:hover .card-title:before {
            width: 100%;
        }

        .cid-t28PhuAvAi .card:hover .mbr-iconfont {
            transform: translateY(-12px);
        }

    .cid-t28PhuAvAi .card-text {
        color: #000000;
    }

.cid-t28tcxvUwR {
    padding-top: 75px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t28tcxvUwR .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t28tcxvUwR .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t28tcxvUwR H2 {
        color: #e7272d;
    }

    .cid-t28tcxvUwR .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t28tcxvUwR .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t28tcxvUwR .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t28tcxvUwR .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t28tcxvUwR .col-lg-12 {
        overflow: hidden;
    }

    .cid-t28tcxvUwR H4 {
        color: #fbbe36;
    }

    .cid-t28tcxvUwR .mbr-text,
    .cid-t28tcxvUwR .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t28tcxvUwR .logo-wrap:before {
        content: none;
    }

    .cid-t28tcxvUwR .logo-wrap:after {
        content: none;
    }
}

.cid-t28tcxvUwR H3 {
    color: #555555;
}

.cid-t2dBhZzPpC {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2dBhZzPpC p {
        text-align: center;
    }

    .cid-t2dBhZzPpC .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2dBhZzPpC .btn-underline:hover {
        color: #505050;
    }

    .cid-t2dBhZzPpC .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2dBhZzPpC .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2dBhZzPpC .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2dBhZzPpC .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2dBhZzPpC .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2dBhZzPpC .logo-footer {
        line-height: normal;
    }

    .cid-t2dBhZzPpC .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2dBhZzPpC .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2dBhZzPpC .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2dBhZzPpC .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2j11OlQ4m {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2j11OlQ4m nav.navbar {
        position: fixed;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2j11OlQ4m .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2j11OlQ4m .dropdown-item:hover,
        .cid-t2j11OlQ4m .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2j11OlQ4m .dropdown-item:hover span {
                color: white;
            }

        .cid-t2j11OlQ4m .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2j11OlQ4m .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2j11OlQ4m .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2j11OlQ4m .nav-link {
        position: relative;
    }

    .cid-t2j11OlQ4m .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .container {
        flex-wrap: nowrap;
    }
}

.cid-t2j11OlQ4m .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2j11OlQ4m .dropdown-menu,
.cid-t2j11OlQ4m .navbar.opened {
    background: #ffffff !important;
}

.cid-t2j11OlQ4m .nav-item:focus,
.cid-t2j11OlQ4m .nav-link:focus {
    outline: none;
}

.cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2j11OlQ4m .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2j11OlQ4m .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2j11OlQ4m .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2j11OlQ4m .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2j11OlQ4m .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2j11OlQ4m .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2j11OlQ4m .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2j11OlQ4m .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2j11OlQ4m .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2j11OlQ4m .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2j11OlQ4m .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2j11OlQ4m .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2j11OlQ4m .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2j11OlQ4m .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2j11OlQ4m .dropdown-item.active,
.cid-t2j11OlQ4m .dropdown-item:active {
    background-color: transparent;
}

.cid-t2j11OlQ4m .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2j11OlQ4m .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2j11OlQ4m ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2j11OlQ4m .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2j11OlQ4m button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2j11OlQ4m button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2j11OlQ4m a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar {
        height: 70px;
    }

        .cid-t2j11OlQ4m .navbar.opened {
            height: auto;
        }

    .cid-t2j11OlQ4m .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-t297fDEbgf {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/macro-photograph-of-the-word-euro-on-a-euro-banknote-2000x1333.jpg");
}

    .cid-t297fDEbgf h3 {
        color: #000000;
    }

    .cid-t297fDEbgf h4 {
        color: #000000;
    }

    .cid-t297fDEbgf .mbr-text,
    .cid-t297fDEbgf .mbr-section-btn {
        color: #999999;
    }

    .cid-t297fDEbgf img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-t297fDEbgf H4 {
        color: #ffffff;
    }

    .cid-t297fDEbgf H3 {
        color: #ffffff;
    }

.cid-t29kf0mXiW {
    padding-top: 10rem;
    padding-bottom: 0rem;
    background-color: #fafafa;
}

    .cid-t29kf0mXiW .mbr-text,
    .cid-t29kf0mXiW .mbr-section-btn {
        color: #000000;
        text-align: center;
    }

@media (max-width: 991px) {
    .cid-t29kf0mXiW .mbr-section-title,
    .cid-t29kf0mXiW .mbr-section-btn,
    .cid-t29kf0mXiW .mbr-text {
        text-align: center;
    }
}

.cid-t29kf0mXiW .mbr-section-subtitle {
    color: #999999;
    letter-spacing: 6px;
}

.cid-t29kf0mXiW .mbr-section-title {
    color: #0086d6;
}

.cid-t29fFV46kC {
    padding-top: 4rem;
    padding-bottom: 2rem;
    background: #fafafa;
}

    .cid-t29fFV46kC .team-card {
        margin-bottom: 2rem;
        transition: all 0.3s;
    }

        .cid-t29fFV46kC .team-card:hover {
            transform: translateY(-10px);
        }

    .cid-t29fFV46kC .card-wrap {
        background: #ffffff;
        border-radius: 4px;
    }

@media (max-width: 991px) {
    .cid-t29fFV46kC .card-wrap {
        margin-bottom: 2rem;
    }
}

.cid-t29fFV46kC .card-wrap .image-wrap img {
    width: 100%;
}

@media (min-width: 768px) {
    .cid-t29fFV46kC .card-wrap .content-wrap {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-t29fFV46kC .card-wrap .content-wrap {
        padding: 1rem;
    }
}

.cid-t29fFV46kC .social-row {
    text-align: center;
}

    .cid-t29fFV46kC .social-row .soc-item {
        display: inline-block;
        text-align: center;
        border-radius: 50%;
        margin-right: 0.6rem;
        margin-bottom: 1rem;
        padding: 0.5rem;
        border: 2px solid #6592e6;
        transition: all 0.3s;
    }

        .cid-t29fFV46kC .social-row .soc-item .mbr-iconfont {
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-content: center;
            color: #6592e6;
            font-size: 1.5rem;
        }

        .cid-t29fFV46kC .social-row .soc-item:hover {
            background-color: #6592e6;
        }

            .cid-t29fFV46kC .social-row .soc-item:hover .mbr-iconfont {
                color: #ffffff;
            }

.cid-t29fFV46kC .card-text,
.cid-t29fFV46kC .mbr-section-btn,
.cid-t29fFV46kC .social-row {
    text-align: left;
}

.cid-t29fFV46kC .card-title,
.cid-t29fFV46kC .social-row {
    text-align: left;
}

    .cid-t29fFV46kC .card-title,
    .cid-t29fFV46kC .social-row DIV {
        text-align: center;
    }

.cid-t29h5wQqoG {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background: #fafafa;
}

    .cid-t29h5wQqoG .team-card {
        margin-bottom: 2rem;
        transition: all 0.3s;
    }

        .cid-t29h5wQqoG .team-card:hover {
            transform: translateY(-10px);
        }

    .cid-t29h5wQqoG .card-wrap {
        background: #ffffff;
        border-radius: 4px;
    }

@media (max-width: 991px) {
    .cid-t29h5wQqoG .card-wrap {
        margin-bottom: 2rem;
    }
}

.cid-t29h5wQqoG .card-wrap .image-wrap img {
    width: 100%;
}

@media (min-width: 768px) {
    .cid-t29h5wQqoG .card-wrap .content-wrap {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-t29h5wQqoG .card-wrap .content-wrap {
        padding: 1rem;
    }
}

.cid-t29h5wQqoG .social-row {
    text-align: center;
}

    .cid-t29h5wQqoG .social-row .soc-item {
        display: inline-block;
        text-align: center;
        border-radius: 50%;
        margin-right: 0.6rem;
        margin-bottom: 1rem;
        padding: 0.5rem;
        border: 2px solid #6592e6;
        transition: all 0.3s;
    }

        .cid-t29h5wQqoG .social-row .soc-item .mbr-iconfont {
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-content: center;
            color: #6592e6;
            font-size: 1.5rem;
        }

        .cid-t29h5wQqoG .social-row .soc-item:hover {
            background-color: #6592e6;
        }

            .cid-t29h5wQqoG .social-row .soc-item:hover .mbr-iconfont {
                color: #ffffff;
            }

.cid-t29h5wQqoG .card-text,
.cid-t29h5wQqoG .mbr-section-btn,
.cid-t29h5wQqoG .social-row {
    text-align: left;
}

.cid-t29h5wQqoG .card-title,
.cid-t29h5wQqoG .social-row {
    text-align: left;
}

    .cid-t29h5wQqoG .card-title,
    .cid-t29h5wQqoG .social-row DIV {
        text-align: center;
    }

.cid-t29i1ENpBO {
    padding-top: 2rem;
    padding-bottom: 8rem;
    background: #fafafa;
}

    .cid-t29i1ENpBO .team-card {
        margin-bottom: 2rem;
        transition: all 0.3s;
    }

        .cid-t29i1ENpBO .team-card:hover {
            transform: translateY(-10px);
        }

    .cid-t29i1ENpBO .card-wrap {
        background: #ffffff;
        border-radius: 4px;
    }

@media (max-width: 991px) {
    .cid-t29i1ENpBO .card-wrap {
        margin-bottom: 2rem;
    }
}

.cid-t29i1ENpBO .card-wrap .image-wrap img {
    width: 100%;
}

@media (min-width: 768px) {
    .cid-t29i1ENpBO .card-wrap .content-wrap {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-t29i1ENpBO .card-wrap .content-wrap {
        padding: 1rem;
    }
}

.cid-t29i1ENpBO .social-row {
    text-align: center;
}

    .cid-t29i1ENpBO .social-row .soc-item {
        display: inline-block;
        text-align: center;
        border-radius: 50%;
        margin-right: 0.6rem;
        margin-bottom: 1rem;
        padding: 0.5rem;
        border: 2px solid #6592e6;
        transition: all 0.3s;
    }

        .cid-t29i1ENpBO .social-row .soc-item .mbr-iconfont {
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-content: center;
            color: #6592e6;
            font-size: 1.5rem;
        }

        .cid-t29i1ENpBO .social-row .soc-item:hover {
            background-color: #6592e6;
        }

            .cid-t29i1ENpBO .social-row .soc-item:hover .mbr-iconfont {
                color: #ffffff;
            }

.cid-t29i1ENpBO .card-text,
.cid-t29i1ENpBO .mbr-section-btn,
.cid-t29i1ENpBO .social-row {
    text-align: left;
}

.cid-t29i1ENpBO .card-title,
.cid-t29i1ENpBO .social-row {
    text-align: left;
}

    .cid-t29i1ENpBO .card-title,
    .cid-t29i1ENpBO .social-row DIV {
        text-align: center;
    }

.cid-slU6wYcUKj {
    padding-top: 120px;
    padding-bottom: 75px;
    background-color: #78be20;
}

    .cid-slU6wYcUKj h4 {
        color: #ffffff;
    }

    .cid-slU6wYcUKj H3 {
        color: #ffffff;
    }

.cid-t28tcxvUwR {
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t28tcxvUwR .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t28tcxvUwR .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t28tcxvUwR H2 {
        color: #e7272d;
    }

    .cid-t28tcxvUwR .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t28tcxvUwR .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t28tcxvUwR .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t28tcxvUwR .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t28tcxvUwR .col-lg-12 {
        overflow: hidden;
    }

    .cid-t28tcxvUwR H4 {
        color: #fbbe36;
    }

    .cid-t28tcxvUwR .mbr-text,
    .cid-t28tcxvUwR .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t28tcxvUwR .logo-wrap:before {
        content: none;
    }

    .cid-t28tcxvUwR .logo-wrap:after {
        content: none;
    }
}

.cid-t28tcxvUwR H3 {
    color: #555555;
}

.cid-t2dDf4jxGi {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2dDf4jxGi p {
        text-align: center;
    }

    .cid-t2dDf4jxGi .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2dDf4jxGi .btn-underline:hover {
        color: #505050;
    }

    .cid-t2dDf4jxGi .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2dDf4jxGi .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2dDf4jxGi .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2dDf4jxGi .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2dDf4jxGi .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2dDf4jxGi .logo-footer {
        line-height: normal;
    }

    .cid-t2dDf4jxGi .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2dDf4jxGi .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2dDf4jxGi .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2dDf4jxGi .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2j11OlQ4m {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2j11OlQ4m nav.navbar {
        position: fixed;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2j11OlQ4m .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2j11OlQ4m .dropdown-item:hover,
        .cid-t2j11OlQ4m .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2j11OlQ4m .dropdown-item:hover span {
                color: white;
            }

        .cid-t2j11OlQ4m .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2j11OlQ4m .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2j11OlQ4m .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2j11OlQ4m .nav-link {
        position: relative;
    }

    .cid-t2j11OlQ4m .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .container {
        flex-wrap: nowrap;
    }
}

.cid-t2j11OlQ4m .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2j11OlQ4m .dropdown-menu,
.cid-t2j11OlQ4m .navbar.opened {
    background: #ffffff !important;
}

.cid-t2j11OlQ4m .nav-item:focus,
.cid-t2j11OlQ4m .nav-link:focus {
    outline: none;
}

.cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2j11OlQ4m .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2j11OlQ4m .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2j11OlQ4m .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2j11OlQ4m .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2j11OlQ4m .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2j11OlQ4m .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2j11OlQ4m .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2j11OlQ4m .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2j11OlQ4m .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2j11OlQ4m .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2j11OlQ4m .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2j11OlQ4m .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2j11OlQ4m .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2j11OlQ4m .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2j11OlQ4m .dropdown-item.active,
.cid-t2j11OlQ4m .dropdown-item:active {
    background-color: transparent;
}

.cid-t2j11OlQ4m .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2j11OlQ4m .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2j11OlQ4m ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2j11OlQ4m .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2j11OlQ4m button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2j11OlQ4m button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2j11OlQ4m a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar {
        height: 70px;
    }

        .cid-t2j11OlQ4m .navbar.opened {
            height: auto;
        }

    .cid-t2j11OlQ4m .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-t2968IRDKQ {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/consultadoria-2000x908.jpeg");
}

    .cid-t2968IRDKQ h3 {
        color: #000000;
    }

    .cid-t2968IRDKQ h4 {
        color: #000000;
    }

    .cid-t2968IRDKQ .mbr-text,
    .cid-t2968IRDKQ .mbr-section-btn {
        color: #999999;
    }

    .cid-t2968IRDKQ img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-t2968IRDKQ H4 {
        color: #ffffff;
    }

    .cid-t2968IRDKQ H3 {
        color: #ffffff;
    }

.cid-t2968Jfw3o {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

    .cid-t2968Jfw3o .mbr-text,
    .cid-t2968Jfw3o .mbr-section-btn {
        color: #000000;
        text-align: center;
    }

@media (max-width: 991px) {
    .cid-t2968Jfw3o .mbr-section-title,
    .cid-t2968Jfw3o .mbr-section-btn,
    .cid-t2968Jfw3o .mbr-text {
        text-align: center;
    }
}

.cid-t2968Jfw3o .mbr-section-subtitle {
    color: #999999;
    letter-spacing: 6px;
}

.cid-t2968Jfw3o .mbr-section-title {
    color: #0086d6;
}

.cid-t2dDIL34IF {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #78be20;
}

    .cid-t2dDIL34IF h4 {
        color: #ffffff;
    }

.cid-t2968JxVs9 {
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t2968JxVs9 .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t2968JxVs9 .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t2968JxVs9 H2 {
        color: #e7272d;
    }

    .cid-t2968JxVs9 .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t2968JxVs9 .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t2968JxVs9 .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t2968JxVs9 .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t2968JxVs9 .col-lg-12 {
        overflow: hidden;
    }

    .cid-t2968JxVs9 H4 {
        color: #fbbe36;
    }

    .cid-t2968JxVs9 .mbr-text,
    .cid-t2968JxVs9 .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t2968JxVs9 .logo-wrap:before {
        content: none;
    }

    .cid-t2968JxVs9 .logo-wrap:after {
        content: none;
    }
}

.cid-t2968JxVs9 H3 {
    color: #555555;
}

.cid-t2dD16ntBF {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2dD16ntBF p {
        text-align: center;
    }

    .cid-t2dD16ntBF .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2dD16ntBF .btn-underline:hover {
        color: #505050;
    }

    .cid-t2dD16ntBF .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2dD16ntBF .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2dD16ntBF .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2dD16ntBF .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2dD16ntBF .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2dD16ntBF .logo-footer {
        line-height: normal;
    }

    .cid-t2dD16ntBF .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2dD16ntBF .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2dD16ntBF .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2dD16ntBF .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2j11OlQ4m {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2j11OlQ4m nav.navbar {
        position: fixed;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2j11OlQ4m .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2j11OlQ4m .dropdown-item:hover,
        .cid-t2j11OlQ4m .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2j11OlQ4m .dropdown-item:hover span {
                color: white;
            }

        .cid-t2j11OlQ4m .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2j11OlQ4m .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2j11OlQ4m .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2j11OlQ4m .nav-link {
        position: relative;
    }

    .cid-t2j11OlQ4m .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .container {
        flex-wrap: nowrap;
    }
}

.cid-t2j11OlQ4m .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2j11OlQ4m .dropdown-menu,
.cid-t2j11OlQ4m .navbar.opened {
    background: #ffffff !important;
}

.cid-t2j11OlQ4m .nav-item:focus,
.cid-t2j11OlQ4m .nav-link:focus {
    outline: none;
}

.cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2j11OlQ4m .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2j11OlQ4m .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2j11OlQ4m .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2j11OlQ4m .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2j11OlQ4m .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2j11OlQ4m .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2j11OlQ4m .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2j11OlQ4m .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2j11OlQ4m .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2j11OlQ4m .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2j11OlQ4m .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2j11OlQ4m .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2j11OlQ4m .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2j11OlQ4m .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2j11OlQ4m .dropdown-item.active,
.cid-t2j11OlQ4m .dropdown-item:active {
    background-color: transparent;
}

.cid-t2j11OlQ4m .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2j11OlQ4m .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2j11OlQ4m ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2j11OlQ4m .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2j11OlQ4m button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2j11OlQ4m button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2j11OlQ4m a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar {
        height: 70px;
    }

        .cid-t2j11OlQ4m .navbar.opened {
            height: auto;
        }

    .cid-t2j11OlQ4m .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-t2dx2a9Hu0 {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/working-business-lady-1-2000x1335.jpeg");
}

    .cid-t2dx2a9Hu0 h3 {
        color: #000000;
    }

    .cid-t2dx2a9Hu0 h4 {
        color: #000000;
    }

    .cid-t2dx2a9Hu0 .mbr-text,
    .cid-t2dx2a9Hu0 .mbr-section-btn {
        color: #999999;
    }

    .cid-t2dx2a9Hu0 img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-t2dx2a9Hu0 H4 {
        color: #ffffff;
    }

    .cid-t2dx2a9Hu0 H3 {
        color: #ffffff;
    }

.cid-t2dx2atIKl {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-t2dx2atIKl .mbr-text,
    .cid-t2dx2atIKl .mbr-section-btn {
        color: #000000;
        text-align: left;
    }

@media (max-width: 991px) {
    .cid-t2dx2atIKl .mbr-section-title,
    .cid-t2dx2atIKl .mbr-section-btn,
    .cid-t2dx2atIKl .mbr-text {
        text-align: center;
    }
}

.cid-t2dx2atIKl .mbr-section-subtitle {
    color: #999999;
    letter-spacing: 6px;
}

.cid-t2dx2atIKl .mbr-section-title {
    color: #0086d6;
}

.cid-t2dx2bbDxp {
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t2dx2bbDxp .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t2dx2bbDxp .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t2dx2bbDxp H2 {
        color: #e7272d;
    }

    .cid-t2dx2bbDxp .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t2dx2bbDxp .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t2dx2bbDxp .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t2dx2bbDxp .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t2dx2bbDxp .col-lg-12 {
        overflow: hidden;
    }

    .cid-t2dx2bbDxp H4 {
        color: #fbbe36;
    }

    .cid-t2dx2bbDxp .mbr-text,
    .cid-t2dx2bbDxp .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t2dx2bbDxp .logo-wrap:before {
        content: none;
    }

    .cid-t2dx2bbDxp .logo-wrap:after {
        content: none;
    }
}

.cid-t2dx2bbDxp H3 {
    color: #555555;
}

.cid-t2dCrlG0nY {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2dCrlG0nY p {
        text-align: center;
    }

    .cid-t2dCrlG0nY .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2dCrlG0nY .btn-underline:hover {
        color: #505050;
    }

    .cid-t2dCrlG0nY .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2dCrlG0nY .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2dCrlG0nY .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2dCrlG0nY .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2dCrlG0nY .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2dCrlG0nY .logo-footer {
        line-height: normal;
    }

    .cid-t2dCrlG0nY .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2dCrlG0nY .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2dCrlG0nY .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2dCrlG0nY .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2j11OlQ4m {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2j11OlQ4m nav.navbar {
        position: fixed;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2j11OlQ4m .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2j11OlQ4m .dropdown-item:hover,
        .cid-t2j11OlQ4m .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2j11OlQ4m .dropdown-item:hover span {
                color: white;
            }

        .cid-t2j11OlQ4m .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2j11OlQ4m .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2j11OlQ4m .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2j11OlQ4m .nav-link {
        position: relative;
    }

    .cid-t2j11OlQ4m .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .container {
        flex-wrap: nowrap;
    }
}

.cid-t2j11OlQ4m .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2j11OlQ4m .dropdown-menu,
.cid-t2j11OlQ4m .navbar.opened {
    background: #ffffff !important;
}

.cid-t2j11OlQ4m .nav-item:focus,
.cid-t2j11OlQ4m .nav-link:focus {
    outline: none;
}

.cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2j11OlQ4m .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2j11OlQ4m .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2j11OlQ4m .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2j11OlQ4m .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2j11OlQ4m .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2j11OlQ4m .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2j11OlQ4m .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2j11OlQ4m .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2j11OlQ4m .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2j11OlQ4m .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2j11OlQ4m .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2j11OlQ4m .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2j11OlQ4m .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2j11OlQ4m .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2j11OlQ4m .dropdown-item.active,
.cid-t2j11OlQ4m .dropdown-item:active {
    background-color: transparent;
}

.cid-t2j11OlQ4m .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2j11OlQ4m .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2j11OlQ4m ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2j11OlQ4m .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2j11OlQ4m button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2j11OlQ4m button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2j11OlQ4m a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar {
        height: 70px;
    }

        .cid-t2j11OlQ4m .navbar.opened {
            height: auto;
        }

    .cid-t2j11OlQ4m .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-t2dzc7ftkq {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/pexels-artem-podrez-6779716-2000x1333.jpg");
}

    .cid-t2dzc7ftkq h3 {
        color: #000000;
    }

    .cid-t2dzc7ftkq h4 {
        color: #000000;
    }

    .cid-t2dzc7ftkq .mbr-text,
    .cid-t2dzc7ftkq .mbr-section-btn {
        color: #999999;
    }

    .cid-t2dzc7ftkq img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-t2dzc7ftkq H4 {
        color: #ffffff;
    }

    .cid-t2dzc7ftkq H3 {
        color: #ffffff;
    }

.cid-t2dzc7yWE1 {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-t2dzc7yWE1 .mbr-text,
    .cid-t2dzc7yWE1 .mbr-section-btn {
        color: #000000;
        text-align: center;
    }

@media (max-width: 991px) {
    .cid-t2dzc7yWE1 .mbr-section-title,
    .cid-t2dzc7yWE1 .mbr-section-btn,
    .cid-t2dzc7yWE1 .mbr-text {
        text-align: center;
    }
}

.cid-t2dzc7yWE1 .mbr-section-subtitle {
    color: #999999;
    letter-spacing: 6px;
}

.cid-t2dzc7yWE1 .mbr-section-title {
    color: #0086d6;
}

.cid-t2dzm9d0SZ {
    padding-top: 0px;
    padding-bottom: 105px;
    background-color: #ffffff;
}

    .cid-t2dzm9d0SZ .mbr-iconfont {
        font-size: 4rem;
        color: #0086d6;
        min-width: 100px;
        margin-bottom: 2rem;
        display: block;
        background: -webkit-linear-gradient(#78be20, #78be20);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .cid-t2dzm9d0SZ .card-wrapper {
        background-color: #f7f7f7;
        padding: 1rem;
        transition: all 0.3s;
    }

        .cid-t2dzm9d0SZ .card-wrapper:hover {
            box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
        }

    .cid-t2dzm9d0SZ .card-box {
        border: 1px solid transparent;
        padding: 2rem 1rem;
        transition: all 0.3s;
    }

    .cid-t2dzm9d0SZ .card-title {
        position: relative;
        cursor: pointer;
        color: #000000;
    }

    .cid-t2dzm9d0SZ .card {
        overflow: visible;
    }

        .cid-t2dzm9d0SZ .card:hover {
            cursor: pointer;
        }

            .cid-t2dzm9d0SZ .card:hover .card-box {
                border: 1px solid #f3f3f3;
            }

    .cid-t2dzm9d0SZ .card-title,
    .cid-t2dzm9d0SZ .card-box {
        text-align: center;
        color: #0086d6;
    }

    .cid-t2dzm9d0SZ .card-text {
        color: #555555;
        text-align: center;
    }

    .cid-t2dzm9d0SZ .link {
        color: #0086d6;
        letter-spacing: 1px;
    }

@media (max-width: 992px) {
    .cid-t2dzm9d0SZ .card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-t2dzm9d0SZ .card-box {
        border: 1px solid #f3f3f3;
    }
}

.cid-t2dzm9d0SZ .main-subtitle {
    color: #232323;
}

.cid-t2dzm9d0SZ .main-title {
    color: #232323;
}

.cid-t2dDyx0llB {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #78be20;
}

    .cid-t2dDyx0llB h4 {
        color: #ffffff;
    }

.cid-t2dzc7M4yU {
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t2dzc7M4yU .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t2dzc7M4yU .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t2dzc7M4yU H2 {
        color: #e7272d;
    }

    .cid-t2dzc7M4yU .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t2dzc7M4yU .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t2dzc7M4yU .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t2dzc7M4yU .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t2dzc7M4yU .col-lg-12 {
        overflow: hidden;
    }

    .cid-t2dzc7M4yU H4 {
        color: #fbbe36;
    }

    .cid-t2dzc7M4yU .mbr-text,
    .cid-t2dzc7M4yU .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t2dzc7M4yU .logo-wrap:before {
        content: none;
    }

    .cid-t2dzc7M4yU .logo-wrap:after {
        content: none;
    }
}

.cid-t2dzc7M4yU H3 {
    color: #555555;
}

.cid-t2dCPceVGI {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2dCPceVGI p {
        text-align: center;
    }

    .cid-t2dCPceVGI .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2dCPceVGI .btn-underline:hover {
        color: #505050;
    }

    .cid-t2dCPceVGI .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2dCPceVGI .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2dCPceVGI .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2dCPceVGI .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2dCPceVGI .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2dCPceVGI .logo-footer {
        line-height: normal;
    }

    .cid-t2dCPceVGI .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2dCPceVGI .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2dCPceVGI .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2dCPceVGI .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2j11OlQ4m {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2j11OlQ4m nav.navbar {
        position: fixed;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2j11OlQ4m .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2j11OlQ4m .dropdown-item:hover,
        .cid-t2j11OlQ4m .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2j11OlQ4m .dropdown-item:hover span {
                color: white;
            }

        .cid-t2j11OlQ4m .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2j11OlQ4m .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2j11OlQ4m .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

@media(max-width:1150px) and (min-width:992px) {
    .cid-t2j11OlQ4m .nav-dropdown .link {
        margin: 0.667em 0.70em !important;
    }
}


.cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-t2j11OlQ4m .nav-link {
    position: relative;
}

.cid-t2j11OlQ4m .container {
    display: flex;
    margin: auto;
}

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .container {
        flex-wrap: nowrap;
    }
}

.cid-t2j11OlQ4m .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2j11OlQ4m .dropdown-menu,
.cid-t2j11OlQ4m .navbar.opened {
    background: #ffffff !important;
}

.cid-t2j11OlQ4m .nav-item:focus,
.cid-t2j11OlQ4m .nav-link:focus {
    outline: none;
}

.cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2j11OlQ4m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2j11OlQ4m .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2j11OlQ4m .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2j11OlQ4m .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2j11OlQ4m .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2j11OlQ4m .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2j11OlQ4m .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2j11OlQ4m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2j11OlQ4m .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2j11OlQ4m .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2j11OlQ4m .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2j11OlQ4m .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2j11OlQ4m .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2j11OlQ4m .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2j11OlQ4m .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2j11OlQ4m .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2j11OlQ4m .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2j11OlQ4m .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-logo img {
        height: 3.5rem !important;
    }

@media(max-width:991px) {
    .cid-t2j11OlQ4m .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }
}

.cid-t2j11OlQ4m .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2j11OlQ4m .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2j11OlQ4m .dropdown-item.active,
.cid-t2j11OlQ4m .dropdown-item:active {
    background-color: transparent;
}

.cid-t2j11OlQ4m .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2j11OlQ4m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2j11OlQ4m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2j11OlQ4m .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2j11OlQ4m ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2j11OlQ4m .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2j11OlQ4m button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2j11OlQ4m button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2j11OlQ4m button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2j11OlQ4m nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2j11OlQ4m .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2j11OlQ4m a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2j11OlQ4m .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-t2j11OlQ4m .navbar {
        height: 70px;
    }

        .cid-t2j11OlQ4m .navbar.opened {
            height: auto;
        }

    .cid-t2j11OlQ4m .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-t2IfZkYWGr {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/pexels-photo-5833756-1880x1254.jpg");
}

    .cid-t2IfZkYWGr h3 {
        color: #000000;
    }

    .cid-t2IfZkYWGr h4 {
        color: #000000;
    }

    .cid-t2IfZkYWGr .mbr-text,
    .cid-t2IfZkYWGr .mbr-section-btn {
        color: #999999;
    }

    .cid-t2IfZkYWGr img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-t2IfZkYWGr H4 {
        color: #ffffff;
    }

    .cid-t2IfZkYWGr H3 {
        color: #ffffff;
    }

.cid-t2IfZlr4gn {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

    .cid-t2IfZlr4gn img {
        border-radius: 0px;
    }

    .cid-t2IfZlr4gn .row {
        justify-content: center;
    }

    .cid-t2IfZlr4gn .mbr-section-title {
        margin-top: 24px;
        text-align: left;
        color: #000000;
    }

        .cid-t2IfZlr4gn .mbr-section-title DIV {
            text-align: left;
        }

.cid-t2IfZlCIpD {
    padding-top: 75px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t2IfZlCIpD .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t2IfZlCIpD .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t2IfZlCIpD H2 {
        color: #e7272d;
    }

    .cid-t2IfZlCIpD .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t2IfZlCIpD .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t2IfZlCIpD .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t2IfZlCIpD .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t2IfZlCIpD .col-lg-12 {
        overflow: hidden;
    }

    .cid-t2IfZlCIpD H4 {
        color: #fbbe36;
    }

    .cid-t2IfZlCIpD .mbr-text,
    .cid-t2IfZlCIpD .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t2IfZlCIpD .logo-wrap:before {
        content: none;
    }

    .cid-t2IfZlCIpD .logo-wrap:after {
        content: none;
    }
}

.cid-t2IfZlCIpD H3 {
    color: #555555;
}

.cid-t2IfZlVPGs {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2IfZlVPGs p {
        text-align: center;
    }

    .cid-t2IfZlVPGs .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2IfZlVPGs .btn-underline:hover {
        color: #505050;
    }

    .cid-t2IfZlVPGs .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2IfZlVPGs .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2IfZlVPGs .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2IfZlVPGs .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2IfZlVPGs .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2IfZlVPGs .logo-footer {
        line-height: normal;
    }

    .cid-t2IfZlVPGs .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2IfZlVPGs .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2IfZlVPGs .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2IfZlVPGs .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2IfZmcXlh {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2IfZmcXlh nav.navbar {
        position: fixed;
    }

    .cid-t2IfZmcXlh .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-t2IfZmcXlh .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2IfZmcXlh .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2IfZmcXlh .dropdown-item:hover,
        .cid-t2IfZmcXlh .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2IfZmcXlh .dropdown-item:hover span {
                color: white;
            }

        .cid-t2IfZmcXlh .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2IfZmcXlh .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2IfZmcXlh .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-t2IfZmcXlh .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2IfZmcXlh .nav-link {
        position: relative;
    }

    .cid-t2IfZmcXlh .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2IfZmcXlh .container {
        flex-wrap: nowrap;
    }
}

.cid-t2IfZmcXlh .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2IfZmcXlh .dropdown-menu,
.cid-t2IfZmcXlh .navbar.opened {
    background: #ffffff !important;
}

.cid-t2IfZmcXlh .nav-item:focus,
.cid-t2IfZmcXlh .nav-link:focus {
    outline: none;
}

.cid-t2IfZmcXlh .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2IfZmcXlh .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2IfZmcXlh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2IfZmcXlh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2IfZmcXlh .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2IfZmcXlh .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2IfZmcXlh .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-t2IfZmcXlh .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2IfZmcXlh .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2IfZmcXlh .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2IfZmcXlh .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2IfZmcXlh .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2IfZmcXlh .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2IfZmcXlh .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2IfZmcXlh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2IfZmcXlh .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2IfZmcXlh .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2IfZmcXlh .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-t2IfZmcXlh .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2IfZmcXlh .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2IfZmcXlh .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2IfZmcXlh .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2IfZmcXlh .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2IfZmcXlh .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2IfZmcXlh .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2IfZmcXlh .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-t2IfZmcXlh .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2IfZmcXlh .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2IfZmcXlh .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2IfZmcXlh .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2IfZmcXlh .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2IfZmcXlh .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2IfZmcXlh .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2IfZmcXlh .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2IfZmcXlh .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2IfZmcXlh .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-t2IfZmcXlh .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2IfZmcXlh .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2IfZmcXlh .dropdown-item.active,
.cid-t2IfZmcXlh .dropdown-item:active {
    background-color: transparent;
}

.cid-t2IfZmcXlh .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2IfZmcXlh .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2IfZmcXlh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2IfZmcXlh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2IfZmcXlh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2IfZmcXlh .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2IfZmcXlh ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2IfZmcXlh .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2IfZmcXlh button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2IfZmcXlh button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2IfZmcXlh button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2IfZmcXlh button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2IfZmcXlh button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2IfZmcXlh button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2IfZmcXlh nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2IfZmcXlh nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2IfZmcXlh nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2IfZmcXlh nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2IfZmcXlh .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2IfZmcXlh a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2IfZmcXlh .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-t2IfZmcXlh .navbar {
        height: 70px;
    }

        .cid-t2IfZmcXlh .navbar.opened {
            height: auto;
        }

    .cid-t2IfZmcXlh .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-t2qrweKgnV {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/pexels-photo-5833756-1880x1254.jpg");
}

    .cid-t2qrweKgnV h3 {
        color: #000000;
    }

    .cid-t2qrweKgnV h4 {
        color: #000000;
    }

    .cid-t2qrweKgnV .mbr-text,
    .cid-t2qrweKgnV .mbr-section-btn {
        color: #999999;
    }

    .cid-t2qrweKgnV img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-t2qrweKgnV H4 {
        color: #ffffff;
    }

    .cid-t2qrweKgnV H3 {
        color: #ffffff;
    }

.cid-t2IeDpo2U6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

    .cid-t2IeDpo2U6 img {
        border-radius: 0px;
    }

    .cid-t2IeDpo2U6 .row {
        justify-content: center;
    }

    .cid-t2IeDpo2U6 .mbr-section-title {
        margin-top: 24px;
        text-align: left;
        color: #000000;
    }

        .cid-t2IeDpo2U6 .mbr-section-title DIV {
            text-align: left;
        }

.cid-t2qrwg7XIc {
    padding-top: 75px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t2qrwg7XIc .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t2qrwg7XIc .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t2qrwg7XIc H2 {
        color: #e7272d;
    }

    .cid-t2qrwg7XIc .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t2qrwg7XIc .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t2qrwg7XIc .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t2qrwg7XIc .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t2qrwg7XIc .col-lg-12 {
        overflow: hidden;
    }

    .cid-t2qrwg7XIc H4 {
        color: #fbbe36;
    }

    .cid-t2qrwg7XIc .mbr-text,
    .cid-t2qrwg7XIc .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t2qrwg7XIc .logo-wrap:before {
        content: none;
    }

    .cid-t2qrwg7XIc .logo-wrap:after {
        content: none;
    }
}

.cid-t2qrwg7XIc H3 {
    color: #555555;
}

.cid-t2qrwglWqK {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2qrwglWqK p {
        text-align: center;
    }

    .cid-t2qrwglWqK .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2qrwglWqK .btn-underline:hover {
        color: #505050;
    }

    .cid-t2qrwglWqK .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2qrwglWqK .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2qrwglWqK .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2qrwglWqK .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2qrwglWqK .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2qrwglWqK .logo-footer {
        line-height: normal;
    }

    .cid-t2qrwglWqK .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2qrwglWqK .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2qrwglWqK .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2qrwglWqK .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2qrwgAcaz {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2qrwgAcaz nav.navbar {
        position: fixed;
    }

    .cid-t2qrwgAcaz .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-t2qrwgAcaz .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2qrwgAcaz .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2qrwgAcaz .dropdown-item:hover,
        .cid-t2qrwgAcaz .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2qrwgAcaz .dropdown-item:hover span {
                color: white;
            }

        .cid-t2qrwgAcaz .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2qrwgAcaz .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2qrwgAcaz .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-t2qrwgAcaz .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2qrwgAcaz .nav-link {
        position: relative;
    }

    .cid-t2qrwgAcaz .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2qrwgAcaz .container {
        flex-wrap: nowrap;
    }
}

.cid-t2qrwgAcaz .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2qrwgAcaz .dropdown-menu,
.cid-t2qrwgAcaz .navbar.opened {
    background: #ffffff !important;
}

.cid-t2qrwgAcaz .nav-item:focus,
.cid-t2qrwgAcaz .nav-link:focus {
    outline: none;
}

.cid-t2qrwgAcaz .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2qrwgAcaz .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2qrwgAcaz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2qrwgAcaz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2qrwgAcaz .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2qrwgAcaz .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2qrwgAcaz .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-t2qrwgAcaz .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2qrwgAcaz .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2qrwgAcaz .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2qrwgAcaz .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2qrwgAcaz .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2qrwgAcaz .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2qrwgAcaz .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2qrwgAcaz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2qrwgAcaz .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2qrwgAcaz .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2qrwgAcaz .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-t2qrwgAcaz .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2qrwgAcaz .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2qrwgAcaz .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2qrwgAcaz .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2qrwgAcaz .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2qrwgAcaz .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2qrwgAcaz .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2qrwgAcaz .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-t2qrwgAcaz .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2qrwgAcaz .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2qrwgAcaz .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2qrwgAcaz .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2qrwgAcaz .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2qrwgAcaz .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2qrwgAcaz .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2qrwgAcaz .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2qrwgAcaz .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2qrwgAcaz .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-t2qrwgAcaz .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2qrwgAcaz .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2qrwgAcaz .dropdown-item.active,
.cid-t2qrwgAcaz .dropdown-item:active {
    background-color: transparent;
}

.cid-t2qrwgAcaz .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2qrwgAcaz .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2qrwgAcaz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2qrwgAcaz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2qrwgAcaz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2qrwgAcaz .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2qrwgAcaz ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2qrwgAcaz .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2qrwgAcaz button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2qrwgAcaz button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2qrwgAcaz button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2qrwgAcaz button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2qrwgAcaz button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2qrwgAcaz button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2qrwgAcaz nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2qrwgAcaz nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2qrwgAcaz nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2qrwgAcaz nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2qrwgAcaz .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2qrwgAcaz a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2qrwgAcaz .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-t2qrwgAcaz .navbar {
        height: 70px;
    }

        .cid-t2qrwgAcaz .navbar.opened {
            height: auto;
        }

    .cid-t2qrwgAcaz .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-t2IgkZXL3x {
    padding-top: 135px;
    padding-bottom: 60px;
    background-image: url("../../../assets/images/pexels-photo-5833756-1880x1254.jpg");
}

    .cid-t2IgkZXL3x h3 {
        color: #000000;
    }

    .cid-t2IgkZXL3x h4 {
        color: #000000;
    }

    .cid-t2IgkZXL3x .mbr-text,
    .cid-t2IgkZXL3x .mbr-section-btn {
        color: #999999;
    }

    .cid-t2IgkZXL3x img {
        width: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-t2IgkZXL3x H4 {
        color: #ffffff;
    }

    .cid-t2IgkZXL3x H3 {
        color: #ffffff;
    }

.cid-t2Igl0mfnZ {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

    .cid-t2Igl0mfnZ img {
        border-radius: 0px;
    }

    .cid-t2Igl0mfnZ .row {
        justify-content: center;
    }

    .cid-t2Igl0mfnZ .mbr-section-title {
        margin-top: 24px;
        text-align: left;
        color: #000000;
    }

        .cid-t2Igl0mfnZ .mbr-section-title DIV {
            text-align: left;
        }

.cid-t2Igl0F3X0 {
    padding-top: 75px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-t2Igl0F3X0 .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-t2Igl0F3X0 .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-t2Igl0F3X0 H2 {
        color: #e7272d;
    }

    .cid-t2Igl0F3X0 .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-t2Igl0F3X0 .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-t2Igl0F3X0 .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-t2Igl0F3X0 .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-t2Igl0F3X0 .col-lg-12 {
        overflow: hidden;
    }

    .cid-t2Igl0F3X0 H4 {
        color: #fbbe36;
    }

    .cid-t2Igl0F3X0 .mbr-text,
    .cid-t2Igl0F3X0 .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-t2Igl0F3X0 .logo-wrap:before {
        content: none;
    }

    .cid-t2Igl0F3X0 .logo-wrap:after {
        content: none;
    }
}

.cid-t2Igl0F3X0 H3 {
    color: #555555;
}

.cid-t2Igl0WSrE {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-t2Igl0WSrE p {
        text-align: center;
    }

    .cid-t2Igl0WSrE .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-t2Igl0WSrE .btn-underline:hover {
        color: #505050;
    }

    .cid-t2Igl0WSrE .btn-underline:before {
        background-color: #505050;
    }

    .cid-t2Igl0WSrE .social-list a:focus {
        text-decoration: none;
    }

    .cid-t2Igl0WSrE .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-t2Igl0WSrE .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-t2Igl0WSrE .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-t2Igl0WSrE .logo-footer {
        line-height: normal;
    }

    .cid-t2Igl0WSrE .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-t2Igl0WSrE .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-t2Igl0WSrE .mbr-section-btn {
        font-size: 16px;
    }

        .cid-t2Igl0WSrE .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-t2Igl1d8wm {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-t2Igl1d8wm nav.navbar {
        position: fixed;
    }

    .cid-t2Igl1d8wm .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-t2Igl1d8wm .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-t2Igl1d8wm .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-t2Igl1d8wm .dropdown-item:hover,
        .cid-t2Igl1d8wm .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-t2Igl1d8wm .dropdown-item:hover span {
                color: white;
            }

        .cid-t2Igl1d8wm .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-t2Igl1d8wm .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-t2Igl1d8wm .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-t2Igl1d8wm .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-t2Igl1d8wm .nav-link {
        position: relative;
    }

    .cid-t2Igl1d8wm .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-t2Igl1d8wm .container {
        flex-wrap: nowrap;
    }
}

.cid-t2Igl1d8wm .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-t2Igl1d8wm .dropdown-menu,
.cid-t2Igl1d8wm .navbar.opened {
    background: #ffffff !important;
}

.cid-t2Igl1d8wm .nav-item:focus,
.cid-t2Igl1d8wm .nav-link:focus {
    outline: none;
}

.cid-t2Igl1d8wm .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-t2Igl1d8wm .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-t2Igl1d8wm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-t2Igl1d8wm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-t2Igl1d8wm .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-t2Igl1d8wm .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-t2Igl1d8wm .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-t2Igl1d8wm .navbar.opened {
        transition: all 0.3s;
    }

    .cid-t2Igl1d8wm .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-t2Igl1d8wm .navbar .navbar-logo img {
        width: auto;
    }

    .cid-t2Igl1d8wm .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-t2Igl1d8wm .navbar.collapsed {
        justify-content: center;
    }

        .cid-t2Igl1d8wm .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-t2Igl1d8wm .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-t2Igl1d8wm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-t2Igl1d8wm .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-t2Igl1d8wm .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-t2Igl1d8wm .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-t2Igl1d8wm .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-t2Igl1d8wm .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-t2Igl1d8wm .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-t2Igl1d8wm .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-t2Igl1d8wm .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-t2Igl1d8wm .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-t2Igl1d8wm .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-t2Igl1d8wm .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-t2Igl1d8wm .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-t2Igl1d8wm .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-t2Igl1d8wm .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-t2Igl1d8wm .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-t2Igl1d8wm .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-t2Igl1d8wm .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-t2Igl1d8wm .navbar.navbar-short {
    min-height: 60px;
}

    .cid-t2Igl1d8wm .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-t2Igl1d8wm .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-t2Igl1d8wm .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-t2Igl1d8wm .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-t2Igl1d8wm .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-t2Igl1d8wm .dropdown-item.active,
.cid-t2Igl1d8wm .dropdown-item:active {
    background-color: transparent;
}

.cid-t2Igl1d8wm .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-t2Igl1d8wm .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-t2Igl1d8wm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-t2Igl1d8wm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-t2Igl1d8wm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-t2Igl1d8wm .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-t2Igl1d8wm ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-t2Igl1d8wm .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-t2Igl1d8wm button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-t2Igl1d8wm button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-t2Igl1d8wm button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-t2Igl1d8wm button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2Igl1d8wm button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-t2Igl1d8wm button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-t2Igl1d8wm nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2Igl1d8wm nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-t2Igl1d8wm nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-t2Igl1d8wm nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-t2Igl1d8wm .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-t2Igl1d8wm a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-t2Igl1d8wm .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-t2Igl1d8wm .navbar {
        height: 70px;
    }

        .cid-t2Igl1d8wm .navbar.opened {
            height: auto;
        }

    .cid-t2Igl1d8wm .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-tkNtmO4jji {
    background-color: #ffffff;
}

    .cid-tkNtmO4jji .mbr-text,
    .cid-tkNtmO4jji .mbr-section-btn {
        color: #232323;
    }

    .cid-tkNtmO4jji a.btn {
        height: 100%;
        margin: 0;
    }

    .cid-tkNtmO4jji .mbr-section-btn {
        display: flex;
        margin-bottom: 1.2rem;
        width: 100%;
    }

        .cid-tkNtmO4jji .mbr-section-btn .btn {
            width: 100%;
        }

@media (max-width: 991px) {
    .cid-tkNtmO4jji .image-wrapper {
        margin-bottom: 2rem;
    }

    .cid-tkNtmO4jji .content-wrapper {
        flex-direction: column-reverse;
    }
}

.cid-tkNtmO4jji .justify-content-center {
    align-items: center;
}

.cid-tkNtmO4jji .mbr-section-title {
    color: #0086d6;
}

.cid-tkNtmO4jji .mbr-text {
    color: #6c7577;
}

.cid-tkNtmO4jji .btn {
    font-weight: 500;
}

.cid-tkNqcCqF8i {
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-tkNqcCqF8i .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-tkNqcCqF8i .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-tkNqcCqF8i H2 {
        color: #e7272d;
    }

    .cid-tkNqcCqF8i .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-tkNqcCqF8i .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-tkNqcCqF8i .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-tkNqcCqF8i .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-tkNqcCqF8i .col-lg-12 {
        overflow: hidden;
    }

    .cid-tkNqcCqF8i H4 {
        color: #fbbe36;
    }

    .cid-tkNqcCqF8i .mbr-text,
    .cid-tkNqcCqF8i .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-tkNqcCqF8i .logo-wrap:before {
        content: none;
    }

    .cid-tkNqcCqF8i .logo-wrap:after {
        content: none;
    }
}

.cid-tkNqcCqF8i H3 {
    color: #555555;
}

.cid-tkNqcCGiPa {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-tkNqcCGiPa p {
        text-align: center;
    }

    .cid-tkNqcCGiPa .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-tkNqcCGiPa .btn-underline:hover {
        color: #505050;
    }

    .cid-tkNqcCGiPa .btn-underline:before {
        background-color: #505050;
    }

    .cid-tkNqcCGiPa .social-list a:focus {
        text-decoration: none;
    }

    .cid-tkNqcCGiPa .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-tkNqcCGiPa .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-tkNqcCGiPa .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-tkNqcCGiPa .logo-footer {
        line-height: normal;
    }

    .cid-tkNqcCGiPa .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-tkNqcCGiPa .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-tkNqcCGiPa .mbr-section-btn {
        font-size: 16px;
    }

        .cid-tkNqcCGiPa .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-tkNqcCWD7J {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-tkNqcCWD7J nav.navbar {
        position: fixed;
    }

    .cid-tkNqcCWD7J .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-tkNqcCWD7J .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-tkNqcCWD7J .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-tkNqcCWD7J .dropdown-item:hover,
        .cid-tkNqcCWD7J .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-tkNqcCWD7J .dropdown-item:hover span {
                color: white;
            }

        .cid-tkNqcCWD7J .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-tkNqcCWD7J .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-tkNqcCWD7J .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-tkNqcCWD7J .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-tkNqcCWD7J .nav-link {
        position: relative;
    }

    .cid-tkNqcCWD7J .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-tkNqcCWD7J .container {
        flex-wrap: nowrap;
    }
}

.cid-tkNqcCWD7J .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-tkNqcCWD7J .dropdown-menu,
.cid-tkNqcCWD7J .navbar.opened {
    background: #ffffff !important;
}

.cid-tkNqcCWD7J .nav-item:focus,
.cid-tkNqcCWD7J .nav-link:focus {
    outline: none;
}

.cid-tkNqcCWD7J .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-tkNqcCWD7J .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-tkNqcCWD7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-tkNqcCWD7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-tkNqcCWD7J .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-tkNqcCWD7J .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-tkNqcCWD7J .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-tkNqcCWD7J .navbar.opened {
        transition: all 0.3s;
    }

    .cid-tkNqcCWD7J .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-tkNqcCWD7J .navbar .navbar-logo img {
        width: auto;
    }

    .cid-tkNqcCWD7J .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-tkNqcCWD7J .navbar.collapsed {
        justify-content: center;
    }

        .cid-tkNqcCWD7J .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-tkNqcCWD7J .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-tkNqcCWD7J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-tkNqcCWD7J .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-tkNqcCWD7J .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-tkNqcCWD7J .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-tkNqcCWD7J .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-tkNqcCWD7J .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-tkNqcCWD7J .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-tkNqcCWD7J .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-tkNqcCWD7J .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-tkNqcCWD7J .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-tkNqcCWD7J .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-tkNqcCWD7J .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-tkNqcCWD7J .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-tkNqcCWD7J .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-tkNqcCWD7J .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tkNqcCWD7J .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tkNqcCWD7J .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-tkNqcCWD7J .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-tkNqcCWD7J .navbar.navbar-short {
    min-height: 60px;
}

    .cid-tkNqcCWD7J .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-tkNqcCWD7J .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-tkNqcCWD7J .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-tkNqcCWD7J .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-tkNqcCWD7J .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-tkNqcCWD7J .dropdown-item.active,
.cid-tkNqcCWD7J .dropdown-item:active {
    background-color: transparent;
}

.cid-tkNqcCWD7J .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-tkNqcCWD7J .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-tkNqcCWD7J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-tkNqcCWD7J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-tkNqcCWD7J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-tkNqcCWD7J .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-tkNqcCWD7J ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tkNqcCWD7J .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tkNqcCWD7J button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-tkNqcCWD7J button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-tkNqcCWD7J button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-tkNqcCWD7J button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-tkNqcCWD7J button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-tkNqcCWD7J button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-tkNqcCWD7J nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-tkNqcCWD7J nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tkNqcCWD7J nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-tkNqcCWD7J nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-tkNqcCWD7J .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-tkNqcCWD7J a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-tkNqcCWD7J .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-tkNqcCWD7J .navbar {
        height: 70px;
    }

        .cid-tkNqcCWD7J .navbar.opened {
            height: auto;
        }

    .cid-tkNqcCWD7J .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-tkNGTiC7QH {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-tkNGTiC7QH .mbr-section-title {
        color: #242424;
        text-align: center;
    }

    .cid-tkNGTiC7QH .mbr-title-addition {
        color: #000000;
        align-self: flex-end;
        margin-bottom: 20px;
    }

        .cid-tkNGTiC7QH .mbr-title-addition span {
            position: relative;
        }

            .cid-tkNGTiC7QH .mbr-title-addition span svg {
                position: absolute;
                left: 0;
                bottom: -12px;
                width: 150%;
                height: 9px;
                display: none;
            }

@media (max-width: 959px) {
    .cid-tkNGTiC7QH .mbr-title-addition span svg {
        left: -12px;
    }
}

.cid-tkNGTiC7QH .mbr-title-addition span svg path {
    fill: #5fbb46;
}

.cid-tkNGTiC7QH .mbr-section-subtitle {
    color: #0086d6;
    text-align: center;
}

    .cid-tkNGTiC7QH .mbr-section-subtitle span {
        position: relative;
    }

        .cid-tkNGTiC7QH .mbr-section-subtitle span svg {
            position: absolute;
            right: -50px;
            bottom: 50px;
            transform: rotate(20deg);
            width: 68px;
            height: 62px;
        }

            .cid-tkNGTiC7QH .mbr-section-subtitle span svg path {
                fill: #1f1437;
            }

@media (max-width: 599px) {
    .cid-tkNGTiC7QH .mbr-section-subtitle span svg {
        display: none;
    }
}

.cid-tkNGTiC7QH .mbr-text {
    color: #1f1437;
    margin: 40px 0;
}

@media (max-width: 959px) {
    .cid-tkNGTiC7QH .mbr-section-btn {
        justify-content: center !important;
    }
}

.cid-tkNGTiC7QH .right-images {
    position: absolute;
    width: 65%;
    height: 100%;
    top: 0;
    right: 0;
    overflow: hidden;
}

@media (max-width: 959px) {
    .cid-tkNGTiC7QH .right-images {
        display: none;
    }
}

.cid-tkNGTiC7QH .animated-container {
    width: 150%;
    height: 200%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    transform: rotate(25deg);
}

.cid-tkNGTiC7QH .img {
    width: 270px;
    height: 200px;
    margin: 0.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.cid-tkNGTiC7QH .img1 {
    background-image: url("../../../assets/images/papaia-1000x961.png");
}

.cid-tkNGTiC7QH .img2 {
    background-image: url("../../../assets/images/papaia-1000x961.png");
}

.cid-tkNGTiC7QH .animated {
    animation: cooky 0.4s infinite linear;
    backface-visibility: hidden;
}

.cid-tkNGTiC7QH .bottom-images {
    display: none;
}

@media (max-width: 959px) {
    .cid-tkNGTiC7QH .bottom-images {
        display: block;
        position: absolute;
        width: 100%;
        height: 400px;
        left: 0;
        bottom: 0;
        overflow: hidden;
    }
}

@media (max-width: 690px) {
    .cid-tkNGTiC7QH .bottom-images {
        display: none;
    }
}

.cid-tkNGTiC7QH .wave-container {
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: -1px;
    overflow: hidden;
}

    .cid-tkNGTiC7QH .wave-container .wave {
        width: 5500px;
        position: relative;
        left: -3300px;
    }

        .cid-tkNGTiC7QH .wave-container .wave svg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: wavy 35s infinite linear;
            backface-visibility: hidden;
        }

            .cid-tkNGTiC7QH .wave-container .wave svg path {
                fill: #ffffff;
            }

@keyframes wavy {
    0% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
        animation-timing-function: linear;
    }

    100% {
        opacity: 1;
        transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
    }
}

@keyframes cooky {
    0% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
        animation-timing-function: linear;
    }

    25% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(5deg) scale(1, 1);
        animation-timing-function: linear;
    }

    50% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
        animation-timing-function: linear;
    }

    75% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(-5deg) scale(1, 1);
        animation-timing-function: linear;
    }

    100% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    }
}

.cid-tkNGTiC7QH .mbr-text,
.cid-tkNGTiC7QH .mbr-section-btn {
    color: #242424;
    text-align: center;
}

.cid-tkOgk99Nn7 {
    padding-top: 0px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-tkOgk99Nn7 h3 {
        color: #000000;
    }

    .cid-tkOgk99Nn7 h4 {
        color: #000000;
    }

    .cid-tkOgk99Nn7 .mbr-text,
    .cid-tkOgk99Nn7 .mbr-section-btn {
        color: #999999;
    }

    .cid-tkOgk99Nn7 img {
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-tkOgk99Nn7 H4 {
        color: #232323;
    }

    .cid-tkOgk99Nn7 H3 {
        color: #232323;
    }

    .cid-tkOgk99Nn7 .mbr-text,
    .cid-tkOgk99Nn7 .mbr-section-btn,
    .cid-tkOgk99Nn7 .col-lg-7 {
        color: #555555;
    }

.cid-tkNI0PBbLk {
    padding-top: 0px;
    padding-bottom: 135px;
    background-color: #ffffff;
}

    .cid-tkNI0PBbLk .mbr-iconfont {
        font-size: 4rem;
        color: #0086d6;
        min-width: 100px;
        margin-bottom: 2rem;
        display: block;
        background: -webkit-linear-gradient(#0086d6, #0086d6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .cid-tkNI0PBbLk .card-wrapper {
        background-color: #f7f7f7;
        padding: 1rem;
        transition: all 0.3s;
    }

        .cid-tkNI0PBbLk .card-wrapper:hover {
            box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
        }

    .cid-tkNI0PBbLk .card-box {
        border: 1px solid transparent;
        padding: 2rem 1rem;
        transition: all 0.3s;
    }

    .cid-tkNI0PBbLk .card-title {
        position: relative;
        cursor: pointer;
        color: #000000;
    }

    .cid-tkNI0PBbLk .card {
        overflow: visible;
    }

        .cid-tkNI0PBbLk .card:hover {
            cursor: pointer;
        }

            .cid-tkNI0PBbLk .card:hover .card-box {
                border: 1px solid #f3f3f3;
            }

    .cid-tkNI0PBbLk .card-title,
    .cid-tkNI0PBbLk .card-box {
        text-align: center;
        color: #232323;
    }

    .cid-tkNI0PBbLk .card-text {
        color: #555555;
        text-align: center;
    }

    .cid-tkNI0PBbLk .link {
        color: #0086d6;
        letter-spacing: 1px;
    }

@media (max-width: 992px) {
    .cid-tkNI0PBbLk .card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-tkNI0PBbLk .card-box {
        border: 1px solid #f3f3f3;
    }
}

.cid-tkNI0PBbLk .main-subtitle {
    color: #868686;
}

.cid-tkNI0PBbLk .main-title {
    color: #000000;
}

.cid-tkNLQdkvUk {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

    .cid-tkNLQdkvUk .card-wrapper {
        display: flex;
        align-items: center;
    }

@media (max-width: 991px) {
    .cid-tkNLQdkvUk .card-wrapper {
        margin-bottom: 2rem;
    }
}

.cid-tkNLQdkvUk .line {
    width: calc(100% - 2rem);
    background: currentColor;
    height: 2px;
    margin: auto;
    margin-top: 2rem;
}

.cid-tkNLQdkvUk .card-title {
    padding-right: 1rem;
    margin: 0;
}

.cid-tkNLQdkvUk .mbr-iconfont {
    font-size: 2rem;
    color: #ffffff;
    padding: 1rem;
    border-radius: 50%;
    background: #0086d6;
    margin-right: 1rem;
}

.cid-tkNLQdkvUk .mbr-flex {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .cid-tkNLQdkvUk .card-wrapper,
    .cid-tkNLQdkvUk .mbr-flex {
        flex-direction: column;
    }

    .cid-tkNLQdkvUk .mbr-iconfont {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .cid-tkNLQdkvUk h4 {
        padding: 0;
    }
}

.cid-tkNLQdkvUk .card-text {
    color: #000000;
}

.cid-tkNLQdkvUk .card-title,
.cid-tkNLQdkvUk .line {
    color: #242424;
}

.cid-tkNEwFrtj4 {
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-tkNEwFrtj4 .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-tkNEwFrtj4 .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-tkNEwFrtj4 H2 {
        color: #e7272d;
    }

    .cid-tkNEwFrtj4 .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-tkNEwFrtj4 .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-tkNEwFrtj4 .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-tkNEwFrtj4 .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-tkNEwFrtj4 .col-lg-12 {
        overflow: hidden;
    }

    .cid-tkNEwFrtj4 H4 {
        color: #fbbe36;
    }

    .cid-tkNEwFrtj4 .mbr-text,
    .cid-tkNEwFrtj4 .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-tkNEwFrtj4 .logo-wrap:before {
        content: none;
    }

    .cid-tkNEwFrtj4 .logo-wrap:after {
        content: none;
    }
}

.cid-tkNEwFrtj4 H3 {
    color: #555555;
}

.cid-tkNEwG0G4o {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-tkNEwG0G4o p {
        text-align: center;
    }

    .cid-tkNEwG0G4o .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-tkNEwG0G4o .btn-underline:hover {
        color: #505050;
    }

    .cid-tkNEwG0G4o .btn-underline:before {
        background-color: #505050;
    }

    .cid-tkNEwG0G4o .social-list a:focus {
        text-decoration: none;
    }

    .cid-tkNEwG0G4o .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-tkNEwG0G4o .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-tkNEwG0G4o .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-tkNEwG0G4o .logo-footer {
        line-height: normal;
    }

    .cid-tkNEwG0G4o .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-tkNEwG0G4o .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-tkNEwG0G4o .mbr-section-btn {
        font-size: 16px;
    }

        .cid-tkNEwG0G4o .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-tkNEwGAjyY {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-tkNEwGAjyY nav.navbar {
        position: fixed;
    }

    .cid-tkNEwGAjyY .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-tkNEwGAjyY .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-tkNEwGAjyY .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-tkNEwGAjyY .dropdown-item:hover,
        .cid-tkNEwGAjyY .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-tkNEwGAjyY .dropdown-item:hover span {
                color: white;
            }

        .cid-tkNEwGAjyY .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-tkNEwGAjyY .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-tkNEwGAjyY .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-tkNEwGAjyY .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-tkNEwGAjyY .nav-link {
        position: relative;
    }

    .cid-tkNEwGAjyY .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-tkNEwGAjyY .container {
        flex-wrap: nowrap;
    }
}

.cid-tkNEwGAjyY .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-tkNEwGAjyY .dropdown-menu,
.cid-tkNEwGAjyY .navbar.opened {
    background: #ffffff !important;
}

.cid-tkNEwGAjyY .nav-item:focus,
.cid-tkNEwGAjyY .nav-link:focus {
    outline: none;
}

.cid-tkNEwGAjyY .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-tkNEwGAjyY .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-tkNEwGAjyY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-tkNEwGAjyY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-tkNEwGAjyY .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-tkNEwGAjyY .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-tkNEwGAjyY .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-tkNEwGAjyY .navbar.opened {
        transition: all 0.3s;
    }

    .cid-tkNEwGAjyY .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-tkNEwGAjyY .navbar .navbar-logo img {
        width: auto;
    }

    .cid-tkNEwGAjyY .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-tkNEwGAjyY .navbar.collapsed {
        justify-content: center;
    }

        .cid-tkNEwGAjyY .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-tkNEwGAjyY .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-tkNEwGAjyY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-tkNEwGAjyY .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-tkNEwGAjyY .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-tkNEwGAjyY .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-tkNEwGAjyY .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-tkNEwGAjyY .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-tkNEwGAjyY .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-tkNEwGAjyY .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-tkNEwGAjyY .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-tkNEwGAjyY .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-tkNEwGAjyY .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-tkNEwGAjyY .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-tkNEwGAjyY .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-tkNEwGAjyY .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-tkNEwGAjyY .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tkNEwGAjyY .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tkNEwGAjyY .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-tkNEwGAjyY .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-tkNEwGAjyY .navbar.navbar-short {
    min-height: 60px;
}

    .cid-tkNEwGAjyY .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-tkNEwGAjyY .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-tkNEwGAjyY .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-tkNEwGAjyY .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-tkNEwGAjyY .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-tkNEwGAjyY .dropdown-item.active,
.cid-tkNEwGAjyY .dropdown-item:active {
    background-color: transparent;
}

.cid-tkNEwGAjyY .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-tkNEwGAjyY .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-tkNEwGAjyY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-tkNEwGAjyY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-tkNEwGAjyY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-tkNEwGAjyY .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-tkNEwGAjyY ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tkNEwGAjyY .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tkNEwGAjyY button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-tkNEwGAjyY button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-tkNEwGAjyY button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-tkNEwGAjyY button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-tkNEwGAjyY button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-tkNEwGAjyY button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-tkNEwGAjyY nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-tkNEwGAjyY nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tkNEwGAjyY nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-tkNEwGAjyY nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-tkNEwGAjyY .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-tkNEwGAjyY a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-tkNEwGAjyY .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-tkNEwGAjyY .navbar {
        height: 70px;
    }

        .cid-tkNEwGAjyY .navbar.opened {
            height: auto;
        }

    .cid-tkNEwGAjyY .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-tkNMJC3Y9U {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-tkNMJC3Y9U .mbr-section-title {
        color: #242424;
        text-align: center;
    }

    .cid-tkNMJC3Y9U .mbr-title-addition {
        color: #000000;
        align-self: flex-end;
        margin-bottom: 20px;
    }

        .cid-tkNMJC3Y9U .mbr-title-addition span {
            position: relative;
        }

            .cid-tkNMJC3Y9U .mbr-title-addition span svg {
                position: absolute;
                left: 0;
                bottom: -12px;
                width: 150%;
                height: 9px;
                display: none;
            }

@media (max-width: 959px) {
    .cid-tkNMJC3Y9U .mbr-title-addition span svg {
        left: -12px;
    }
}

.cid-tkNMJC3Y9U .mbr-title-addition span svg path {
    fill: #5fbb46;
}

.cid-tkNMJC3Y9U .mbr-section-subtitle {
    color: #0086d6;
    text-align: center;
}

    .cid-tkNMJC3Y9U .mbr-section-subtitle span {
        position: relative;
    }

        .cid-tkNMJC3Y9U .mbr-section-subtitle span svg {
            position: absolute;
            right: -50px;
            bottom: 50px;
            transform: rotate(20deg);
            width: 68px;
            height: 62px;
        }

            .cid-tkNMJC3Y9U .mbr-section-subtitle span svg path {
                fill: #1f1437;
            }

@media (max-width: 599px) {
    .cid-tkNMJC3Y9U .mbr-section-subtitle span svg {
        display: none;
    }
}

.cid-tkNMJC3Y9U .mbr-text {
    color: #1f1437;
    margin: 40px 0;
}

@media (max-width: 959px) {
    .cid-tkNMJC3Y9U .mbr-section-btn {
        justify-content: center !important;
    }
}

.cid-tkNMJC3Y9U .right-images {
    position: absolute;
    width: 65%;
    height: 100%;
    top: 0;
    right: 0;
    overflow: hidden;
}

@media (max-width: 959px) {
    .cid-tkNMJC3Y9U .right-images {
        display: none;
    }
}

.cid-tkNMJC3Y9U .animated-container {
    width: 150%;
    height: 200%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    transform: rotate(25deg);
}

.cid-tkNMJC3Y9U .img {
    width: 270px;
    height: 200px;
    margin: 0.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.cid-tkNMJC3Y9U .img1 {
    background-image: url("../../../assets/images/papaia-1000x961.png");
}

.cid-tkNMJC3Y9U .img2 {
    background-image: url("../../../assets/images/papaia-1000x961.png");
}

.cid-tkNMJC3Y9U .animated {
    animation: cooky 0.4s infinite linear;
    backface-visibility: hidden;
}

.cid-tkNMJC3Y9U .bottom-images {
    display: none;
}

@media (max-width: 959px) {
    .cid-tkNMJC3Y9U .bottom-images {
        display: block;
        position: absolute;
        width: 100%;
        height: 400px;
        left: 0;
        bottom: 0;
        overflow: hidden;
    }
}

@media (max-width: 690px) {
    .cid-tkNMJC3Y9U .bottom-images {
        display: none;
    }
}

.cid-tkNMJC3Y9U .wave-container {
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: -1px;
    overflow: hidden;
}

    .cid-tkNMJC3Y9U .wave-container .wave {
        width: 5500px;
        position: relative;
        left: -3300px;
    }

        .cid-tkNMJC3Y9U .wave-container .wave svg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: wavy 35s infinite linear;
            backface-visibility: hidden;
        }

            .cid-tkNMJC3Y9U .wave-container .wave svg path {
                fill: #ffffff;
            }

@keyframes wavy {
    0% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
        animation-timing-function: linear;
    }

    100% {
        opacity: 1;
        transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
    }
}

@keyframes cooky {
    0% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
        animation-timing-function: linear;
    }

    25% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(5deg) scale(1, 1);
        animation-timing-function: linear;
    }

    50% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
        animation-timing-function: linear;
    }

    75% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(-5deg) scale(1, 1);
        animation-timing-function: linear;
    }

    100% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    }
}

.cid-tkNMJC3Y9U .mbr-text,
.cid-tkNMJC3Y9U .mbr-section-btn {
    color: #242424;
    text-align: center;
}

.cid-tkOgWwR7EU {
    padding-top: 0px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-tkOgWwR7EU h3 {
        color: #000000;
    }

    .cid-tkOgWwR7EU h4 {
        color: #000000;
    }

    .cid-tkOgWwR7EU .mbr-text,
    .cid-tkOgWwR7EU .mbr-section-btn {
        color: #999999;
    }

    .cid-tkOgWwR7EU img {
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .cid-tkOgWwR7EU H4 {
        color: #232323;
    }

    .cid-tkOgWwR7EU H3 {
        color: #232323;
    }

    .cid-tkOgWwR7EU .mbr-text,
    .cid-tkOgWwR7EU .mbr-section-btn,
    .cid-tkOgWwR7EU .col-lg-7 {
        color: #555555;
    }

.cid-tkNO1tDXix {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fafafa;
}

    .cid-tkNO1tDXix .mbr-iconfont {
        font-size: 4rem;
        color: #0086d6;
        width: 100%;
        min-width: 100px;
        display: block;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;
        padding-bottom: 2rem;
    }

    .cid-tkNO1tDXix .card-title {
        cursor: pointer;
        color: #000000;
    }

    .cid-tkNO1tDXix .card:hover {
        cursor: pointer;
    }

        .cid-tkNO1tDXix .card:hover .card-title:before {
            width: 100%;
        }

        .cid-tkNO1tDXix .card:hover .mbr-iconfont {
            transform: translateY(-12px);
        }

    .cid-tkNO1tDXix .card-text {
        color: #242424;
    }

    .cid-tkNO1tDXix .card-title,
    .cid-tkNO1tDXix .card-wrapper {
        color: #0086d6;
    }

.cid-tkNRnC1nIw {
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #ffffff;
}

    .cid-tkNRnC1nIw .panel-body-wpapper {
        padding: 2.5rem 0;
    }

    .cid-tkNRnC1nIw .panel-body {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2rem 1rem 2rem 0;
        border-bottom: 1px solid #cfd5e1;
    }

    .cid-tkNRnC1nIw .card-img {
        width: 49px;
        height: 49px;
        background-color: #000000;
        border-radius: 50%;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
    }

    .cid-tkNRnC1nIw .icon-wrapper {
        height: 33px;
        width: 33px;
        border-radius: 100%;
        border: 2px solid #000000;
    }

    .cid-tkNRnC1nIw .arrow-group {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: right;
        color: #000000;
    }

        .cid-tkNRnC1nIw .arrow-group span {
            margin-right: 13.5px;
        }

    .cid-tkNRnC1nIw .wrap {
        display: flex;
    }

    .cid-tkNRnC1nIw .icon {
        min-width: 30px;
        height: 30px;
        border-radius: 100%;
        color: #000000 !important;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
        font-size: .7rem;
        font-weight: bold;
        transition: all 0.3s;
        transform: scaleY(-1);
    }

        .cid-tkNRnC1nIw .icon:before {
            content: "\e908" !important;
        }

    .cid-tkNRnC1nIw .panel-title.collapsed .icon {
        transform: scaleY(1) !important;
    }

    .cid-tkNRnC1nIw .mbr-section-title {
        color: #000000;
        text-align: left;
    }

    .cid-tkNRnC1nIw .card-header {
        padding: 2rem 0;
        border-bottom: 1px solid #cfd5e1;
    }

    .cid-tkNRnC1nIw .card .card-header a.panel-title {
        background-color: transparent !important;
    }

    .cid-tkNRnC1nIw .mbr-section-subtitle {
        color: #000000;
        text-align: left;
    }

    .cid-tkNRnC1nIw .accordion-content {
        -webkit-flex-basis: 100%;
        flex-basis: 100%;
    }

    .cid-tkNRnC1nIw .panel-group {
        width: 100%;
    }

    .cid-tkNRnC1nIw .card .card-header {
        background: none;
        border-radius: 0px;
    }

        .cid-tkNRnC1nIw .card .card-header a.panel-title {
            transition: all .3s;
            margin-bottom: 0;
            font-style: normal;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            text-decoration: none !important;
            margin-top: -1px;
            line-height: normal;
        }

            .cid-tkNRnC1nIw .card .card-header a.panel-title:hover {
                opacity: 0.75;
            }

            .cid-tkNRnC1nIw .card .card-header a.panel-title:focus {
                text-decoration: none !important;
            }

    .cid-tkNRnC1nIw .media-container-row .accordion-section {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

@media (max-width: 991px) {
    .cid-tkNRnC1nIw .media-container-row > div {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.cid-tkNRnC1nIw .header-article-text:hover {
    text-decoration: underline;
}

.cid-tkNRnC1nIw .panel-text {
    color: #000000;
    text-align: left;
}

.cid-tkNRnC1nIw .header-text,
.cid-tkNRnC1nIw .sign {
    color: #000000;
    text-align: left;
}

.cid-tkNRnC1nIw .header-article-text,
.cid-tkNRnC1nIw .sign {
    color: #000000;
    text-align: left;
}

.cid-tkNRnC1nIw .accordion > .card > .card-header {
    margin-bottom: 0 !important;
}

.cid-tkNRnC1nIw h4 {
    margin-bottom: 0;
}

.cid-tkNRnC1nIw .header-text {
    color: #0086d6;
}

.cid-tkNMJCWTPb {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

    .cid-tkNMJCWTPb .card-wrapper {
        display: flex;
        align-items: center;
    }

@media (max-width: 991px) {
    .cid-tkNMJCWTPb .card-wrapper {
        margin-bottom: 2rem;
    }
}

.cid-tkNMJCWTPb .line {
    width: calc(100% - 2rem);
    background: currentColor;
    height: 2px;
    margin: auto;
    margin-top: 2rem;
}

.cid-tkNMJCWTPb .card-title {
    padding-right: 1rem;
    margin: 0;
}

.cid-tkNMJCWTPb .mbr-iconfont {
    font-size: 2rem;
    color: #ffffff;
    padding: 1rem;
    border-radius: 50%;
    background: #0086d6;
    margin-right: 1rem;
}

.cid-tkNMJCWTPb .mbr-flex {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .cid-tkNMJCWTPb .card-wrapper,
    .cid-tkNMJCWTPb .mbr-flex {
        flex-direction: column;
    }

    .cid-tkNMJCWTPb .mbr-iconfont {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .cid-tkNMJCWTPb h4 {
        padding: 0;
    }
}

.cid-tkNMJCWTPb .card-text {
    color: #000000;
}

.cid-tkNMJCWTPb .card-title,
.cid-tkNMJCWTPb .line {
    color: #242424;
}

.cid-tkNMJDfnx7 {
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-tkNMJDfnx7 .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-tkNMJDfnx7 .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-tkNMJDfnx7 H2 {
        color: #e7272d;
    }

    .cid-tkNMJDfnx7 .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-tkNMJDfnx7 .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-tkNMJDfnx7 .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-tkNMJDfnx7 .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-tkNMJDfnx7 .col-lg-12 {
        overflow: hidden;
    }

    .cid-tkNMJDfnx7 H4 {
        color: #fbbe36;
    }

    .cid-tkNMJDfnx7 .mbr-text,
    .cid-tkNMJDfnx7 .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-tkNMJDfnx7 .logo-wrap:before {
        content: none;
    }

    .cid-tkNMJDfnx7 .logo-wrap:after {
        content: none;
    }
}

.cid-tkNMJDfnx7 H3 {
    color: #555555;
}

.cid-tkNMJDwoYe {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-tkNMJDwoYe p {
        text-align: center;
    }

    .cid-tkNMJDwoYe .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-tkNMJDwoYe .btn-underline:hover {
        color: #505050;
    }

    .cid-tkNMJDwoYe .btn-underline:before {
        background-color: #505050;
    }

    .cid-tkNMJDwoYe .social-list a:focus {
        text-decoration: none;
    }

    .cid-tkNMJDwoYe .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-tkNMJDwoYe .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-tkNMJDwoYe .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-tkNMJDwoYe .logo-footer {
        line-height: normal;
    }

    .cid-tkNMJDwoYe .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-tkNMJDwoYe .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-tkNMJDwoYe .mbr-section-btn {
        font-size: 16px;
    }

        .cid-tkNMJDwoYe .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-tkNMJDSlkK {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-tkNMJDSlkK nav.navbar {
        position: fixed;
    }

    .cid-tkNMJDSlkK .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-tkNMJDSlkK .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-tkNMJDSlkK .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-tkNMJDSlkK .dropdown-item:hover,
        .cid-tkNMJDSlkK .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-tkNMJDSlkK .dropdown-item:hover span {
                color: white;
            }

        .cid-tkNMJDSlkK .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-tkNMJDSlkK .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-tkNMJDSlkK .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-tkNMJDSlkK .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-tkNMJDSlkK .nav-link {
        position: relative;
    }

    .cid-tkNMJDSlkK .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-tkNMJDSlkK .container {
        flex-wrap: nowrap;
    }
}

.cid-tkNMJDSlkK .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-tkNMJDSlkK .dropdown-menu,
.cid-tkNMJDSlkK .navbar.opened {
    background: #ffffff !important;
}

.cid-tkNMJDSlkK .nav-item:focus,
.cid-tkNMJDSlkK .nav-link:focus {
    outline: none;
}

.cid-tkNMJDSlkK .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-tkNMJDSlkK .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-tkNMJDSlkK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-tkNMJDSlkK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-tkNMJDSlkK .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-tkNMJDSlkK .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-tkNMJDSlkK .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-tkNMJDSlkK .navbar.opened {
        transition: all 0.3s;
    }

    .cid-tkNMJDSlkK .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-tkNMJDSlkK .navbar .navbar-logo img {
        width: auto;
    }

    .cid-tkNMJDSlkK .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-tkNMJDSlkK .navbar.collapsed {
        justify-content: center;
    }

        .cid-tkNMJDSlkK .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-tkNMJDSlkK .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-tkNMJDSlkK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-tkNMJDSlkK .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-tkNMJDSlkK .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-tkNMJDSlkK .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-tkNMJDSlkK .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-tkNMJDSlkK .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-tkNMJDSlkK .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-tkNMJDSlkK .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-tkNMJDSlkK .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-tkNMJDSlkK .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-tkNMJDSlkK .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-tkNMJDSlkK .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-tkNMJDSlkK .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-tkNMJDSlkK .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-tkNMJDSlkK .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tkNMJDSlkK .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tkNMJDSlkK .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-tkNMJDSlkK .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-tkNMJDSlkK .navbar.navbar-short {
    min-height: 60px;
}

    .cid-tkNMJDSlkK .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-tkNMJDSlkK .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-tkNMJDSlkK .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-tkNMJDSlkK .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-tkNMJDSlkK .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-tkNMJDSlkK .dropdown-item.active,
.cid-tkNMJDSlkK .dropdown-item:active {
    background-color: transparent;
}

.cid-tkNMJDSlkK .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-tkNMJDSlkK .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-tkNMJDSlkK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-tkNMJDSlkK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-tkNMJDSlkK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-tkNMJDSlkK .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-tkNMJDSlkK ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tkNMJDSlkK .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tkNMJDSlkK button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-tkNMJDSlkK button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-tkNMJDSlkK button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-tkNMJDSlkK button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-tkNMJDSlkK button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-tkNMJDSlkK button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-tkNMJDSlkK nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-tkNMJDSlkK nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tkNMJDSlkK nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-tkNMJDSlkK nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-tkNMJDSlkK .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-tkNMJDSlkK a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-tkNMJDSlkK .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-tkNMJDSlkK .navbar {
        height: 70px;
    }

        .cid-tkNMJDSlkK .navbar.opened {
            height: auto;
        }

    .cid-tkNMJDSlkK .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-tDhlL6lWH4 {
    padding-top: 105px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-tDhlL6lWH4 h4 {
        color: #ffffff;
    }

    .cid-tDhlL6lWH4 H3 {
        color: #0086d6;
    }

    .cid-tDhlL6lWH4 .mbr-text,
    .cid-tDhlL6lWH4 .mbr-section-btn {
        color: #868686;
    }

.cid-tDhk2NQtG6 {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color: #ffffff;
}

    .cid-tDhk2NQtG6 .image-wrap img {
        width: 100%;
    }

@media (min-width: 992px) {
    .cid-tDhk2NQtG6 .image-wrap img {
        display: block;
        margin: auto;
        width: 50%;
    }
}

.cid-tDhk2NQtG6 .mbr-section-title {
    color: #0086d6;
}

.cid-tDhh6zXDw7 {
    padding-top: 75px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

    .cid-tDhh6zXDw7 .logo {
        max-width: 140px;
        width: 100%;
        margin: auto;
    }

    .cid-tDhh6zXDw7 .row {
        border-bottom: 0px solid #e5e5e5;
    }

    .cid-tDhh6zXDw7 H2 {
        color: #e7272d;
    }

    .cid-tDhh6zXDw7 .feedimg {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 2px;
    }

    .cid-tDhh6zXDw7 .logo-wrap {
        width: fit-content;
        margin: auto;
        position: relative;
    }

        .cid-tDhh6zXDw7 .logo-wrap:before {
            position: absolute;
            content: '';
            top: 50%;
            left: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

        .cid-tDhh6zXDw7 .logo-wrap:after {
            position: absolute;
            content: '';
            top: 50%;
            right: 180px;
            width: 999px;
            height: 1px;
            background: #e5e5e5;
        }

    .cid-tDhh6zXDw7 .col-lg-12 {
        overflow: hidden;
    }

    .cid-tDhh6zXDw7 H4 {
        color: #fbbe36;
    }

    .cid-tDhh6zXDw7 .mbr-text,
    .cid-tDhh6zXDw7 .mbr-section-btn {
        color: #cccccc;
    }

@media (max-width: 767px) {
    .cid-tDhh6zXDw7 .logo-wrap:before {
        content: none;
    }

    .cid-tDhh6zXDw7 .logo-wrap:after {
        content: none;
    }
}

.cid-tDhh6zXDw7 H3 {
    color: #555555;
}

.cid-tDhh6Agk74 {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
}

    .cid-tDhh6Agk74 p {
        text-align: center;
    }

    .cid-tDhh6Agk74 .mbr-iconfont-social {
        font-size: 1.5rem;
        color: #0086d6;
    }

    .cid-tDhh6Agk74 .btn-underline:hover {
        color: #505050;
    }

    .cid-tDhh6Agk74 .btn-underline:before {
        background-color: #505050;
    }

    .cid-tDhh6Agk74 .social-list a:focus {
        text-decoration: none;
    }

    .cid-tDhh6Agk74 .text-copyright {
        width: 100%;
        color: #999999;
    }

    .cid-tDhh6Agk74 .img-logo-footer {
        margin-right: 1rem;
        max-width: 5rem;
    }

    .cid-tDhh6Agk74 .text-logo-footer {
        display: inline-block;
        vertical-align: middle;
    }

    .cid-tDhh6Agk74 .logo-footer {
        line-height: normal;
    }

    .cid-tDhh6Agk74 .copyright {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

    .cid-tDhh6Agk74 .social-btns {
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-tDhh6Agk74 .mbr-section-btn {
        font-size: 16px;
    }

        .cid-tDhh6Agk74 .mbr-section-btn a {
            margin: 0 1rem 0.5rem;
        }

.cid-tDhh6AzzMI {
    z-index: 1000;
    width: 100%;
    position: relative;
    min-height: 60px;
}

    .cid-tDhh6AzzMI nav.navbar {
        position: fixed;
    }

    .cid-tDhh6AzzMI .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-tDhh6AzzMI .dropdown-menu {
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .cid-tDhh6AzzMI .dropdown-item {
        border-bottom: 1px solid #e6e6e6;
    }

        .cid-tDhh6AzzMI .dropdown-item:hover,
        .cid-tDhh6AzzMI .dropdown-item:focus {
            background: #0086d6 !important;
            color: white !important;
        }

            .cid-tDhh6AzzMI .dropdown-item:hover span {
                color: white;
            }

        .cid-tDhh6AzzMI .dropdown-item:first-child {
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
        }

        .cid-tDhh6AzzMI .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    .cid-tDhh6AzzMI .nav-dropdown .link {
        padding: 0 0.3em !important;
        margin: 0.667em 1em !important;
    }

        .cid-tDhh6AzzMI .nav-dropdown .link.dropdown-toggle::after {
            margin-left: 0.5rem;
            margin-top: 0.2rem;
        }

    .cid-tDhh6AzzMI .nav-link {
        position: relative;
    }

    .cid-tDhh6AzzMI .container {
        display: flex;
        margin: auto;
    }

@media (min-width: 992px) {
    .cid-tDhh6AzzMI .container {
        flex-wrap: nowrap;
    }
}

.cid-tDhh6AzzMI .iconfont-wrapper {
    color: #000000 !important;
    font-size: 1.5rem;
    padding-right: 0.5rem;
}

.cid-tDhh6AzzMI .dropdown-menu,
.cid-tDhh6AzzMI .navbar.opened {
    background: #ffffff !important;
}

.cid-tDhh6AzzMI .nav-item:focus,
.cid-tDhh6AzzMI .nav-link:focus {
    outline: none;
}

.cid-tDhh6AzzMI .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

    .cid-tDhh6AzzMI .dropdown .dropdown-menu .dropdown-item::after {
        right: 0.5rem;
    }

    .cid-tDhh6AzzMI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
        margin-right: 0.5rem;
        vertical-align: sub;
    }

        .cid-tDhh6AzzMI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
            display: inline-block;
            transform: scale(1, 1);
            transition: all 0.25s ease-in-out;
        }

.cid-tDhh6AzzMI .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-tDhh6AzzMI .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-tDhh6AzzMI .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-tDhh6AzzMI .navbar.opened {
        transition: all 0.3s;
    }

    .cid-tDhh6AzzMI .navbar .dropdown-item {
        padding: 0.5rem 1.8rem;
    }

    .cid-tDhh6AzzMI .navbar .navbar-logo img {
        width: auto;
    }

    .cid-tDhh6AzzMI .navbar .navbar-collapse {
        justify-content: flex-end;
        z-index: 1;
    }

    .cid-tDhh6AzzMI .navbar.collapsed {
        justify-content: center;
    }

        .cid-tDhh6AzzMI .navbar.collapsed .nav-item .nav-link::before {
            display: none;
        }

        .cid-tDhh6AzzMI .navbar.collapsed.opened .dropdown-menu {
            top: 0;
        }

@media (min-width: 992px) {
    .cid-tDhh6AzzMI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 4.7rem);
    }
}

.cid-tDhh6AzzMI .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-tDhh6AzzMI .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-tDhh6AzzMI .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-tDhh6AzzMI .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-tDhh6AzzMI .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
}

.cid-tDhh6AzzMI .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .cid-tDhh6AzzMI .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-tDhh6AzzMI .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-tDhh6AzzMI .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-tDhh6AzzMI .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-tDhh6AzzMI .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-tDhh6AzzMI .navbar .navbar-logo img {
        height: 3rem !important;
    }

    .cid-tDhh6AzzMI .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-tDhh6AzzMI .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tDhh6AzzMI .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tDhh6AzzMI .navbar .navbar-toggler {
        flex-basis: auto;
    }

    .cid-tDhh6AzzMI .navbar .icons-menu {
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.cid-tDhh6AzzMI .navbar.navbar-short {
    min-height: 60px;
}

    .cid-tDhh6AzzMI .navbar.navbar-short .navbar-logo img {
        height: 2.5rem !important;
    }

    .cid-tDhh6AzzMI .navbar.navbar-short .navbar-brand {
        min-height: 60px;
        padding: 0;
    }

.cid-tDhh6AzzMI .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-tDhh6AzzMI .navbar-brand .navbar-caption {
        line-height: inherit !important;
    }

    .cid-tDhh6AzzMI .navbar-brand .navbar-logo a {
        outline: none;
    }

.cid-tDhh6AzzMI .dropdown-item.active,
.cid-tDhh6AzzMI .dropdown-item:active {
    background-color: transparent;
}

.cid-tDhh6AzzMI .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-tDhh6AzzMI .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

    .cid-tDhh6AzzMI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
        margin-right: 0;
        padding: 0.667em 1.667em;
    }

.cid-tDhh6AzzMI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

    .cid-tDhh6AzzMI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
        margin: 0;
        left: 100%;
    }

.cid-tDhh6AzzMI .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-tDhh6AzzMI ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tDhh6AzzMI .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tDhh6AzzMI button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

    .cid-tDhh6AzzMI button.navbar-toggler .hamburger span {
        position: absolute;
        right: 0;
        width: 30px;
        height: 2px;
        border-right: 5px;
        background-color: #0086d6;
    }

        .cid-tDhh6AzzMI button.navbar-toggler .hamburger span:nth-child(1) {
            top: 0;
            transition: all 0.2s;
        }

        .cid-tDhh6AzzMI button.navbar-toggler .hamburger span:nth-child(2) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-tDhh6AzzMI button.navbar-toggler .hamburger span:nth-child(3) {
            top: 8px;
            transition: all 0.15s;
        }

        .cid-tDhh6AzzMI button.navbar-toggler .hamburger span:nth-child(4) {
            top: 16px;
            transition: all 0.2s;
        }

.cid-tDhh6AzzMI nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-tDhh6AzzMI nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tDhh6AzzMI nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

.cid-tDhh6AzzMI nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all 0.2s;
}

.cid-tDhh6AzzMI .navbar-dropdown {
    padding: 0 1rem;
    position: fixed;
}

.cid-tDhh6AzzMI a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cid-tDhh6AzzMI .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-tDhh6AzzMI .navbar {
        height: 70px;
    }

        .cid-tDhh6AzzMI .navbar.opened {
            height: auto;
        }

    .cid-tDhh6AzzMI .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}
