body {
    font-family: Poppins;
    font-style: normal;
    line-height: 1.5;
}

.mbr-section-title {
    font-style: normal;
    line-height: 1.2;
}

.mbr-section-subtitle {
    line-height: 1.3;
}

.mbr-text {
    font-style: normal;
    line-height: 1.6;
}

.display-1 {
    font-family: 'Roboto-Regular';
    font-size: 4.5rem;
}

.display-2 {
    font-family: 'Roboto-Light';
    font-size: 3rem;
}

.display-4 {
    font-family: 'Roboto-Light';
    font-size: 0.875rem;
}

.display-5 {
    font-family: 'Roboto-Bold';
    font-size: 3rem;
}

.display-7 {
    font-family: 'Roboto-Regular';
    font-size: 1.06rem;
}

/* ---- 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: 3.6rem;
        font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 2.4rem;
        font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-4 {
        font-size: 0.7rem;
        font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-5 {
        font-size: 2.4rem;
        font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }
}

/* Buttons */
.btn {
    font-weight: 500;
    border-width: 2px;
    font-style: normal;
    letter-spacing: 1px;
    margin: .4rem .8rem;
    white-space: normal;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    word-break: break-word;
    padding: 1rem 3rem;
    border-radius: 3px;
}

.btn .mbr-iconfont {
    font-size: 1.6rem;
}

.btn-sm {
    font-weight: 500;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.6rem 1.5rem;
    border-radius: 3px;
}

.btn-md {
    font-weight: 500;
    letter-spacing: 1px;
    margin: .4rem .8rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 1rem 3rem;
    border-radius: 3px;
}

.btn-lg {
    font-weight: 500;
    letter-spacing: 1px;
    margin: .4rem .8rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 1.2rem 3.2rem;
    border-radius: 3px;
}

.bg-primary {
    background-color: #ff8040 !important;
}

.bg-success {
    background-color: #b2d1e6 !important;
}

.bg-info {
    background-color: #f9e7d2 !important;
}

.bg-warning {
    background-color: #58595b !important;
}

.bg-danger {
    background-color: #00113e !important;
}

.btn-primary,
.btn-primary:active,
.btn-primary.active {
    background-color: #ff8040 !important;
    border-color: #ff8040 !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
    color: #ffffff !important;
    background-color: #ff8040 !important;
    border-color: #ff8040 !important;
}

.btn-primary:before {
    background-color: #f35100 !important;
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff !important;
    background-color: #f35100 !important;
    border-color: #f35100 !important;
}

.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
    background-color: #006cae !important;
    border-color: #006cae !important;
    color: #ffffff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
    color: #ffffff !important;
    background-color: #006cae !important;
    border-color: #006cae !important;
}

.btn-secondary:before {
    background-color: #003d62 !important;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #ffffff !important;
    background-color: #003d62 !important;
    border-color: #003d62 !important;
}

.btn-info,
.btn-info:active,
.btn-info.active {
    background-color: #f9e7d2 !important;
    border-color: #f9e7d2 !important;
    color: #b46c18 !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
    color: #b46c18 !important;
    background-color: #f9e7d2 !important;
    border-color: #f9e7d2 !important;
}

.btn-info:before {
    background-color: #f0c38e !important;
}

.btn-info.disabled,
.btn-info:disabled {
    color: #b46c18 !important;
    background-color: #f0c38e !important;
    border-color: #f0c38e !important;
}

.btn-success,
.btn-success:active,
.btn-success.active {
    background-color: #b2d1e6 !important;
    border-color: #b2d1e6 !important;
    color: #265474 !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
    color: #265474 !important;
    background-color: #b2d1e6 !important;
    border-color: #b2d1e6 !important;
}

.btn-success:before {
    background-color: #78aed3 !important;
}

.btn-success.disabled,
.btn-success:disabled {
    color: #265474 !important;
    background-color: #78aed3 !important;
    border-color: #78aed3 !important;
}

.btn-warning,
.btn-warning:active,
.btn-warning.active {
    background-color: #58595b !important;
    border-color: #58595b !important;
    color: #ffffff !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
    color: #ffffff !important;
    background-color: #58595b !important;
    border-color: #58595b !important;
}

.btn-warning:before {
    background-color: #323334 !important;
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #ffffff !important;
    background-color: #323334 !important;
    border-color: #323334 !important;
}

.btn-danger,
.btn-danger:active,
.btn-danger.active {
    background-color: #00113e !important;
    border-color: #00113e !important;
    color: #ffffff !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
    color: #ffffff !important;
    background-color: #00113e !important;
    border-color: #00113e !important;
}

.btn-danger:before {
    background-color: #000000 !important;
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #ffffff !important;
    background-color: #000000 !important;
    border-color: #000000 !important;
}

.btn-white {
    color: #333333 !important;
}

.btn-white,
.btn-white:active,
.btn-white.active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #808080 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
    color: #808080 !important;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}

.btn-white:before {
    background-color: #d9d9d9 !important;
}

.btn-white.disabled,
.btn-white:disabled {
    color: #808080 !important;
    background-color: #d9d9d9 !important;
    border-color: #d9d9d9 !important;
}

.btn-black,
.btn-black:active,
.btn-black.active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
    color: #ffffff !important;
    background-color: #333333 !important;
    border-color: #333333 !important;
}

.btn-black:before {
    background-color: #0d0d0d !important;
}

.btn-black.disabled,
.btn-black:disabled {
    color: #ffffff !important;
    background-color: #0d0d0d !important;
    border-color: #0d0d0d !important;
}

.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
    background: none;
    border-color: #d94900;
    color: #d94900;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
    color: #ffffff;
    border-color: #ff8040;
}

.btn-primary-outline:before {
    background-color: #ff8040;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
    color: #ffffff !important;
    background-color: #ff8040 !important;
    border-color: #ff8040 !important;
}

.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
    background: none;
    border-color: #002d48;
    color: #002d48;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
    color: #ffffff;
    border-color: #006cae;
}

.btn-secondary-outline:before {
    background-color: #006cae;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
    color: #ffffff !important;
    background-color: #006cae !important;
    border-color: #006cae !important;
}

.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
    background: none;
    border-color: #edb778;
    color: #edb778;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
    color: #b46c18;
    border-color: #f9e7d2;
}

.btn-info-outline:before {
    background-color: #f9e7d2;
}

.btn-info-outline.disabled,
.btn-info-outline:disabled {
    color: #ffffff !important;
    background-color: #f9e7d2 !important;
    border-color: #f9e7d2 !important;
}

.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
    background: none;
    border-color: #65a3cd;
    color: #65a3cd;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
    color: #265474;
    border-color: #b2d1e6;
}

.btn-success-outline:before {
    background-color: #b2d1e6;
}

.btn-success-outline.disabled,
.btn-success-outline:disabled {
    color: #ffffff !important;
    background-color: #b2d1e6 !important;
    border-color: #b2d1e6 !important;
}

.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
    background: none;
    border-color: #262627;
    color: #262627;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
    color: #ffffff;
    border-color: #58595b;
}

.btn-warning-outline:before {
    background-color: #58595b;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #ffffff !important;
    background-color: #58595b !important;
    border-color: #58595b !important;
}

.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
    background: none;
    border-color: #000000;
    color: #000000;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
    color: #ffffff;
    border-color: #00113e;
}

.btn-danger-outline:before {
    background-color: #00113e;
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
    color: #ffffff !important;
    background-color: #00113e !important;
    border-color: #00113e !important;
}

.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
    background: none;
    border-color: #000000;
    color: #000000;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
    color: #ffffff;
    border-color: #333333;
}

.btn-black-outline:before {
    background-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,
.btn-white-outline.active {
    background: none;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
    color: #333333;
    border-color: #ffffff;
}

.btn-white-outline:before {
    background-color: #ffffff;
}

.btn-bgr {
    position: relative;
    transition: border 0.3s ease-in-out, color 0.5s;
    -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}

.btn-bgr span {
    position: relative;
    z-index: 12;
}

.btn-bgr:before {
    content: ' ';
    position: absolute;
    top: -2px;
    left: -2px;
    right: 105%;
    bottom: -2px;
    transition: right 0.3s ease-in-out;
    z-index: -1;
}

.btn-bgr:hover:before {
    right: -2px;
}

.btn-underline {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: color 0.2s ease-out;
}

.btn-underline:before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff8040;
    -webkit-transition: width 0.2s ease-out;
    -moz-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
}

.btn-underline:hover:before {
    width: 100%;
}

.text-primary {
    color: #ff8040 !important;
}

.text-secondary {
    color: #006cae !important;
}

.text-success {
    color: #b2d1e6 !important;
}

.text-info {
    color: #f9e7d2 !important;
}

.text-warning {
    color: #58595b !important;
}

.text-danger {
    color: #00113e !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #d94900 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #002d48 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #65a3cd !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #edb778 !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #262627 !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #000000 !important;
}

a.text-white:hover,
a.text-white:focus {
    color: #b3b3b3 !important;
}

a.text-black:hover,
a.text-black:focus {
    color: #4d4d4d !important;
}

.alert-success {
    background-color: #70c770;
}

.alert-info {
    background-color: #f9e7d2;
}

.alert-warning {
    background-color: #58595b;
}

.alert-danger {
    background-color: #00113e;
}

.mbr-gallery-filter li.active .btn {
    background-color: #ff8040;
    border-color: #ff8040;
    color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
    box-shadow: none;
}

.btn-form {
    border-radius: 0;
}

.btn-form:hover {
    cursor: pointer;
}

a,
a:hover {
    color: #ff8040;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #ffffff;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
    color: #98999b;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
    color: #2460ff;
}

/* Scroll to top button*/
#scrollToTop a i:before {
    content: '';
    position: absolute;
    height: 40%;
    top: 25%;
    background: #fff;
    width: 2px;
    left: calc(50% - 1px);
}

#scrollToTop a i:after {
    content: '';
    position: absolute;
    display: block;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 40%;
    height: 40%;
    left: 30%;
    bottom: 30%;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* Others*/
.note-check a[data-value=Rubik] {
    font-style: normal;
}

.mbr-arrow a {
    color: #ffffff;
}

@media (max-width: 767px) {
    .mbr-arrow {
        display: none;
    }
}

.form-control-label {
    position: relative;
    cursor: pointer;
    margin-bottom: .357em;
    padding: 0;
}

.alert {
    color: #ffffff;
    border-radius: 0;
    border: 0;
    font-size: .875rem;
    line-height: 1.5;
    margin-bottom: 1.875rem;
    padding: 1.25rem;
    position: relative;
}

.alert.alert-form::after {
    background-color: inherit;
    bottom: -7px;
    content: "";
    display: block;
    height: 14px;
    left: 50%;
    margin-left: -7px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 14px;
}

.form-control {
    background-color: #f5f5f5;
    box-shadow: none;
    color: #565656;
    line-height: 1.43;
    min-height: 3.5em;
    padding: 1.07em .5em;
}

.form-control,
.form-control:focus {
    border: 1px solid #e8e8e8;
}

.form-active .form-control:invalid {
    border-color: red;
}

.mbr-overlay {
    background-color: #000;
    bottom: 0;
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

blockquote {
    font-style: italic;
    padding: 10px 0 10px 20px;
    font-size: 1.09rem;
    position: relative;
    border-color: #ff8040;
    border-width: 3px;
}

ul,
ol,
pre,
blockquote {
    margin-bottom: 2.3125rem;
}

pre {
    background: #f4f4f4;
    padding: 10px 24px;
    white-space: pre-wrap;
}

.inactive {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.mbr-section__comments .row {
    -webkit-justify-content: center;
    justify-content: center;
}

/* Forms */
.mbr-form .btn {
    margin: .4rem 0;
}

@media (max-width: 767px) {
    .btn {
        font-size: .75rem !important;
    }

    .btn .mbr-iconfont {
        font-size: 1rem !important;
    }
}

/* Social block */
.btn-social {
    font-size: 20px;
    border-radius: 50%;
    padding: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    position: relative;
    border: 2px solid #c0a375;
    border-color: #ff8040;
    color: #232323;
    cursor: pointer;
}

.btn-social i {
    top: 0;
    line-height: 44px;
    width: 44px;
}

.btn-social:hover {
    color: #fff;
    background: #ff8040;
}

.btn-social + .btn {
    margin-left: .1rem;
}

/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
    background: #ff8040;
}

.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
    color: #ff8040;
}

/* Headers*/
/* Content */
.content11 .counter-container div .counter {
    background: #ff8040;
}

/*Menu*/
.display-1 > .mbr-iconfont {
    font-size: 7.2rem;
}

.display-2 > .mbr-iconfont {
    font-size: 4.8rem;
}

.display-4 > .mbr-iconfont {
    font-size: 1.4rem;
}

.display-5 > .mbr-iconfont {
    font-size: 4.8rem;
}

.display-7 > .mbr-iconfont {
    font-size: 1.696rem;
}

.display-7 {
    font-weight: 300;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
    bottom: initial !important;
}

html,
body {
    height: auto;
    min-height: 100vh;
}

.dropup .dropdown-toggle::after {
    display: none;
}

.cid-rfSRRbSpjC .dropdown-item:before {
    font-family: MobiriseIcons !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;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rfSRRbSpjC .nav-item:focus,
.cid-rfSRRbSpjC .nav-link:focus {
    outline: none;
}

@media (min-width: 992px) {
    .cid-rfSRRbSpjC .dropdown-item:hover:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        width: 16px;
    }

    .cid-rfSRRbSpjC .nav-item .nav-link {
        position: relative;
    }

    .cid-rfSRRbSpjC .nav-item .nav-link::before {
        position: absolute;
        content: '';
        width: 0;
        height: 3px;
        bottom: -0.5rem;
        left: 50%;
        background: linear-gradient(90deg, #ff8040, #006cae);
        transition: width 200ms linear, left 200ms linear;
    }

    .cid-rfSRRbSpjC .nav-item.open .nav-link::before {
        bottom: .2rem;
        width: 80% !important;
        left: 10% !important;
    }

    .cid-rfSRRbSpjC .nav-item .nav-link:hover::before {
        width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rfSRRbSpjC .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    padding: 0.235em 2.5385em 0.235em 3.5385em;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rfSRRbSpjC .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}

.cid-rfSRRbSpjC .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.cid-rfSRRbSpjC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-left: -1.8rem;
    padding-right: 1rem;
    font-size: inherit;
}

.cid-rfSRRbSpjC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rfSRRbSpjC .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-rfSRRbSpjC .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-rfSRRbSpjC .navbar {
    min-height: 77px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    display: -webkit-flex;
    -webkit-align-items: center;
    background: none;
}

.cid-rfSRRbSpjC .navbar .mbr-overlay {
    z-index: -1;
    transition: all .3s;
    background: #ffffff;
}

.cid-rfSRRbSpjC .navbar.opened .mbr-overlay {
    transition: all .3s;
    background: #ffffff !important;
}

.cid-rfSRRbSpjC .navbar .dropdown-item {
    padding: .25rem 1.5rem;
}

.cid-rfSRRbSpjC .navbar .navbar-collapse {
    width: 100%;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 1;
    padding: .5rem 1rem;
}

@media (max-width: 767px) {
    .cid-rfSRRbSpjC .navbar .navbar-collapse {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

.cid-rfSRRbSpjC .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}

.cid-rfSRRbSpjC .navbar.collapsed .navbar-collapse.show,
.cid-rfSRRbSpjC .navbar.collapsed .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cid-rfSRRbSpjC .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rfSRRbSpjC .navbar.collapsed .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
}

.cid-rfSRRbSpjC .navbar.collapsed .dropdown-menu {
    background: transparent !important;
}

.cid-rfSRRbSpjC .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-rfSRRbSpjC .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-rfSRRbSpjC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
}

.cid-rfSRRbSpjC .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-rfSRRbSpjC .navbar.collapsed .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cid-rfSRRbSpjC .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
}

.cid-rfSRRbSpjC .navbar.collapsed .right-menu,
.cid-rfSRRbSpjC .navbar.collapsed .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
}

@media (max-width: 991px) {
    .cid-rfSRRbSpjC .navbar .navbar-collapse.show,
    .cid-rfSRRbSpjC .navbar .navbar-collapse.collapsing {
        transition: all .3s linear;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .cid-rfSRRbSpjC .navbar .navbar-collapse.show .brand-container,
    .cid-rfSRRbSpjC .navbar .navbar-collapse.collapsing .brand-container {
        -webkit-order: -1;
        order: -1;
    }

    .cid-rfSRRbSpjC .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-rfSRRbSpjC .navbar .dropdown-menu {
        background: transparent !important;
    }

    .cid-rfSRRbSpjC .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-rfSRRbSpjC .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-rfSRRbSpjC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: .25rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
    }

    .cid-rfSRRbSpjC .navbar .navbar-logo img {
        height: 3.8rem !important;
    }

    .cid-rfSRRbSpjC .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-rfSRRbSpjC .navbar .navbar-buttons {
        margin: 0;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .cid-rfSRRbSpjC .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem;
        text-align: center;
    }

    .cid-rfSRRbSpjC .navbar .right-menu,
    .cid-rfSRRbSpjC .navbar .left-menu {
        -webkit-flex-basis: auto;
        flex-basis: auto;
    }
}

.cid-rfSRRbSpjC .navbar.navbar-short {
    min-height: 60px;
}

.cid-rfSRRbSpjC .navbar.navbar-short .mbr-overlay {
    background: #ffffff !important;
}

.cid-rfSRRbSpjC .navbar.navbar-short .navbar-logo img {
    height: 3rem !important;
}

.cid-rfSRRbSpjC .navbar.navbar-short .navbar-brand {
    padding: 0;
}

.cid-rfSRRbSpjC .navbar-brand {
    -webkit-align-items: center;
    align-items: center;
    margin-right: 0;
    padding: 0;
    transition: all .3s;
    word-break: break-word;
    z-index: 1;
}

.cid-rfSRRbSpjC .navbar-brand .navbar-caption {
    line-height: inherit !important;
}

.cid-rfSRRbSpjC .navbar-brand .navbar-logo a {
    outline: none;
}

.cid-rfSRRbSpjC .dropdown-item.active,
.cid-rfSRRbSpjC .dropdown-item:active {
    background-color: transparent;
}

.cid-rfSRRbSpjC .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-rfSRRbSpjC .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

.cid-rfSRRbSpjC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}

.cid-rfSRRbSpjC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

.cid-rfSRRbSpjC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-rfSRRbSpjC .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-rfSRRbSpjC ul.navbar-nav {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cid-rfSRRbSpjC ul.navbar-nav {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.cid-rfSRRbSpjC .navbar-buttons {
    margin-left: auto;
}

.cid-rfSRRbSpjC button.navbar-toggler {
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    margin: 1rem;
    -webkit-align-self: center;
    align-self: center;
}

.cid-rfSRRbSpjC button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #58595b;
}

.cid-rfSRRbSpjC button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all .2s;
}

.cid-rfSRRbSpjC button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all .15s;
}

.cid-rfSRRbSpjC button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all .15s;
}

.cid-rfSRRbSpjC button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all .2s;
}

.cid-rfSRRbSpjC nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rfSRRbSpjC nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
    width: 20px;
    right: -2px;
}

.cid-rfSRRbSpjC nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
    width: 20px;
    left: -2px;
}

.cid-rfSRRbSpjC nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rfSRRbSpjC .navbar-dropdown {
    position: fixed;
}

.cid-rfSRRbSpjC a.nav-link {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rfSRRbSpjC .mbr-iconfont {
    font-size: 1.5rem;
    padding-right: .5rem;
}

.cid-rfSRRbSpjC .right-menu,
.cid-rfSRRbSpjC .left-menu {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
}

.cid-rfSRRbSpjC .left-menu .navbar-nav {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.cid-rfSRRbSpjC .left-menu .navbar-nav ul {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.cid-rfSRRbSpjC .brand-container {
    padding: 0 2rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.cid-rfSRRbSpjC .menu-top {
    text-align: center;
    width: 100%;
    background-color: #006cae;
    padding: .5rem 0;
}

.cid-rfSRRbSpjC .full-link {
    width: 100%;
    font-size: 0;
    z-index: 2;
}

.cid-rfSRRbSpjC .card-wrapper {
    z-index: 3;
}

.cid-rfSRRbSpjC .popup-btn.card-wrapper {
    z-index: 1 !important;
}

@media (max-width: 991px) {
    .cid-rfSRRbSpjC .navbar-collapse {
        padding-top: 0;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-rfSRRbSpjC .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rfSP4ExmfC {
    padding-top: 180px;
    padding-bottom: 90px;
    background-image: url("../../../assets/images/img-1494-2000x1333.jpg");
}

.cid-rfSP4ExmfC .media-container-column .btn-bgr {
    z-index: 0;
}

.cid-rfSP4ExmfC .mbr-overlay {
    background: linear-gradient(#00113e -10%, #00113e 75%);
}

.cid-rfSP4ExmfC H3 {
    text-align: left;
}

.cid-rfSP4ExmfC H1 {
    text-align: left;
}

.cid-rfSP4ExmfC .mbr-text,
.cid-rfSP4ExmfC .mbr-section-btn {
    text-align: left;
}

.cid-rfSWGtjXYF {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

.cid-rfSWGtjXYF .block-title {
    text-align: left;
    color: #006cae;
}

.cid-rfSVWZoNie {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-rfSVWZoNie .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfSVWZoNie .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfSVWZoNie .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfSVWZoNie .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfSVWZoNie .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfSVWZoNie .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfSVWZoNie .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfSVWZoNie .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfSVWZoNie .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfSVWZoNie ul {
    font-size: 0;
}

.cid-rfSVWZoNie .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfSVWZoNie .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfSVWZoNie .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfSVbZmqN0 {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

.cid-rfSVbZmqN0 .block-title {
    text-align: left;
    color: #006cae;
}

.cid-rfRN0ssVNB {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-rfRN0ssVNB .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfRN0ssVNB .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfRN0ssVNB .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfRN0ssVNB .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfRN0ssVNB .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfRN0ssVNB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfRN0ssVNB .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfRN0ssVNB .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfRN0ssVNB .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfRN0ssVNB ul {
    font-size: 0;
}

.cid-rfRN0ssVNB .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfRN0ssVNB .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfRN0ssVNB .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfSXkf0l3A {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #006cae;
}

.cid-rfSXkf0l3A .block-title {
    text-align: left;
    color: #ffffff;
}

.cid-rfRSoOjhzN {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #006cae;
}

.cid-rfRSoOjhzN .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfRSoOjhzN .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfRSoOjhzN .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfRSoOjhzN .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfRSoOjhzN .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfRSoOjhzN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfRSoOjhzN .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfRSoOjhzN .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfRSoOjhzN .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfRSoOjhzN ul {
    font-size: 0;
}

.cid-rfRSoOjhzN .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfRSoOjhzN .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfRSoOjhzN .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfSXUBWcu0 {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

.cid-rfSXUBWcu0 .block-title {
    text-align: left;
    color: #006cae;
}

.cid-rfRZzVnmlR {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-rfRZzVnmlR .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfRZzVnmlR .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfRZzVnmlR .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfRZzVnmlR .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfRZzVnmlR .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfRZzVnmlR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfRZzVnmlR .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfRZzVnmlR .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfRZzVnmlR .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfRZzVnmlR ul {
    font-size: 0;
}

.cid-rfRZzVnmlR .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfRZzVnmlR .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfRZzVnmlR .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT0GfsNQW {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

.cid-rfT0GfsNQW .block-title {
    text-align: left;
    color: #006cae;
}

.cid-rfS1of9ypi {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-rfS1of9ypi .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfS1of9ypi .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfS1of9ypi .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfS1of9ypi .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfS1of9ypi .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfS1of9ypi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfS1of9ypi .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfS1of9ypi .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfS1of9ypi .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfS1of9ypi ul {
    font-size: 0;
}

.cid-rfS1of9ypi .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfS1of9ypi .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfS1of9ypi .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT0YImAH6 {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #006cae;
}

.cid-rfT0YImAH6 .block-title {
    text-align: left;
    color: #ffffff;
}

.cid-rfSuqZYqmC {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #006cae;
}

.cid-rfSuqZYqmC .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfSuqZYqmC .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfSuqZYqmC .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfSuqZYqmC .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfSuqZYqmC .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfSuqZYqmC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfSuqZYqmC .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfSuqZYqmC .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfSuqZYqmC .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfSuqZYqmC ul {
    font-size: 0;
}

.cid-rfSuqZYqmC .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfSuqZYqmC .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfSuqZYqmC .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT1bkI3sf {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

.cid-rfT1bkI3sf .block-title {
    text-align: left;
    color: #006cae;
}

.cid-rfSAxu1QKO {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-rfSAxu1QKO .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfSAxu1QKO .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfSAxu1QKO .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfSAxu1QKO .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfSAxu1QKO .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfSAxu1QKO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfSAxu1QKO .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfSAxu1QKO .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfSAxu1QKO .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfSAxu1QKO ul {
    font-size: 0;
}

.cid-rfSAxu1QKO .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfSAxu1QKO .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfSAxu1QKO .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT1csJ7M4 {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

.cid-rfT1csJ7M4 .block-title {
    text-align: left;
    color: #006cae;
}

.cid-rfSAwzCicV {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-rfSAwzCicV .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfSAwzCicV .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfSAwzCicV .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfSAwzCicV .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfSAwzCicV .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfSAwzCicV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfSAwzCicV .mbr-gallery-item > div:hover:before {
    opacity: 0.5 !important;
}

.cid-rfSAwzCicV .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfSAwzCicV .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.5;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfSAwzCicV ul {
    font-size: 0;
}

.cid-rfSAwzCicV .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfSAwzCicV .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfSAwzCicV .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT1dct0GK {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #006cae;
}

.cid-rfT1dct0GK .block-title {
    text-align: left;
    color: #ffffff;
}

.cid-rfSIaCxcBZ {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #006cae;
}

.cid-rfSIaCxcBZ .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfSIaCxcBZ .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfSIaCxcBZ .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfSIaCxcBZ .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfSIaCxcBZ .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #212121;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfSIaCxcBZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfSIaCxcBZ .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfSIaCxcBZ .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfSIaCxcBZ .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #212121 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfSIaCxcBZ ul {
    font-size: 0;
}

.cid-rfSIaCxcBZ .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfSIaCxcBZ .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfSIaCxcBZ .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT56kGBwj {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #333333;
}

.cid-rfT56kGBwj p {
    text-align: center;
}

.cid-rfT56kGBwj .mbr-iconfont-social {
    font-size: 1.5rem;
    color: #ffffff;
}

.cid-rfT56kGBwj .btn-underline:hover {
    color: #505050;
}

.cid-rfT56kGBwj .btn-underline:before {
    background-color: #505050;
}

.cid-rfT56kGBwj .social-list a:focus {
    text-decoration: none;
}

.cid-rfT56kGBwj .text-copyright {
    width: 100%;
}

.cid-rfT56kGBwj .img-logo-footer {
    margin-right: 1rem;
    max-width: 5rem;
}

.cid-rfT56kGBwj .text-logo-footer {
    display: inline-block;
    vertical-align: middle;
}

.cid-rfT56kGBwj .logo-footer {
    line-height: normal;
}

.cid-rfT56kGBwj .copyright {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.cid-rfT56kGBwj .social-btns {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rfT56kGBwj .mbr-section-btn {
    font-size: 16px;
}

.cid-rfT56kGBwj .mbr-section-btn a {
    margin: 0 1rem 0.5rem;
}

.cid-rfT2xQxGEE .dropdown-item:before {
    font-family: MobiriseIcons !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;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rfT2xQxGEE .nav-item:focus,
.cid-rfT2xQxGEE .nav-link:focus {
    outline: none;
}

@media (min-width: 992px) {
    .cid-rfT2xQxGEE .dropdown-item:hover:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        width: 16px;
    }

    .cid-rfT2xQxGEE .nav-item .nav-link {
        position: relative;
    }

    .cid-rfT2xQxGEE .nav-item .nav-link::before {
        position: absolute;
        content: '';
        width: 0;
        height: 3px;
        bottom: -0.5rem;
        left: 50%;
        background: linear-gradient(90deg, #ff8040, #006cae);
        transition: width 200ms linear, left 200ms linear;
    }

    .cid-rfT2xQxGEE .nav-item.open .nav-link::before {
        bottom: .2rem;
        width: 80% !important;
        left: 10% !important;
    }

    .cid-rfT2xQxGEE .nav-item .nav-link:hover::before {
        width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rfT2xQxGEE .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    padding: 0.235em 2.5385em 0.235em 3.5385em;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rfT2xQxGEE .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
}

.cid-rfT2xQxGEE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.cid-rfT2xQxGEE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-left: -1.8rem;
    padding-right: 1rem;
    font-size: inherit;
}

.cid-rfT2xQxGEE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rfT2xQxGEE .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-rfT2xQxGEE .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-rfT2xQxGEE .navbar {
    min-height: 77px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    display: -webkit-flex;
    -webkit-align-items: center;
    background: none;
}

.cid-rfT2xQxGEE .navbar .mbr-overlay {
    z-index: -1;
    transition: all .3s;
    background: #ffffff;
}

.cid-rfT2xQxGEE .navbar.opened .mbr-overlay {
    transition: all .3s;
    background: #ffffff !important;
}

.cid-rfT2xQxGEE .navbar .dropdown-item {
    padding: .25rem 1.5rem;
}

.cid-rfT2xQxGEE .navbar .navbar-collapse {
    width: 100%;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 1;
    padding: .5rem 1rem;
}

@media (max-width: 767px) {
    .cid-rfT2xQxGEE .navbar .navbar-collapse {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

.cid-rfT2xQxGEE .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}

.cid-rfT2xQxGEE .navbar.collapsed .navbar-collapse.show,
.cid-rfT2xQxGEE .navbar.collapsed .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cid-rfT2xQxGEE .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-rfT2xQxGEE .navbar.collapsed .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
}

.cid-rfT2xQxGEE .navbar.collapsed .dropdown-menu {
    background: transparent !important;
}

.cid-rfT2xQxGEE .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-rfT2xQxGEE .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-rfT2xQxGEE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
}

.cid-rfT2xQxGEE .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-rfT2xQxGEE .navbar.collapsed .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cid-rfT2xQxGEE .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
}

.cid-rfT2xQxGEE .navbar.collapsed .right-menu,
.cid-rfT2xQxGEE .navbar.collapsed .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
}

@media (max-width: 991px) {
    .cid-rfT2xQxGEE .navbar .navbar-collapse.show,
    .cid-rfT2xQxGEE .navbar .navbar-collapse.collapsing {
        transition: all .3s linear;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .cid-rfT2xQxGEE .navbar .navbar-collapse.show .brand-container,
    .cid-rfT2xQxGEE .navbar .navbar-collapse.collapsing .brand-container {
        -webkit-order: -1;
        order: -1;
    }

    .cid-rfT2xQxGEE .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-rfT2xQxGEE .navbar .dropdown-menu {
        background: transparent !important;
    }

    .cid-rfT2xQxGEE .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-rfT2xQxGEE .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-rfT2xQxGEE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: .25rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
    }

    .cid-rfT2xQxGEE .navbar .navbar-logo img {
        height: 3.8rem !important;
    }

    .cid-rfT2xQxGEE .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-rfT2xQxGEE .navbar .navbar-buttons {
        margin: 0;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .cid-rfT2xQxGEE .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem;
        text-align: center;
    }

    .cid-rfT2xQxGEE .navbar .right-menu,
    .cid-rfT2xQxGEE .navbar .left-menu {
        -webkit-flex-basis: auto;
        flex-basis: auto;
    }
}

.cid-rfT2xQxGEE .navbar.navbar-short {
    min-height: 60px;
}

.cid-rfT2xQxGEE .navbar.navbar-short .mbr-overlay {
    background: #ffffff !important;
}

.cid-rfT2xQxGEE .navbar.navbar-short .navbar-logo img {
    height: 3rem !important;
}

.cid-rfT2xQxGEE .navbar.navbar-short .navbar-brand {
    padding: 0;
}

.cid-rfT2xQxGEE .navbar-brand {
    -webkit-align-items: center;
    align-items: center;
    margin-right: 0;
    padding: 0;
    transition: all .3s;
    word-break: break-word;
    z-index: 1;
}

.cid-rfT2xQxGEE .navbar-brand .navbar-caption {
    line-height: inherit !important;
}

.cid-rfT2xQxGEE .navbar-brand .navbar-logo a {
    outline: none;
}

.cid-rfT2xQxGEE .dropdown-item.active,
.cid-rfT2xQxGEE .dropdown-item:active {
    background-color: transparent;
}

.cid-rfT2xQxGEE .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
}

.cid-rfT2xQxGEE .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

.cid-rfT2xQxGEE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}

.cid-rfT2xQxGEE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #ffffff;
}

.cid-rfT2xQxGEE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-rfT2xQxGEE .navbar .dropdown.open > .dropdown-menu {
    display: block;
}

.cid-rfT2xQxGEE ul.navbar-nav {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cid-rfT2xQxGEE ul.navbar-nav {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.cid-rfT2xQxGEE .navbar-buttons {
    margin-left: auto;
}

.cid-rfT2xQxGEE button.navbar-toggler {
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    margin: 1rem;
    -webkit-align-self: center;
    align-self: center;
}

.cid-rfT2xQxGEE button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #58595b;
}

.cid-rfT2xQxGEE button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all .2s;
}

.cid-rfT2xQxGEE button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all .15s;
}

.cid-rfT2xQxGEE button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all .15s;
}

.cid-rfT2xQxGEE button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all .2s;
}

.cid-rfT2xQxGEE nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rfT2xQxGEE nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
    width: 20px;
    right: -2px;
}

.cid-rfT2xQxGEE nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
    width: 20px;
    left: -2px;
}

.cid-rfT2xQxGEE nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rfT2xQxGEE .navbar-dropdown {
    position: fixed;
}

.cid-rfT2xQxGEE a.nav-link {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rfT2xQxGEE .mbr-iconfont {
    font-size: 1.5rem;
    padding-right: .5rem;
}

.cid-rfT2xQxGEE .right-menu,
.cid-rfT2xQxGEE .left-menu {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
}

.cid-rfT2xQxGEE .left-menu .navbar-nav {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.cid-rfT2xQxGEE .left-menu .navbar-nav ul {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.cid-rfT2xQxGEE .brand-container {
    padding: 0 2rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.cid-rfT2xQxGEE .menu-top {
    text-align: center;
    width: 100%;
    background-color: #006cae;
    padding: .5rem 0;
}

.cid-rfT2xQxGEE .full-link {
    width: 100%;
    font-size: 0;
    z-index: 2;
}

.cid-rfT2xQxGEE .card-wrapper {
    z-index: 3;
}

.cid-rfT2xQxGEE .popup-btn.card-wrapper {
    z-index: 1 !important;
}

@media (max-width: 991px) {
    .cid-rfT2xQxGEE .navbar-collapse {
        padding-top: 0;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-rfT2xQxGEE .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rfT2xS3pnV {
    padding-top: 180px;
    padding-bottom: 90px;
    background-image: url("../../../assets/images/img-1494-2000x1333.jpg");
}

.cid-rfT2xS3pnV .media-container-column .btn-bgr {
    z-index: 0;
}

.cid-rfT2xS3pnV .mbr-overlay {
    background: linear-gradient(#00113e -10%, #00113e 75%);
}

.cid-rfT2xS3pnV H3 {
    text-align: left;
}

.cid-rfT2xS3pnV H1 {
    text-align: left;
}

.cid-rfT2xS3pnV .mbr-text,
.cid-rfT2xS3pnV .mbr-section-btn {
    text-align: left;
}

.cid-rfT2xT5trX {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #fff;
}

.cid-rfT2xT5trX .block-title {
    text-align: left;
    color: #006cae;
    font-weight: 00;
}

.cid-rfT2xTKR9H {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #fff;
}

.cid-rfT2xTKR9H .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfT2xTKR9H .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfT2xTKR9H .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfT2xTKR9H .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfT2xTKR9H .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfT2xTKR9H .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfT2xTKR9H .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfT2xTKR9H .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfT2xTKR9H .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfT2xTKR9H ul {
    font-size: 0;
}

.cid-rfT2xTKR9H .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfT2xTKR9H .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfT2xTKR9H .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT2xUQS9v {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #006cae;
}

.cid-rfT2xUQS9v .block-title {
    text-align: left;
    color: #fff;
}

.cid-rfT2xVyw8T {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #006cae;
}

.cid-rfT2xVyw8T .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfT2xVyw8T .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfT2xVyw8T .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfT2xVyw8T .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfT2xVyw8T .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfT2xVyw8T .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfT2xVyw8T .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfT2xVyw8T .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfT2xVyw8T .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfT2xVyw8T ul {
    font-size: 0;
}

.cid-rfT2xVyw8T .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfT2xVyw8T .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfT2xVyw8T .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT2xWBw2e {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #006cae;
}

.cid-rfT2xWBw2e .block-title {
    text-align: left;
    color: #ffffff;
}

.cid-rfT2xXmY9S {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #006cae;
}

.cid-rfT2xXmY9S .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfT2xXmY9S .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfT2xXmY9S .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfT2xXmY9S .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfT2xXmY9S .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfT2xXmY9S .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfT2xXmY9S .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfT2xXmY9S .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfT2xXmY9S .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfT2xXmY9S ul {
    font-size: 0;
}

.cid-rfT2xXmY9S .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfT2xXmY9S .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfT2xXmY9S .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT2xYBeYe {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

.cid-rfT2xYBeYe .block-title {
    text-align: left;
    color: #006cae;
}

.cid-rfT2xZoHiS {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-rfT2xZoHiS .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfT2xZoHiS .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfT2xZoHiS .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfT2xZoHiS .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfT2xZoHiS .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfT2xZoHiS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfT2xZoHiS .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfT2xZoHiS .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfT2xZoHiS .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfT2xZoHiS ul {
    font-size: 0;
}

.cid-rfT2xZoHiS .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfT2xZoHiS .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfT2xZoHiS .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT2y0MAJg {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #006cae;
}

.cid-rfT2y0MAJg .block-title {
    text-align: left;
    color: #fff;
}

.cid-rfT2y1CIKO {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #006cae;
}

.cid-rfT2y1CIKO .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfT2y1CIKO .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfT2y1CIKO .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfT2y1CIKO .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfT2y1CIKO .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfT2y1CIKO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfT2y1CIKO .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfT2y1CIKO .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfT2y1CIKO .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfT2y1CIKO ul {
    font-size: 0;
}

.cid-rfT2y1CIKO .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfT2y1CIKO .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfT2y1CIKO .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT2y38n4Q {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #006cae;
}

.cid-rfT2y38n4Q .block-title {
    text-align: left;
    color: #ffffff;
}

.cid-rfT2y47gvA {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #006cae;
}

.cid-rfT2y47gvA .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfT2y47gvA .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfT2y47gvA .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfT2y47gvA .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfT2y47gvA .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfT2y47gvA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfT2y47gvA .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfT2y47gvA .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfT2y47gvA .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfT2y47gvA ul {
    font-size: 0;
}

.cid-rfT2y47gvA .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfT2y47gvA .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfT2y47gvA .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT2y5uhdw {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #ffffff;
}

.cid-rfT2y5uhdw .block-title {
    text-align: left;
    color: #006cae;
}

.cid-rfT2y6q46E {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-rfT2y6q46E .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfT2y6q46E .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfT2y6q46E .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfT2y6q46E .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfT2y6q46E .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfT2y6q46E .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfT2y6q46E .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfT2y6q46E .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfT2y6q46E .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfT2y6q46E ul {
    font-size: 0;
}

.cid-rfT2y6q46E .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfT2y6q46E .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfT2y6q46E .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT2y7Haxz {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #006cae;
}

.cid-rfT2y7Haxz .block-title {
    text-align: left;
    color: #fff;
}

.cid-rfT2y8JnuZ {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #006cae;
}

.cid-rfT2y8JnuZ .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfT2y8JnuZ .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfT2y8JnuZ .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfT2y8JnuZ .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfT2y8JnuZ .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ff8040;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfT2y8JnuZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfT2y8JnuZ .mbr-gallery-item > div:hover:before {
    opacity: 0.5 !important;
}

.cid-rfT2y8JnuZ .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfT2y8JnuZ .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ff8040 !important;
    opacity: 0.5;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfT2y8JnuZ ul {
    font-size: 0;
}

.cid-rfT2y8JnuZ .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfT2y8JnuZ .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfT2y8JnuZ .mbr-gallery-filter ul li {
    padding: 0;
}

.cid-rfT2yadnBJ {
    padding-top: 60px;
    padding-bottom: 15px;
    background-color: #006cae;
}

.cid-rfT2yadnBJ .block-title {
    text-align: left;
    color: #ffffff;
}

.cid-rfT2ybgqbO {
    padding-top: 0px;
    padding-bottom: 90px;
    background-color: #006cae;
}

.cid-rfT2ybgqbO .mbr-slider .carousel-control {
    background: #1b1b1b;
}

.cid-rfT2ybgqbO .mbr-slider .carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rfT2ybgqbO .mbr-slider .carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rfT2ybgqbO .mbr-slider .modal-body .close {
    background: #1b1b1b;
}

.cid-rfT2ybgqbO .mbr-gallery-item > div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #212121;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.cid-rfT2ybgqbO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
    background: transparent !important;
}

.cid-rfT2ybgqbO .mbr-gallery-item > div:hover:before {
    opacity: 0.4 !important;
}

.cid-rfT2ybgqbO .mbr-gallery-title {
    font-size: .9em;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    z-index: 2;
}

.cid-rfT2ybgqbO .mbr-gallery-title:before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #212121 !important;
    opacity: 0.4;
    -webkit-transition: 0.2s background ease-in-out;
    transition: 0.2s background ease-in-out;
}

.cid-rfT2ybgqbO ul {
    font-size: 0;
}

.cid-rfT2ybgqbO .mbr-gallery-filter ul li .btn {
    border: none;
    background-color: transparent;
    color: #4284df;
    padding: 0.5rem 1rem 0.6rem;
    border-radius: 0;
    margin: 0!important;
    transition: padding, border 0s;
}

.cid-rfT2ybgqbO .mbr-gallery-filter ul li.active .btn {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 2px #4284df solid;
    border-radius: 0 !important;
}

.cid-rfT2ybgqbO .mbr-gallery-filter ul li {
    padding: 0;
}

.orange {
    border-bottom: 2px solid #ed6d2e;
    width: 70%;
    align: left;
    margin-left: 0;
}

.white {
    border-bottom: 2px solid #fff;
    width: 80%;
    align: left;
    margin-left: 0;
    background-color: #006cae;
    background: #006cae;
    margin-top: 1rem;
}

.cid-rjbJFhfFJK .ico-wrap-2 {
    background: #ff8040;
    padding: 1rem;
}

.cid-rjbJFhfFJK .ico-wrap {
    background: #ffffff;
    padding: 1rem;
}

.display-6 {
    font-family: 'Roboto-Bold';
    font-size: 1.3rem;
}

.cid-rjbJFhfFJK {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url(../../../assets/images/licht-technik-busch-4-1134x601.jpg);
}

.cid-rjbJFhfFJK .card-wrapper {
    overflow: hidden;
    height: 100%;
    background: #fff;
    color: #444444;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
    padding: 0;
}

.cid-rjbJFhfFJK .ico-box {
    display: flex;
    align-items: center;
    padding: 3px;
}

.cid-rjbJFhfFJK .mbr-iconfont {
    color: #ff8040;
    font-size: 1.1rem;
}

.cid-rjbJFhfFJK .ico-wrap-3 {
    background: #B9D2E7;
    padding: 1rem 2rem;
}

.cid-rjbJFhfFJK .ico-wrap-3:hover,
.cid-rjbJFhfFJK .ico-wrap-3:focus,
.cid-rjbJFhfFJK .ico-wrap-3.focus {
    background: #006cae;

}
.cid-rwA4v2vYHx.popup-builder {
  background-color: #ffffff;
}
.cid-rwA4v2vYHx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rwA4v2vYHx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rwA4v2vYHx .modal-content,
.cid-rwA4v2vYHx .modal-dialog {
  height: auto;
}
.cid-rwA4v2vYHx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rwA4v2vYHx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rwA4v2vYHx .form-wrapper .mbr-form .form-group,
  .cid-rwA4v2vYHx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rwA4v2vYHx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rwA4v2vYHx .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rwA4v2vYHx .mbr-text {
  text-align: center;
}
.cid-rwA4v2vYHx .pt-0 {
  padding-top: 0 !important;
}
.cid-rwA4v2vYHx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rwA4v2vYHx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rwA4v2vYHx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rwA4v2vYHx .modal-open {
  overflow: hidden;
}
.cid-rwA4v2vYHx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rwA4v2vYHx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rwA4v2vYHx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rwA4v2vYHx .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rwA4v2vYHx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rwA4v2vYHx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rwA4v2vYHx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rwA4v2vYHx .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rwA4v2vYHx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rwA4v2vYHx .modal-backdrop.fade {
  opacity: 0;
}
.cid-rwA4v2vYHx .modal-backdrop.show {
  opacity: .5;
}
.cid-rwA4v2vYHx .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rwA4v2vYHx .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rwA4v2vYHx .modal-header .close:hover {
  opacity: 1;
}
.cid-rwA4v2vYHx .modal-header .close:focus {
  outline: none;
}
.cid-rwA4v2vYHx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rwA4v2vYHx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rwA4v2vYHx .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rwA4v2vYHx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rwA4v2vYHx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rwA4v2vYHx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rwA4v2vYHx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rwA4v2vYHx .modal-sm {
    max-width: 300px;
  }
  .cid-rwA4v2vYHx .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rwA4v2vYHx .modal-lg,
  .cid-rwA4v2vYHx .modal-xl {
    max-width: 800px;
  }
  .cid-rwA4v2vYHx .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rwA4v2vYHx .modal-xl {
    max-width: 1140px;
  }
  .cid-rwA4v2vYHx .container {
    max-width: 1140px;
  }
}