body {
    font-family: Inter;
}

.display-1 {
    font-family: 'Montserrat-Bold';
    font-size: 3rem;
    line-height: 1.15;
}

.display-1 > .mbr-iconfont {
    font-size: 3.75rem;
}

.display-2 {
    font-family: 'Montserrat-Bold';
    font-size: 4.125rem;
    line-height: 1.15;
}

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

.display-4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

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

.display-5 {
    font-family: 'Montserrat-Bold';
    font-size: 2rem;
    line-height: 1.4;
}

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

.display-7 {
    font-family: 'Montserrat-Regular';
    font-size: 1.25rem;
    line-height: 1.5;
}

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

/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
    .display-1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 2.1rem;
        font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 3.3rem;
        font-size: calc( 2.09375rem + (4.125 - 2.09375) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.3 * (2.09375rem + (4.125 - 2.09375) * ((100vw - 20rem) / (48 - 20))));
    }

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

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

    .display-7 {
        font-size: 1rem;
        font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
    }
}

/* Buttons */
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-md {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-lg {
    padding: 1rem 2.6rem;
    border-radius: 4px;
}

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

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

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

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

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

.btn-primary,
.btn-primary:active {
    background-color: #fc7942 !important;
    border: 2px solid #131313 !important;
    color: #131313 !important;
    box-shadow: 4px 4px 0 #131313 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
    color: #131313 !important;
    background-color: #fc7942 !important;
    border: 2px solid #131313 !important;
    box-shadow: none !important;
}

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

.btn-secondary,
.btn-secondary:active {
    background-color: #a6d8b5 !important;
    border: 2px solid #131313 !important;
    color: #131313 !important;
    box-shadow: 4px 4px 0 #131313 !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
    color: #131313 !important;
    background-color: #a6d8b5 !important;
    border: 2px solid #131313 !important;
    box-shadow: none !important;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #131313 !important;
    background-color: #6abe83 !important;
    border-color: #6abe83 !important;
}

.btn-info,
.btn-info:active {
    background-color: #5189b8 !important;
    border: 2px solid #131313 !important;
    color: #131313 !important;
    box-shadow: 4px 4px 0 #131313 !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
    color: #131313 !important;
    background-color: #5189b8 !important;
    border: 2px solid #131313 !important;
    box-shadow: none !important;
}

.btn-info.disabled,
.btn-info:disabled {
    color: #131313 !important;
    background-color: #345c7f !important;
    border-color: #345c7f !important;
}

.btn-success,
.btn-success:active {
    background-color: #a6b1d8 !important;
    border: 2px solid #131313 !important;
    color: #131313 !important;
    box-shadow: 4px 4px 0 #131313 !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
    color: #131313 !important;
    background-color: #a6b1d8 !important;
    border: 2px solid #131313 !important;
    box-shadow: none !important;
}

.btn-success.disabled,
.btn-success:disabled {
    color: #131313 !important;
    background-color: #6a7cbe !important;
    border-color: #6a7cbe !important;
}

.btn-warning,
.btn-warning:active {
    background-color: #f5db6e !important;
    border: 2px solid #131313 !important;
    color: #131313 !important;
    box-shadow: 4px 4px 0 #131313 !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
    color: #131313 !important;
    background-color: #f5db6e !important;
    border: 2px solid #131313 !important;
    box-shadow: none !important;
}

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

.btn-danger,
.btn-danger:active {
    background-color: #b63b07 !important;
    border: 2px solid #131313 !important;
    color: #131313 !important;
    box-shadow: 4px 4px 0 #131313 !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
    color: #131313 !important;
    background-color: #b63b07 !important;
    border: 2px solid #131313 !important;
    box-shadow: none !important;
}

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

.btn-white,
.btn-white:active {
    background-color: #ffffff !important;
    border: 2px solid #131313 !important;
    color: #131313 !important;
    box-shadow: 4px 4px 0 #131313 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
    color: #131313 !important;
    background-color: #ffffff !important;
    border: 2px solid #131313 !important;
    box-shadow: none !important;
}

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

.btn-black,
.btn-black:active {
    background-color: #131313 !important;
    border: 2px solid #131313 !important;
    color: #131313 !important;
    box-shadow: 4px 4px 0 #131313 !important;
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
    color: #131313 !important;
    background-color: #131313 !important;
    border: 2px solid #131313 !important;
    box-shadow: none !important;
}

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

.btn-primary-outline,
.btn-primary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #fc7942;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
    color: #e44604 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

.btn-secondary-outline,
.btn-secondary-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #a6d8b5;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
    color: #6abe83 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
    color: #275836 !important;
    background-color: #a6d8b5 !important;
    border-color: #a6d8b5 !important;
}

.btn-info-outline,
.btn-info-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #5189b8;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
    color: #345c7f !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

.btn-success-outline,
.btn-success-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #a6b1d8;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
    color: #6a7cbe !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

.btn-warning-outline,
.btn-warning-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #f5db6e;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
    color: #efc71d !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #5e4d06 !important;
    background-color: #f5db6e !important;
    border-color: #f5db6e !important;
}

.btn-danger-outline,
.btn-danger-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #b63b07;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
    color: #632004 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

.btn-black-outline,
.btn-black-outline:active {
    background-color: transparent !important;
    border-color: transparent;
    color: #131313;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
    color: #000000 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

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

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
    color: #d4d4d4 !important;
    background-color: transparent!important;
    border-color: transparent!important;
    box-shadow: none!important;
}

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

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

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

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

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

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

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

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

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

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

a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
    color: #5fb97a !important;
}

a.text-success:hover,
a.text-success:focus,
a.text-success.active {
    color: #5f73b9 !important;
}

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

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

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

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

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

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
    position: relative;
    background-image: transparent;
    background-size: 10000px 2px;
    background-repeat: no-repeat;
    background-position: 0px 1.2em;
    background-position: -10000px 1.2em;
}

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
    transition: background-position 2s ease-in-out;
    background-image: linear-gradient(currentColor 50%, currentColor 50%);
    background-position: 0px 1.2em;
}

.nav-tabs .nav-link.active {
    color: #fc7942;
}

.nav-tabs .nav-link:not(.active) {
    color: #131313;
}

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

.alert-info {
    background-color: #5189b8;
}

.alert-warning {
    background-color: #f5db6e;
}

.alert-danger {
    background-color: #b63b07;
}

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

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

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

.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: #acc6dd;
}

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

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

/* Scroll to top button */
.scrollToTop_wraper {
    display: none;
}

.form-control {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.form-control > .mbr-iconfont {
    font-size: 1.25rem;
}

.form-control:hover,
.form-control:focus {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
    border-color: #fc7942 !important;
}

.form-control:-webkit-input-placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.form-control:-webkit-input-placeholder > .mbr-iconfont {
    font-size: 1.25rem;
}

blockquote {
    border-color: #fc7942;
}

/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
    background-color: #fc7942;
    color: #ffffff;
}

.jq-number__spin {
    transition: 0.25s ease;
}

.jq-number__spin:hover {
    border-color: #fc7942;
}

.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
    transition: 0.4s;
    border-top-color: #353535;
    border-bottom-color: #353535;
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
    border-top-color: #fc7942;
    border-bottom-color: #fc7942;
}

.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: #000000 !important;
    background-color: #fc7942 !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: #a6d8b5 !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='%23fc7942' %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: .3s all;
    font-weight: 600 !important;
}

a:hover {
    background-image: none !important;
}

.container {
    max-width: 1440px;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1600px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100%;
    }
}

.container-small {
    max-width: 1480px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    word-wrap: break-word;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1500px) {
    .container-small {
        max-width: 1180px;
    }
}

@media (max-width: 1024px) {
    .container-small {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .container-small {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 767px) {
    .container-small {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.container-fluid {
    max-width: 1724px;
    padding-left: 12px;
    padding-right: 12px;
}

.row {
    margin-left: -12px;
    margin-right: -12px;
    justify-content: center;
}

.row > [class*="col"] {
    padding-left: 12px;
    padding-right: 12px;
}

b,
strong {
    font-weight: 600 !important;
}

.mbr-section-btn .btn {
    position: relative;
    min-width: 100px;
    min-height: 68px;
    padding: 20px 44px;
    border-radius: 0;
    font-weight: 600 !important;
    transition: all .3s;
}

@media (max-width: 1199px) {
    .mbr-section-btn .btn {
        padding: 20px 30px;
    }
}

@media (max-width: 767px) {
    .mbr-section-btn .btn {
        padding: 15px 20px;
    }
}

.mbr-section-btn .btn-black {
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
    box-shadow: 4px 4px 0 #FFFFFF !important;
}

.mbr-section-btn .btn-black:hover {
    box-shadow: none !important;
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: relative !important;
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: absolute !important;
}

.cid-tSCpVaFTLq .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-tSCpVaFTLq .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tSCpVaFTLq .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-tSCpVaFTLq .dropdown-item:hover,
.cid-tSCpVaFTLq .dropdown-item:focus {
    background: #fc7942 !important;
    color: white !important;
}

.cid-tSCpVaFTLq .dropdown-item:hover span {
    color: white;
}

.cid-tSCpVaFTLq .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-tSCpVaFTLq .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-tSCpVaFTLq .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-tSCpVaFTLq .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-tSCpVaFTLq .nav-link {
    position: relative;
}

.cid-tSCpVaFTLq .container {
    display: flex;
    margin: auto;
}

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .container {
        flex-wrap: nowrap;
    }
}

.cid-tSCpVaFTLq .navbar-nav {
    margin: 0 auto;
}

.cid-tSCpVaFTLq .dropdown-menu,
.cid-tSCpVaFTLq .navbar.opened {
    background: #06182d !important;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}

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

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

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

.cid-tSCpVaFTLq .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    background: rgba(6, 24, 45, 0.2);
    border: none !important;
    box-shadow: none !important;
}

.cid-tSCpVaFTLq .navbar.opened {
    transition: all 0.3s;
}

.cid-tSCpVaFTLq .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}

.cid-tSCpVaFTLq .navbar .navbar-logo img {
    width: auto;
}

.cid-tSCpVaFTLq .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}

.cid-tSCpVaFTLq .navbar.collapsed {
    justify-content: center;
}

.cid-tSCpVaFTLq .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

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

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

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

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

.cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-tSCpVaFTLq .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tSCpVaFTLq .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tSCpVaFTLq .navbar .navbar-toggler {
        flex-basis: auto;
    }
}

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tSCpVaFTLq .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

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

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

.cid-tSCpVaFTLq .navbar-brand {
    min-height: 108px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #06182d;
}

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

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

.cid-tSCpVaFTLq ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tSCpVaFTLq .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tSCpVaFTLq button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

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

.cid-tSCpVaFTLq .navbar-dropdown {
    padding: 0 1rem;
}

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-tSCpVaFTLq .navbar {
        height: 70px;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        height: auto;
    }

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

.cid-tSCpVaFTLq .container,
.cid-tSCpVaFTLq .container-fluid {
    position: relative;
    min-height: 108px;
}

.cid-tSCpVaFTLq .navbar-short {
    background-color: #06182d !important;
}

.cid-tSCpVaFTLq .navbar-short .container,
.cid-tSCpVaFTLq .navbar-short .container-fluid {
    min-height: 85px;
}

.cid-tSCpVaFTLq .navbar-short .container:before,
.cid-tSCpVaFTLq .navbar-short .container-fluid:before {
    display: none;
}

.cid-tSCpVaFTLq .navbar-short .navbar-brand {
    min-height: 85px !important;
}

.cid-tSCpVaFTLq .mbr-section-btn .btn {
    padding: 10px 25px;
    min-height: 48px;
}

.cid-tSCpVaFTLq .border-item {
    position: absolute;
    bottom: -1px;
    display: none;
    width: 100%;
    background-color: transparent;
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .border-item {
        display: block;
    }
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar {
        overflow: hidden;
    }

    .cid-tSCpVaFTLq .container,
    .cid-tSCpVaFTLq .container-fluid {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-brand {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-short .container,
    .cid-tSCpVaFTLq .navbar-short .container-fluid {
        min-height: 75px;
    }

    .cid-tSCpVaFTLq .navbar-short .navbar-brand {
        min-height: 75px !important;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        background: rgba(6, 24, 45, 0.2) !important;
    }

    .cid-tSCpVaFTLq .navbar.navbar-short {
        background-color: #06182d !important;
    }

    .cid-tSCpVaFTLq .navbar-collapse {
        position: relative;
        order: 5;
        z-index: 5 !important;
        padding-bottom: 10px;
    }

    .cid-tSCpVaFTLq .navbar-nav .nav-item {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

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

    .cid-tSCpVaFTLq .border-item {
        position: relative;
        bottom: 0;
        margin-top: auto;
    }

    .cid-tSCpVaFTLq .border-item:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100vw;
        height: 100vw;
        background: #06182d;
        z-index: 4;
        transition: 0.1s all;
    }
}

.cid-tSCa3CwaPE {
    padding-top: 90px;
    padding-bottom: 45px;
    background:  !important;
    background-image: url('../../images/solar-panels-snw-51177152.webp');
}

.cid-tSCa3CwaPE .mbr-section-title DIV {
    text-align: center;
}

.cid-tSCa3CwaPE .mbr-text,
.cid-tSCa3CwaPE .mbr-section-btn {
    text-align: center;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0);
}

.cid-tSCa3CwaPE .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSCa3CwaPE .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSCaG9XGQc {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.cid-tSCaG9XGQc .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSCaG9XGQc .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSCaG9XGQc .container-fluid {
    padding: 0;
}

@media (max-width: 992px) {
    .cid-tSCaG9XGQc .container-fluid {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .cid-tSCaG9XGQc .container {
        padding: 0;
    }
}

.cid-tSCaG9XGQc .row {
    justify-content: center;
    margin: 0;
}

.cid-tSCaG9XGQc .card {
    border-radius: 0;
    padding: 0;
}

.cid-tSCaG9XGQc .card .card-wrapper {
    background-color: #235d81;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .cid-tSCaG9XGQc .card .card-wrapper {
        padding: 30px 16px;
    }
}

.cid-tSCaG9XGQc .card .card-wrapper .card-wrap .icon-wrap {
    margin-bottom: 20px;
}

.cid-tSCaG9XGQc .card .card-wrapper .card-wrap .icon-wrap .mbr-iconfont {
    font-size: 40px;
    display: inline-flex;
    color: #ffffff;
}

.cid-tSCaG9XGQc .card .card-wrapper .card-wrap .mbr-card-title {
    margin-bottom: 16px;
}

.cid-tSCaG9XGQc .card .card-wrapper .card-wrap .mbr-text {
    margin-bottom: 0;
}

.cid-tSCaG9XGQc .card .card-wrapper .mbr-section-btn {
    margin-top: 30px;
}

.cid-tSCaG9XGQc .card:nth-child(2n) .card-wrapper {
    background-color: #235d81;
}

.cid-tSCaG9XGQc .mbr-card-title {
    color: #ffffff;
}

.cid-tSCaG9XGQc .mbr-text {
    color: #ffffff;
    text-align: center;
}

.cid-tSCaG9XGQc .mbr-card-title,
.cid-tSCaG9XGQc .mbr-section-btn,
.cid-tSCaG9XGQc .icon-wrap {
    text-align: center;
}

.cid-tSCaSBXgJg {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSCaSBXgJg .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSCaSBXgJg .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 992px) {
    .cid-tSCaSBXgJg .container {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .cid-tSCaSBXgJg .container {
        padding: 0 12px;
    }
}

.cid-tSCaSBXgJg .row {
    justify-content: center;
}

.cid-tSCaSBXgJg .title-wrapper {
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .cid-tSCaSBXgJg .title-wrapper {
        margin-bottom: 24px;
    }
}

.cid-tSCaSBXgJg .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
}

.cid-tSCaSBXgJg .title-wrapper .mbr-text {
    margin-bottom: 0;
}

.cid-tSCaSBXgJg .card:hover .card-wrapper {
    border: 3px solid #ff6928;
    box-shadow: 4px 4px #ff6928;
}

@media (max-width: 992px) {
    .cid-tSCaSBXgJg .card {
        margin-bottom: 32px;
    }
}

.cid-tSCaSBXgJg .card .card-wrapper {
    padding: 32px;
    border: 3px solid #b19624;
    box-shadow: 4px 4px #b19624;
    background-color: #235d81;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .cid-tSCaSBXgJg .card .card-wrapper {
        padding: 20px;
        border-radius: 24px;
    }
}

.cid-tSCaSBXgJg .card .card-wrapper .title-wrap {
    margin-bottom: 16px;
}

.cid-tSCaSBXgJg .card .card-wrapper .title-wrap .title {
    display: inline-flex;
    align-items: center;
}

.cid-tSCaSBXgJg .card .card-wrapper .title-wrap .title .mbr-iconfont {
    font-size: 40px;
    margin-right: 12px;
    color: #d4b844;
}

.cid-tSCaSBXgJg .card .card-wrapper .title-wrap .title .mbr-card-title {
    margin-bottom: 0;
}

.cid-tSCaSBXgJg .card .card-wrapper .link-wrap {
    display: block;
}

.cid-tSCaSBXgJg .card .card-wrapper .link-wrap:hover .mbr-link,
.cid-tSCaSBXgJg .card .card-wrapper .link-wrap:focus .mbr-link {
    text-decoration: underline;
}

.cid-tSCaSBXgJg .card .card-wrapper .link-wrap .mbr-link {
    display: inline-flex;
    margin-bottom: 0;
}

.cid-tSCaSBXgJg .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSCaSBXgJg .mbr-text {
    color: #222222;
    text-align: center;
}

.cid-tSCaSBXgJg .mbr-card-title {
    color: #222222;
}

.cid-tSCaSBXgJg .mbr-link,
.cid-tSCaSBXgJg .link-wrap {
    color: #f5db6e;
    text-align: center;
}

.cid-tSCaSBXgJg .mbr-card-title,
.cid-tSCaSBXgJg .title-wrap {
    text-align: center;
    color: #ffffff;
}

.cid-tSCBrv30mD {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSCBrv30mD .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSCBrv30mD .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSCBrv30mD .container-fluid {
    padding: 0 50px;
}

@media (max-width: 992px) {
    .cid-tSCBrv30mD .container-fluid {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .cid-tSCBrv30mD .container {
        padding: 0 30px;
    }
}

.cid-tSCBrv30mD .image-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

@media (max-width: 992px) {
    .cid-tSCBrv30mD .image-wrapper {
        height: auto;
        margin-bottom: 20px;
    }
}

.cid-tSCBrv30mD .image-wrapper img {
    height: 250px;
    object-fit: cover;
    border-radius: 3em;
}

.cid-tSCBrv30mD .text-wrapper {
    margin-left: 32px;
}

@media (max-width: 992px) {
    .cid-tSCBrv30mD .text-wrapper {
        margin: 0;
    }
}

.cid-tSCBrv30mD .text-wrapper .mbr-text {
    margin-bottom: 0;
}

.cid-tSCBrv30mD .mbr-text {
    color: #ffffff;
}

.cid-tSCFlYkenT {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSCFlYkenT .image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: 5px;
    margin-right: 1rem;
    overflow: hidden;
}

.cid-tSCFlYkenT .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cid-tSCFlYkenT .card-wrapper {
    padding: 3rem;
    padding-bottom: 1rem;
    background: #131313;
    position: relative;
    margin-bottom: 2rem;
}

.cid-tSCFlYkenT .card-wrapper .mbr-iconfont {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 767px) {
    .cid-tSCFlYkenT .card-wrapper {
        padding: 1.5rem;
        padding-bottom: 0;
    }
}

.cid-tSCFlYkenT .primary {
    background: #fc7942;
}

.cid-tSCFlYkenT .primary .mbr-iconfont {
    color: #ffffff;
}

.cid-tSCFlYkenT .mbr-text {
    color: #bbbbbb;
}

.cid-tSCFlYkenT .name {
    color: #ffffff;
}

.cid-tSCFlYkenT .position {
    color: #bbbbbb;
}

.cid-tSCFlYkenT .mbr-section-title {
    color: #ffffff;
}

.cid-tSCFlYkenT .mbr-primarytext {
    color: #000000;
}

.cid-tSCFlYkenT .primary-name {
    color: #000000;
}

.cid-tSCFlYkenT .primary-position {
    color: #000000;
}

.cid-tSJ7RaKCv9 {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #06182d;
}

.cid-tSJ7RaKCv9 .mbr-overlay {
    background-color: #06182d;
    opacity: 0.7;
}

.cid-tSJ7RaKCv9 .items .list-item {
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7RaKCv9 .items .list-item .listico {
    display: inline-block;
    padding-right: 1rem;
    font-size: 1rem;
}

.cid-tSJ7RaKCv9 .items .list-item .text2 {
    display: inline-block;
    color: #ffffff;
    text-align: left;
    margin-bottom: 0;
}

.cid-tSJ7RaKCv9 li {
    margin: 0;
    list-style: none;
    cursor: pointer;
}

.cid-tSJ7RaKCv9 .align-wrap {
    display: flex;
    flex-direction: column;
}

.cid-tSJ7RaKCv9 .align-wrap .item-wrap {
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7RaKCv9 .align-wrap .item-wrap .card-img {
    margin-right: 15px;
}

.cid-tSJ7RaKCv9 .align-wrap .item-wrap .card-img .mbr-iconfont {
    color: #ff4e3c !important;
    font-size: 1.1rem;
}

.cid-tSJ7RaKCv9 .align-wrap .item-wrap .icons-wrap {
    display: flex;
    align-items: center;
}

.cid-tSJ7RaKCv9 .align-wrap .item-wrap .icons-wrap .icon-title {
    margin: 0;
    padding-bottom: 0px;
    color: #ffffff;
    font-weight: 300;
}

.cid-tSJ7RaKCv9 .align-wrap .item-wrap .icons-wrap:hover .icon-title {
    color: #d4b844;
}

.cid-tSJ7RaKCv9 .align-wrap .item-wrap span,
.cid-tSJ7RaKCv9 .align-wrap .item-wrap p {
    transition: all 0.3s;
}

.cid-tSJ7RaKCv9 .opening-hours .box-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
}

.cid-tSJ7RaKCv9 .opening-hours .box-list li {
    padding: 10px 0 10px;
    color: #ffffff;
}

.cid-tSJ7RaKCv9 .opening-hours .box-list li:first-child {
    padding-top: 0;
}

.cid-tSJ7RaKCv9 .opening-hours .box-list li:last-child {
    border-bottom: none;
}

.cid-tSJ7RaKCv9 .opening-hours .box-list li span {
    float: right;
    text-align: right;
    padding-left: 0.5rem;
    color: #ffffff;
}

.cid-tSJ7RaKCv9 .opening-hours .box-list.display-4 {
    line-height: 1.5;
}

@media (min-width: 1200px) {
    .cid-tSJ7RaKCv9 .col-lg-3 {
        max-width: 20%;
    }
}

@media (max-width: 992px) {
    .cid-tSJ7RaKCv9 .col-md-6 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-tSJ7RaKCv9 .socicon-wrap {
        margin: auto;
    }
}

.cid-tSJ7RaKCv9 .items .list-item .text2,
.cid-tSJ7RaKCv9 .items .list-item {
    text-align: center;
}

.cid-tSJ7SGwdnG {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #06182d;
}

.cid-tSJ7SGwdnG .copyright {
    display: flex;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .copyright {
        margin-bottom: 1rem;
    }
}

.cid-tSJ7SGwdnG .text-wrap {
    transition: all 0.3s;
    padding: 23px;
    bottom: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper {
    background: #06182d;
    display: flex;
    width: 31px;
    height: 31px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #384657;
    transition: all 0.3s;
    z-index: 4;
    cursor: pointer;
    margin: 0 0.2rem;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover {
    background: #ff4e3c;
    border-color: #ff4e3c;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
    color: #ffffde;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper .link-icon {
    display: inline-block;
    color: #ffffde;
    transition: all 0.3s;
    font-size: 14px;
    justify-content: center;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
    height: 2px;
    width: 100%;
    top: 50%;
    right: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
        display: none;
    }
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
    height: 2px;
    width: 100%;
    top: 50%;
    left: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
        display: none;
    }
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: relative !important;
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: absolute !important;
}

.cid-tSCpVaFTLq .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-tSCpVaFTLq .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tSCpVaFTLq .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-tSCpVaFTLq .dropdown-item:hover,
.cid-tSCpVaFTLq .dropdown-item:focus {
    background: #fc7942 !important;
    color: white !important;
}

.cid-tSCpVaFTLq .dropdown-item:hover span {
    color: white;
}

.cid-tSCpVaFTLq .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-tSCpVaFTLq .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-tSCpVaFTLq .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-tSCpVaFTLq .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-tSCpVaFTLq .nav-link {
    position: relative;
}

.cid-tSCpVaFTLq .container {
    display: flex;
    margin: auto;
}

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .container {
        flex-wrap: nowrap;
    }
}

.cid-tSCpVaFTLq .navbar-nav {
    margin: 0 auto;
}

.cid-tSCpVaFTLq .dropdown-menu,
.cid-tSCpVaFTLq .navbar.opened {
    background: #06182d !important;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}

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

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

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

.cid-tSCpVaFTLq .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    background: rgba(6, 24, 45, 0.2);
    border: none !important;
    box-shadow: none !important;
}

.cid-tSCpVaFTLq .navbar.opened {
    transition: all 0.3s;
}

.cid-tSCpVaFTLq .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}

.cid-tSCpVaFTLq .navbar .navbar-logo img {
    width: auto;
}

.cid-tSCpVaFTLq .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}

.cid-tSCpVaFTLq .navbar.collapsed {
    justify-content: center;
}

.cid-tSCpVaFTLq .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

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

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

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

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

.cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-tSCpVaFTLq .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tSCpVaFTLq .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tSCpVaFTLq .navbar .navbar-toggler {
        flex-basis: auto;
    }
}

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tSCpVaFTLq .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

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

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

.cid-tSCpVaFTLq .navbar-brand {
    min-height: 108px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #06182d;
}

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

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

.cid-tSCpVaFTLq ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tSCpVaFTLq .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tSCpVaFTLq button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

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

.cid-tSCpVaFTLq .navbar-dropdown {
    padding: 0 1rem;
}

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-tSCpVaFTLq .navbar {
        height: 70px;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        height: auto;
    }

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

.cid-tSCpVaFTLq .container,
.cid-tSCpVaFTLq .container-fluid {
    position: relative;
    min-height: 108px;
}

.cid-tSCpVaFTLq .navbar-short {
    background-color: #06182d !important;
}

.cid-tSCpVaFTLq .navbar-short .container,
.cid-tSCpVaFTLq .navbar-short .container-fluid {
    min-height: 85px;
}

.cid-tSCpVaFTLq .navbar-short .container:before,
.cid-tSCpVaFTLq .navbar-short .container-fluid:before {
    display: none;
}

.cid-tSCpVaFTLq .navbar-short .navbar-brand {
    min-height: 85px !important;
}

.cid-tSCpVaFTLq .mbr-section-btn .btn {
    padding: 10px 25px;
    min-height: 48px;
}

.cid-tSCpVaFTLq .border-item {
    position: absolute;
    bottom: -1px;
    display: none;
    width: 100%;
    background-color: transparent;
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .border-item {
        display: block;
    }
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar {
        overflow: hidden;
    }

    .cid-tSCpVaFTLq .container,
    .cid-tSCpVaFTLq .container-fluid {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-brand {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-short .container,
    .cid-tSCpVaFTLq .navbar-short .container-fluid {
        min-height: 75px;
    }

    .cid-tSCpVaFTLq .navbar-short .navbar-brand {
        min-height: 75px !important;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        background: rgba(6, 24, 45, 0.2) !important;
    }

    .cid-tSCpVaFTLq .navbar.navbar-short {
        background-color: #06182d !important;
    }

    .cid-tSCpVaFTLq .navbar-collapse {
        position: relative;
        order: 5;
        z-index: 5 !important;
        padding-bottom: 10px;
    }

    .cid-tSCpVaFTLq .navbar-nav .nav-item {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

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

    .cid-tSCpVaFTLq .border-item {
        position: relative;
        bottom: 0;
        margin-top: auto;
    }

    .cid-tSCpVaFTLq .border-item:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100vw;
        height: 100vw;
        background: #06182d;
        z-index: 4;
        transition: 0.1s all;
    }
}

.cid-tSF1YY6Vsi {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSF1YY6Vsi .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSF1YY6Vsi .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSF1YY6Vsi .row {
    margin: 0 !important;
    row-gap: 40px;
}

.cid-tSF1YY6Vsi .item-img {
    display: flex;
    justify-content: flex-start;
    width: 45%;
    padding: 0 !important;
}

.cid-tSF1YY6Vsi .item-img img {
    max-width: 580px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .cid-tSF1YY6Vsi .item-img {
        width: 100%;
    }
}

.cid-tSF1YY6Vsi .item-content {
    width: 50%;
    padding: 0 !important;
}

@media (max-width: 1500px) {
    .cid-tSF1YY6Vsi .item-content {
        padding-left: 40px !important;
    }
}

@media (max-width: 1199px) {
    .cid-tSF1YY6Vsi .item-content {
        padding-left: 25px !important;
    }
}

@media (max-width: 991px) {
    .cid-tSF1YY6Vsi .item-content {
        width: 100%;
        padding: 0 !important;
    }
}

.cid-tSF1YY6Vsi .card-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSF1YY6Vsi .card-text {
    margin-top: 25px;
    color: #131313;
}

.cid-tSF1YY6Vsi .list-box {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    width: 100%;
    margin-top: 30px;
    color: #973e3e;
}

.cid-tSF1YY6Vsi .list-item {
    display: flex;
    align-items: center;
    width: 100%;
    column-gap: 12px;
}

.cid-tSF1YY6Vsi .iconfont-wrapper {
    flex-shrink: 0;
}

.cid-tSF1YY6Vsi .iconfont-wrapper .mbr-iconfont {
    display: block;
    font-size: 25px;
    color: #fc7942;
    transform: rotate(-45deg);
}

.cid-tSF1YY6Vsi .list-text {
    flex-grow: 1;
    color: #dadb13;
}

.cid-tSF1YY6Vsi .mbr-section-btn {
    margin-top: 40px;
}

@media (max-width: 1500px) {
    .cid-tSF1YY6Vsi .mbr-section-btn {
        margin-top: 15px;
    }
}

.cid-tSF1YY6Vsi .card-text,
.cid-tSF1YY6Vsi .mbr-section-btn {
    color: #ffffff;
}

.cid-tSF1YY6Vsi .card-title DIV {
    text-align: center;
}

.cid-tSF4rZ9oAW {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSF4rZ9oAW .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSF4rZ9oAW .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSF4rZ9oAW .container-fluid {
    padding: 0 80px;
}

@media (max-width: 992px) {
    .cid-tSF4rZ9oAW .container-fluid {
        padding: 0 24px;
    }
}

@media (max-width: 992px) {
    .cid-tSF4rZ9oAW .container {
        padding: 0 24px;
    }
}

.cid-tSF4rZ9oAW .row {
    justify-content: center;
}

.cid-tSF4rZ9oAW .content-wrapper {
    border-radius: 40px;
    background-color: #5189b8;
    padding: 64px;
}

@media (max-width: 992px) {
    .cid-tSF4rZ9oAW .content-wrapper {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .cid-tSF4rZ9oAW .content-wrapper {
        padding: 32px;
    }
}

.cid-tSF4rZ9oAW .content-wrapper .mbr-section-title {
    margin-bottom: 0;
}

.cid-tSF4rZ9oAW .content-wrapper .mbr-text {
    margin: 16px 0 0;
}

.cid-tSF4rZ9oAW .mbr-section-title {
    color: #131313;
    text-align: center;
}

.cid-tSF4rZ9oAW .mbr-text {
    color: #131313;
    text-align: center;
}

.cid-tSFm2WjQcB {
    padding-top: 2rem;
    padding-bottom: 6rem;
    background: #06182d;
}

.cid-tSFm2WjQcB .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSFm2WjQcB .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSFm2WjQcB .team-card {
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.cid-tSFm2WjQcB .team-card:hover {
    transform: translateY(-10px);
}

.cid-tSFm2WjQcB .content-head {
    max-width: 800px;
}

.cid-tSFm2WjQcB .card1 {
    background: #5189b8;
}

.cid-tSFm2WjQcB .card2 {
    background: #5189b8;
}

.cid-tSFm2WjQcB .card3 {
    background: #5189b8;
}

.cid-tSFm2WjQcB .card4 {
    background: #2e481a;
}

.cid-tSFm2WjQcB .image-wrap {
    padding-bottom: 0rem;
    position: relative;
}

.cid-tSFm2WjQcB .image-wrap .social-row {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}

.cid-tSFm2WjQcB .card-wrap {
    margin-bottom: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .cid-tSFm2WjQcB .card-wrap {
        margin-bottom: 1rem;
    }
}

.cid-tSFm2WjQcB .card-wrap .image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cid-tSFm2WjQcB .card-wrap .content-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cid-tSFm2WjQcB .card-wrap .content-wrap .content-footer {
    margin-top: auto;
}

@media (min-width: 768px) {
    .cid-tSFm2WjQcB .card-wrap .content-wrap {
        padding: 2.25rem;
    }
}

@media (max-width: 767px) {
    .cid-tSFm2WjQcB .card-wrap .content-wrap {
        padding: 1.5rem;
    }
}

.cid-tSFm2WjQcB .social-row .soc-item {
    display: inline-block;
    text-align: center;
    border-radius: 1.5rem;
    margin-right: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
}

.cid-tSFm2WjQcB .tag1 {
    background: #5189b8;
    color: #502274;
}

.cid-tSFm2WjQcB .tag2 {
    background: #5189b8;
    color: #ffd7ef;
}

.cid-tSFm2WjQcB .tag3 {
    background: #5189b8;
    color: #232323;
}

.cid-tSFm2WjQcB .tag4 {
    background: #2e481a;
    color: #ffffff;
}

.cid-tSFm2WjQcB .card-text3,
.cid-tSFm2WjQcB .mbr-section-btn {
    color: #232323;
}

.cid-tSFm2WjQcB .card-text2,
.cid-tSFm2WjQcB .mbr-section-btn {
    color: #ffd7ef;
}

.cid-tSFm2WjQcB .card-text1,
.cid-tSFm2WjQcB .mbr-section-btn {
    color: #502274;
}

.cid-tSFm2WjQcB .card-title2,
.cid-tSFm2WjQcB .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSFm2WjQcB .mbr-role3,
.cid-tSFm2WjQcB .social-row {
    color: #ffffff;
}

.cid-tSFm2WjQcB .card-title3,
.cid-tSFm2WjQcB .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSFm2WjQcB .card-title4,
.cid-tSFm2WjQcB .social-row {
    color: #ffffff;
}

.cid-tSFm2WjQcB .mbr-role3 {
    color: #232323;
}

.cid-tSFm2WjQcB .mbr-role2 {
    color: #ffd7ef;
}

.cid-tSFm2WjQcB .mbr-role4 {
    color: #ffffff;
}

.cid-tSFm2WjQcB .card-text4,
.cid-tSFm2WjQcB .mbr-section-btn {
    color: #ffffff;
}

.cid-tSFm2WjQcB .card-text1,
.cid-tSFm2WjQcB .card1 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSFm2WjQcB .card-title1,
.cid-tSFm2WjQcB .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSFm2WjQcB .card-text2,
.cid-tSFm2WjQcB .card2 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSFm2WjQcB .card-text3,
.cid-tSFm2WjQcB .card3 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSFm2WjQcB .mbr-section-title {
    color: #ffffff;
}

.cid-tSG5cEsMjM {
    padding-top: 1rem;
    padding-bottom: 6rem;
    background: #06182d;
}

.cid-tSG5cEsMjM .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSG5cEsMjM .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSG5cEsMjM .team-card {
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.cid-tSG5cEsMjM .team-card:hover {
    transform: translateY(-10px);
}

.cid-tSG5cEsMjM .content-head {
    max-width: 800px;
}

.cid-tSG5cEsMjM .card1 {
    background: #5189b8;
}

.cid-tSG5cEsMjM .card2 {
    background: #5189b8;
}

.cid-tSG5cEsMjM .card3 {
    background: #5189b8;
}

.cid-tSG5cEsMjM .card4 {
    background: #2e481a;
}

.cid-tSG5cEsMjM .image-wrap {
    padding-bottom: 0rem;
    position: relative;
}

.cid-tSG5cEsMjM .image-wrap .social-row {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}

.cid-tSG5cEsMjM .card-wrap {
    margin-bottom: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .cid-tSG5cEsMjM .card-wrap {
        margin-bottom: 1rem;
    }
}

.cid-tSG5cEsMjM .card-wrap .image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cid-tSG5cEsMjM .card-wrap .content-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cid-tSG5cEsMjM .card-wrap .content-wrap .content-footer {
    margin-top: auto;
}

@media (min-width: 768px) {
    .cid-tSG5cEsMjM .card-wrap .content-wrap {
        padding: 2.25rem;
    }
}

@media (max-width: 767px) {
    .cid-tSG5cEsMjM .card-wrap .content-wrap {
        padding: 1.5rem;
    }
}

.cid-tSG5cEsMjM .social-row .soc-item {
    display: inline-block;
    text-align: center;
    border-radius: 1.5rem;
    margin-right: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
}

.cid-tSG5cEsMjM .tag1 {
    background: #5189b8;
    color: #502274;
}

.cid-tSG5cEsMjM .tag2 {
    background: #5189b8;
    color: #ffd7ef;
}

.cid-tSG5cEsMjM .tag3 {
    background: #5189b8;
    color: #232323;
}

.cid-tSG5cEsMjM .tag4 {
    background: #2e481a;
    color: #ffffff;
}

.cid-tSG5cEsMjM .card-text3,
.cid-tSG5cEsMjM .mbr-section-btn {
    color: #232323;
}

.cid-tSG5cEsMjM .card-text2,
.cid-tSG5cEsMjM .mbr-section-btn {
    color: #ffd7ef;
}

.cid-tSG5cEsMjM .card-text1,
.cid-tSG5cEsMjM .mbr-section-btn {
    color: #502274;
}

.cid-tSG5cEsMjM .card-title2,
.cid-tSG5cEsMjM .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSG5cEsMjM .mbr-role3,
.cid-tSG5cEsMjM .social-row {
    color: #ffffff;
}

.cid-tSG5cEsMjM .card-title3,
.cid-tSG5cEsMjM .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSG5cEsMjM .card-title4,
.cid-tSG5cEsMjM .social-row {
    color: #ffffff;
}

.cid-tSG5cEsMjM .mbr-role3 {
    color: #232323;
}

.cid-tSG5cEsMjM .mbr-role2 {
    color: #ffd7ef;
}

.cid-tSG5cEsMjM .mbr-role4 {
    color: #ffffff;
}

.cid-tSG5cEsMjM .card-text4,
.cid-tSG5cEsMjM .mbr-section-btn {
    color: #ffffff;
}

.cid-tSG5cEsMjM .card-text1,
.cid-tSG5cEsMjM .card1 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSG5cEsMjM .card-title1,
.cid-tSG5cEsMjM .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSG5cEsMjM .card-text2,
.cid-tSG5cEsMjM .card2 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSG5cEsMjM .card-text3,
.cid-tSG5cEsMjM .card3 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSG5cEsMjM .mbr-section-title {
    color: #ffffff;
}

.cid-tSJ7WYW5OM {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #06182d;
}

.cid-tSJ7WYW5OM .mbr-overlay {
    background-color: #06182d;
    opacity: 0.7;
}

.cid-tSJ7WYW5OM .items .list-item {
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7WYW5OM .items .list-item .listico {
    display: inline-block;
    padding-right: 1rem;
    font-size: 1rem;
}

.cid-tSJ7WYW5OM .items .list-item .text2 {
    display: inline-block;
    color: #ffffff;
    text-align: left;
    margin-bottom: 0;
}

.cid-tSJ7WYW5OM li {
    margin: 0;
    list-style: none;
    cursor: pointer;
}

.cid-tSJ7WYW5OM .align-wrap {
    display: flex;
    flex-direction: column;
}

.cid-tSJ7WYW5OM .align-wrap .item-wrap {
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7WYW5OM .align-wrap .item-wrap .card-img {
    margin-right: 15px;
}

.cid-tSJ7WYW5OM .align-wrap .item-wrap .card-img .mbr-iconfont {
    color: #ff4e3c !important;
    font-size: 1.1rem;
}

.cid-tSJ7WYW5OM .align-wrap .item-wrap .icons-wrap {
    display: flex;
    align-items: center;
}

.cid-tSJ7WYW5OM .align-wrap .item-wrap .icons-wrap .icon-title {
    margin: 0;
    padding-bottom: 0px;
    color: #ffffff;
    font-weight: 300;
}

.cid-tSJ7WYW5OM .align-wrap .item-wrap .icons-wrap:hover .icon-title {
    color: #d4b844;
}

.cid-tSJ7WYW5OM .align-wrap .item-wrap span,
.cid-tSJ7WYW5OM .align-wrap .item-wrap p {
    transition: all 0.3s;
}

.cid-tSJ7WYW5OM .opening-hours .box-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
}

.cid-tSJ7WYW5OM .opening-hours .box-list li {
    padding: 10px 0 10px;
    color: #ffffff;
}

.cid-tSJ7WYW5OM .opening-hours .box-list li:first-child {
    padding-top: 0;
}

.cid-tSJ7WYW5OM .opening-hours .box-list li:last-child {
    border-bottom: none;
}

.cid-tSJ7WYW5OM .opening-hours .box-list li span {
    float: right;
    text-align: right;
    padding-left: 0.5rem;
    color: #ffffff;
}

.cid-tSJ7WYW5OM .opening-hours .box-list.display-4 {
    line-height: 1.5;
}

@media (min-width: 1200px) {
    .cid-tSJ7WYW5OM .col-lg-3 {
        max-width: 20%;
    }
}

@media (max-width: 992px) {
    .cid-tSJ7WYW5OM .col-md-6 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-tSJ7WYW5OM .socicon-wrap {
        margin: auto;
    }
}

.cid-tSJ7WYW5OM .items .list-item .text2,
.cid-tSJ7WYW5OM .items .list-item {
    text-align: center;
}

.cid-tSJ7SGwdnG {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #06182d;
}

.cid-tSJ7SGwdnG .copyright {
    display: flex;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .copyright {
        margin-bottom: 1rem;
    }
}

.cid-tSJ7SGwdnG .text-wrap {
    transition: all 0.3s;
    padding: 23px;
    bottom: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper {
    background: #06182d;
    display: flex;
    width: 31px;
    height: 31px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #384657;
    transition: all 0.3s;
    z-index: 4;
    cursor: pointer;
    margin: 0 0.2rem;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover {
    background: #ff4e3c;
    border-color: #ff4e3c;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
    color: #ffffde;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper .link-icon {
    display: inline-block;
    color: #ffffde;
    transition: all 0.3s;
    font-size: 14px;
    justify-content: center;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
    height: 2px;
    width: 100%;
    top: 50%;
    right: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
        display: none;
    }
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
    height: 2px;
    width: 100%;
    top: 50%;
    left: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
        display: none;
    }
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: relative !important;
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: absolute !important;
}

.cid-tSCpVaFTLq .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-tSCpVaFTLq .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tSCpVaFTLq .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-tSCpVaFTLq .dropdown-item:hover,
.cid-tSCpVaFTLq .dropdown-item:focus {
    background: #fc7942 !important;
    color: white !important;
}

.cid-tSCpVaFTLq .dropdown-item:hover span {
    color: white;
}

.cid-tSCpVaFTLq .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-tSCpVaFTLq .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-tSCpVaFTLq .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-tSCpVaFTLq .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-tSCpVaFTLq .nav-link {
    position: relative;
}

.cid-tSCpVaFTLq .container {
    display: flex;
    margin: auto;
}

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .container {
        flex-wrap: nowrap;
    }
}

.cid-tSCpVaFTLq .navbar-nav {
    margin: 0 auto;
}

.cid-tSCpVaFTLq .dropdown-menu,
.cid-tSCpVaFTLq .navbar.opened {
    background: #06182d !important;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}

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

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

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

.cid-tSCpVaFTLq .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    background: rgba(6, 24, 45, 0.2);
    border: none !important;
    box-shadow: none !important;
}

.cid-tSCpVaFTLq .navbar.opened {
    transition: all 0.3s;
}

.cid-tSCpVaFTLq .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}

.cid-tSCpVaFTLq .navbar .navbar-logo img {
    width: auto;
}

.cid-tSCpVaFTLq .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}

.cid-tSCpVaFTLq .navbar.collapsed {
    justify-content: center;
}

.cid-tSCpVaFTLq .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

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

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

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

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

.cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-tSCpVaFTLq .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tSCpVaFTLq .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tSCpVaFTLq .navbar .navbar-toggler {
        flex-basis: auto;
    }
}

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tSCpVaFTLq .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

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

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

.cid-tSCpVaFTLq .navbar-brand {
    min-height: 108px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #06182d;
}

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

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

.cid-tSCpVaFTLq ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tSCpVaFTLq .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tSCpVaFTLq button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

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

.cid-tSCpVaFTLq .navbar-dropdown {
    padding: 0 1rem;
}

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-tSCpVaFTLq .navbar {
        height: 70px;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        height: auto;
    }

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

.cid-tSCpVaFTLq .container,
.cid-tSCpVaFTLq .container-fluid {
    position: relative;
    min-height: 108px;
}

.cid-tSCpVaFTLq .navbar-short {
    background-color: #06182d !important;
}

.cid-tSCpVaFTLq .navbar-short .container,
.cid-tSCpVaFTLq .navbar-short .container-fluid {
    min-height: 85px;
}

.cid-tSCpVaFTLq .navbar-short .container:before,
.cid-tSCpVaFTLq .navbar-short .container-fluid:before {
    display: none;
}

.cid-tSCpVaFTLq .navbar-short .navbar-brand {
    min-height: 85px !important;
}

.cid-tSCpVaFTLq .mbr-section-btn .btn {
    padding: 10px 25px;
    min-height: 48px;
}

.cid-tSCpVaFTLq .border-item {
    position: absolute;
    bottom: -1px;
    display: none;
    width: 100%;
    background-color: transparent;
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .border-item {
        display: block;
    }
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar {
        overflow: hidden;
    }

    .cid-tSCpVaFTLq .container,
    .cid-tSCpVaFTLq .container-fluid {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-brand {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-short .container,
    .cid-tSCpVaFTLq .navbar-short .container-fluid {
        min-height: 75px;
    }

    .cid-tSCpVaFTLq .navbar-short .navbar-brand {
        min-height: 75px !important;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        background: rgba(6, 24, 45, 0.2) !important;
    }

    .cid-tSCpVaFTLq .navbar.navbar-short {
        background-color: #06182d !important;
    }

    .cid-tSCpVaFTLq .navbar-collapse {
        position: relative;
        order: 5;
        z-index: 5 !important;
        padding-bottom: 10px;
    }

    .cid-tSCpVaFTLq .navbar-nav .nav-item {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

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

    .cid-tSCpVaFTLq .border-item {
        position: relative;
        bottom: 0;
        margin-top: auto;
    }

    .cid-tSCpVaFTLq .border-item:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100vw;
        height: 100vw;
        background: #06182d;
        z-index: 4;
        transition: 0.1s all;
    }
}

.cid-tSJ0Nu7gSy {
    padding-top: 9rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSJ0Nu7gSy .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSJ0Nu7gSy .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSJ0Nu7gSy .mbr-section-head {
    margin-bottom: 70px;
}

@media (max-width: 1399px) {
    .cid-tSJ0Nu7gSy .mbr-section-head {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .cid-tSJ0Nu7gSy .mbr-section-head {
        margin-bottom: 30px;
    }
}

.cid-tSJ0Nu7gSy .mbr-section-title {
    color: #ffffff;
}

.cid-tSJ0Nu7gSy .mbr-section-subtitle {
    margin-top: 18px;
    color: #ffffff;
}

.cid-tSJ0Nu7gSy .cards-row {
    margin-top: 5px;
    row-gap: 30px;
}

.cid-tSJ0Nu7gSy .card {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 0;
}

.cid-tSJ0Nu7gSy .card-wrapper {
    display: flex;
    width: calc(100% - 24px);
    padding: 52px 30px 52px 40px;
    margin: 0 auto;
    border: 2px solid #4a9e63;
    box-shadow: 4px 4px 0 #4a9e63;
    background: #5189b8;
    transition: .3s all;
}

@media (max-width: 1199px) {
    .cid-tSJ0Nu7gSy .card-wrapper {
        padding: 40px 30px 40px 40px;
    }
}

@media (max-width: 991px) {
    .cid-tSJ0Nu7gSy .card-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .cid-tSJ0Nu7gSy .card-wrapper {
        width: calc(100% - 14px);
        flex-direction: column;
        padding: 30px 25px 25px;
    }
}

@media (min-width: 992px) {
    .cid-tSJ0Nu7gSy .card-wrapper:hover {
        box-shadow: none;
        transform: translateY(-5px);
    }
}

.cid-tSJ0Nu7gSy .iconfont-wrapper {
    margin-right: 40px;
}

@media (max-width: 767px) {
    .cid-tSJ0Nu7gSy .iconfont-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.cid-tSJ0Nu7gSy .iconfont-wrapper .mbr-iconfont {
    display: block;
    font-size: 100px;
    color: #a6d8b5;
}

.cid-tSJ0Nu7gSy .content-wrap {
    margin-top: 10px;
}

@media (max-width: 1199px) {
    .cid-tSJ0Nu7gSy .content-wrap {
        margin-top: 0;
    }
}

.cid-tSJ0Nu7gSy .card-title {
    color: #131313;
}

.cid-tSJ0Nu7gSy .card-text {
    margin-top: 24px;
    color: #131313;
}

@media (max-width: 1199px) {
    .cid-tSJ0Nu7gSy .card-text {
        margin-top: 15px;
    }
}

.cid-tSJ0Nu7gSy .card-link {
    margin-top: 24px;
    color: #131313;
}

@media (max-width: 1199px) {
    .cid-tSJ0Nu7gSy .card-link {
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .cid-tSJ0Nu7gSy .card-link {
        margin-top: 15px;
    }
}

.cid-tSJ0Nu7gSy .card-link a.text-primary:hover {
    color: #131313 !important;
}

.cid-tSJ2ckL7yN {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSJ2ckL7yN .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSJ2ckL7yN .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSJ2ckL7yN .mbr-section-head {
    margin-bottom: 70px;
}

@media (max-width: 1399px) {
    .cid-tSJ2ckL7yN .mbr-section-head {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .cid-tSJ2ckL7yN .mbr-section-head {
        margin-bottom: 30px;
    }
}

.cid-tSJ2ckL7yN .mbr-section-title {
    color: #131313;
}

.cid-tSJ2ckL7yN .mbr-section-subtitle {
    margin-top: 18px;
    color: #131313;
}

.cid-tSJ2ckL7yN .cards-row {
    margin-top: 5px;
    row-gap: 30px;
}

.cid-tSJ2ckL7yN .card {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 0;
}

.cid-tSJ2ckL7yN .card-wrapper {
    display: flex;
    width: calc(100% - 24px);
    padding: 52px 30px 52px 40px;
    margin: 0 auto;
    border: 2px solid #4a9e63;
    box-shadow: 4px 4px 0 #4a9e63;
    background: #5189b8;
    transition: .3s all;
}

@media (max-width: 1199px) {
    .cid-tSJ2ckL7yN .card-wrapper {
        padding: 40px 30px 40px 40px;
    }
}

@media (max-width: 991px) {
    .cid-tSJ2ckL7yN .card-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .cid-tSJ2ckL7yN .card-wrapper {
        width: calc(100% - 14px);
        flex-direction: column;
        padding: 30px 25px 25px;
    }
}

@media (min-width: 992px) {
    .cid-tSJ2ckL7yN .card-wrapper:hover {
        box-shadow: none;
        transform: translateY(-5px);
    }
}

.cid-tSJ2ckL7yN .iconfont-wrapper {
    margin-right: 40px;
}

@media (max-width: 767px) {
    .cid-tSJ2ckL7yN .iconfont-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.cid-tSJ2ckL7yN .iconfont-wrapper .mbr-iconfont {
    display: block;
    font-size: 100px;
    color: #78be8d;
}

.cid-tSJ2ckL7yN .content-wrap {
    margin-top: 10px;
}

@media (max-width: 1199px) {
    .cid-tSJ2ckL7yN .content-wrap {
        margin-top: 0;
    }
}

.cid-tSJ2ckL7yN .card-title {
    color: #131313;
}

.cid-tSJ2ckL7yN .card-text {
    margin-top: 24px;
    color: #131313;
}

@media (max-width: 1199px) {
    .cid-tSJ2ckL7yN .card-text {
        margin-top: 15px;
    }
}

.cid-tSJ2ckL7yN .card-link {
    margin-top: 24px;
    color: #131313;
}

@media (max-width: 1199px) {
    .cid-tSJ2ckL7yN .card-link {
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .cid-tSJ2ckL7yN .card-link {
        margin-top: 15px;
    }
}

.cid-tSJ2ckL7yN .card-link a.text-primary:hover {
    color: #131313 !important;
}

.cid-tSKXwS0UtR {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSKXwS0UtR .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSKXwS0UtR .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSKXwS0UtR .mbr-section-head {
    margin-bottom: 70px;
}

@media (max-width: 1399px) {
    .cid-tSKXwS0UtR .mbr-section-head {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .cid-tSKXwS0UtR .mbr-section-head {
        margin-bottom: 30px;
    }
}

.cid-tSKXwS0UtR .mbr-section-title {
    color: #131313;
}

.cid-tSKXwS0UtR .mbr-section-subtitle {
    margin-top: 18px;
    color: #131313;
}

.cid-tSKXwS0UtR .cards-row {
    margin-top: 5px;
    row-gap: 30px;
}

.cid-tSKXwS0UtR .card {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 0;
}

.cid-tSKXwS0UtR .card-wrapper {
    display: flex;
    width: calc(100% - 24px);
    padding: 52px 30px 52px 40px;
    margin: 0 auto;
    border: 2px solid #4a9e63;
    box-shadow: 4px 4px 0 #4a9e63;
    background: #5189b8;
    transition: .3s all;
}

@media (max-width: 1199px) {
    .cid-tSKXwS0UtR .card-wrapper {
        padding: 40px 30px 40px 40px;
    }
}

@media (max-width: 991px) {
    .cid-tSKXwS0UtR .card-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .cid-tSKXwS0UtR .card-wrapper {
        width: calc(100% - 14px);
        flex-direction: column;
        padding: 30px 25px 25px;
    }
}

@media (min-width: 992px) {
    .cid-tSKXwS0UtR .card-wrapper:hover {
        box-shadow: none;
        transform: translateY(-5px);
    }
}

.cid-tSKXwS0UtR .iconfont-wrapper {
    margin-right: 40px;
}

@media (max-width: 767px) {
    .cid-tSKXwS0UtR .iconfont-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.cid-tSKXwS0UtR .iconfont-wrapper .mbr-iconfont {
    display: block;
    font-size: 100px;
    color: #78be8d;
}

.cid-tSKXwS0UtR .content-wrap {
    margin-top: 10px;
}

@media (max-width: 1199px) {
    .cid-tSKXwS0UtR .content-wrap {
        margin-top: 0;
    }
}

.cid-tSKXwS0UtR .card-title {
    color: #131313;
    text-align: center;
}

.cid-tSKXwS0UtR .card-text {
    margin-top: 24px;
    text-align: center;
}

@media (max-width: 1199px) {
    .cid-tSKXwS0UtR .card-text {
        margin-top: 15px;
    }
}

.cid-tSKXwS0UtR .card-link {
    margin-top: 24px;
    color: #131313;
}

@media (max-width: 1199px) {
    .cid-tSKXwS0UtR .card-link {
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .cid-tSKXwS0UtR .card-link {
        margin-top: 15px;
    }
}

.cid-tSKXwS0UtR .card-link a.text-primary:hover {
    color: #131313 !important;
}

.cid-tSKUQETP6X {
    padding-top: 2rem;
    padding-bottom: 6rem;
    background: #06182d;
}

.cid-tSKUQETP6X .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSKUQETP6X .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSKUQETP6X .team-card {
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.cid-tSKUQETP6X .team-card:hover {
    transform: translateY(-10px);
}

.cid-tSKUQETP6X .content-head {
    max-width: 800px;
}

.cid-tSKUQETP6X .card1 {
    background: #5189b8;
}

.cid-tSKUQETP6X .card2 {
    background: #5189b8;
}

.cid-tSKUQETP6X .card3 {
    background: #5189b8;
}

.cid-tSKUQETP6X .card4 {
    background: #2e481a;
}

.cid-tSKUQETP6X .image-wrap {
    padding-bottom: 0rem;
    position: relative;
}

.cid-tSKUQETP6X .image-wrap .social-row {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}

.cid-tSKUQETP6X .card-wrap {
    margin-bottom: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .cid-tSKUQETP6X .card-wrap {
        margin-bottom: 1rem;
    }
}

.cid-tSKUQETP6X .card-wrap .image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cid-tSKUQETP6X .card-wrap .content-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cid-tSKUQETP6X .card-wrap .content-wrap .content-footer {
    margin-top: auto;
}

@media (min-width: 768px) {
    .cid-tSKUQETP6X .card-wrap .content-wrap {
        padding: 2.25rem;
    }
}

@media (max-width: 767px) {
    .cid-tSKUQETP6X .card-wrap .content-wrap {
        padding: 1.5rem;
    }
}

.cid-tSKUQETP6X .social-row .soc-item {
    display: inline-block;
    text-align: center;
    border-radius: 1.5rem;
    margin-right: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
}

.cid-tSKUQETP6X .tag1 {
    background: #5189b8;
    color: #502274;
}

.cid-tSKUQETP6X .tag2 {
    background: #5189b8;
    color: #ffd7ef;
}

.cid-tSKUQETP6X .tag3 {
    background: #5189b8;
    color: #232323;
}

.cid-tSKUQETP6X .tag4 {
    background: #2e481a;
    color: #ffffff;
}

.cid-tSKUQETP6X .card-text3,
.cid-tSKUQETP6X .mbr-section-btn {
    color: #232323;
}

.cid-tSKUQETP6X .card-text2,
.cid-tSKUQETP6X .mbr-section-btn {
    color: #ffd7ef;
}

.cid-tSKUQETP6X .card-text1,
.cid-tSKUQETP6X .mbr-section-btn {
    color: #502274;
}

.cid-tSKUQETP6X .card-title2,
.cid-tSKUQETP6X .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSKUQETP6X .mbr-role3,
.cid-tSKUQETP6X .social-row {
    color: #ffffff;
}

.cid-tSKUQETP6X .card-title3,
.cid-tSKUQETP6X .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSKUQETP6X .card-title4,
.cid-tSKUQETP6X .social-row {
    color: #ffffff;
}

.cid-tSKUQETP6X .mbr-role3 {
    color: #232323;
}

.cid-tSKUQETP6X .mbr-role2 {
    color: #ffd7ef;
}

.cid-tSKUQETP6X .mbr-role4 {
    color: #ffffff;
}

.cid-tSKUQETP6X .card-text4,
.cid-tSKUQETP6X .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKUQETP6X .card-text1,
.cid-tSKUQETP6X .card1 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSKUQETP6X .card-title1,
.cid-tSKUQETP6X .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSKUQETP6X .card-text2,
.cid-tSKUQETP6X .card2 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSKUQETP6X .card-text3,
.cid-tSKUQETP6X .card3 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSKUQETP6X .mbr-section-title {
    color: #ffffff;
}

.cid-tSKURqnGC1 {
    padding-top: 1rem;
    padding-bottom: 6rem;
    background: #06182d;
}

.cid-tSKURqnGC1 .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSKURqnGC1 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSKURqnGC1 .team-card {
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.cid-tSKURqnGC1 .team-card:hover {
    transform: translateY(-10px);
}

.cid-tSKURqnGC1 .content-head {
    max-width: 800px;
}

.cid-tSKURqnGC1 .card1 {
    background: #5189b8;
}

.cid-tSKURqnGC1 .card2 {
    background: #5189b8;
}

.cid-tSKURqnGC1 .card3 {
    background: #5189b8;
}

.cid-tSKURqnGC1 .card4 {
    background: #2e481a;
}

.cid-tSKURqnGC1 .image-wrap {
    padding-bottom: 0rem;
    position: relative;
}

.cid-tSKURqnGC1 .image-wrap .social-row {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}

.cid-tSKURqnGC1 .card-wrap {
    margin-bottom: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .cid-tSKURqnGC1 .card-wrap {
        margin-bottom: 1rem;
    }
}

.cid-tSKURqnGC1 .card-wrap .image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cid-tSKURqnGC1 .card-wrap .content-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cid-tSKURqnGC1 .card-wrap .content-wrap .content-footer {
    margin-top: auto;
}

@media (min-width: 768px) {
    .cid-tSKURqnGC1 .card-wrap .content-wrap {
        padding: 2.25rem;
    }
}

@media (max-width: 767px) {
    .cid-tSKURqnGC1 .card-wrap .content-wrap {
        padding: 1.5rem;
    }
}

.cid-tSKURqnGC1 .social-row .soc-item {
    display: inline-block;
    text-align: center;
    border-radius: 1.5rem;
    margin-right: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
}

.cid-tSKURqnGC1 .tag1 {
    background: #5189b8;
    color: #502274;
}

.cid-tSKURqnGC1 .tag2 {
    background: #5189b8;
    color: #ffd7ef;
}

.cid-tSKURqnGC1 .tag3 {
    background: #5189b8;
    color: #232323;
}

.cid-tSKURqnGC1 .tag4 {
    background: #2e481a;
    color: #ffffff;
}

.cid-tSKURqnGC1 .card-text3,
.cid-tSKURqnGC1 .mbr-section-btn {
    color: #232323;
}

.cid-tSKURqnGC1 .card-text2,
.cid-tSKURqnGC1 .mbr-section-btn {
    color: #ffd7ef;
}

.cid-tSKURqnGC1 .card-text1,
.cid-tSKURqnGC1 .mbr-section-btn {
    color: #502274;
}

.cid-tSKURqnGC1 .card-title2,
.cid-tSKURqnGC1 .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSKURqnGC1 .mbr-role3,
.cid-tSKURqnGC1 .social-row {
    color: #ffffff;
}

.cid-tSKURqnGC1 .card-title3,
.cid-tSKURqnGC1 .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSKURqnGC1 .card-title4,
.cid-tSKURqnGC1 .social-row {
    color: #ffffff;
}

.cid-tSKURqnGC1 .mbr-role3 {
    color: #232323;
}

.cid-tSKURqnGC1 .mbr-role2 {
    color: #ffd7ef;
}

.cid-tSKURqnGC1 .mbr-role4 {
    color: #ffffff;
}

.cid-tSKURqnGC1 .card-text4,
.cid-tSKURqnGC1 .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKURqnGC1 .card-text1,
.cid-tSKURqnGC1 .card1 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSKURqnGC1 .card-title1,
.cid-tSKURqnGC1 .social-row {
    color: #131313;
    text-align: center;
}

.cid-tSKURqnGC1 .card-text2,
.cid-tSKURqnGC1 .card2 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSKURqnGC1 .card-text3,
.cid-tSKURqnGC1 .card3 .mbr-section-btn {
    color: #131313;
    text-align: center;
}

.cid-tSKURqnGC1 .mbr-section-title {
    color: #ffc107;
}

.cid-tSJ8cffeYv {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSJ8cffeYv .image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: 5px;
    margin-right: 1rem;
    overflow: hidden;
}

.cid-tSJ8cffeYv .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cid-tSJ8cffeYv .card-wrapper {
    padding: 3rem;
    padding-bottom: 1rem;
    background: #131313;
    position: relative;
    margin-bottom: 2rem;
}

.cid-tSJ8cffeYv .card-wrapper .mbr-iconfont {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 767px) {
    .cid-tSJ8cffeYv .card-wrapper {
        padding: 1.5rem;
        padding-bottom: 0;
    }
}

.cid-tSJ8cffeYv .primary {
    background: #fc7942;
}

.cid-tSJ8cffeYv .primary .mbr-iconfont {
    color: #ffffff;
}

.cid-tSJ8cffeYv .mbr-text {
    color: #bbbbbb;
}

.cid-tSJ8cffeYv .name {
    color: #ffffff;
}

.cid-tSJ8cffeYv .position {
    color: #bbbbbb;
}

.cid-tSJ8cffeYv .mbr-section-title {
    color: #ffffff;
}

.cid-tSJ8cffeYv .mbr-primarytext {
    color: #000000;
}

.cid-tSJ8cffeYv .primary-name {
    color: #000000;
}

.cid-tSJ8cffeYv .primary-position {
    color: #000000;
}

.cid-tSJ7zhk4gc {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #06182d;
}

.cid-tSJ7zhk4gc .mbr-overlay {
    background-color: #06182d;
    opacity: 0.7;
}

.cid-tSJ7zhk4gc .items .list-item {
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7zhk4gc .items .list-item .listico {
    display: inline-block;
    padding-right: 1rem;
    font-size: 1rem;
}

.cid-tSJ7zhk4gc .items .list-item .text2 {
    display: inline-block;
    color: #ffffff;
    text-align: left;
    margin-bottom: 0;
}

.cid-tSJ7zhk4gc li {
    margin: 0;
    list-style: none;
    cursor: pointer;
}

.cid-tSJ7zhk4gc .align-wrap {
    display: flex;
    flex-direction: column;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap {
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .card-img {
    margin-right: 15px;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .card-img .mbr-iconfont {
    color: #ff4e3c !important;
    font-size: 1.1rem;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap {
    display: flex;
    align-items: center;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap .icon-title {
    margin: 0;
    padding-bottom: 0px;
    color: #ffffff;
    font-weight: 300;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap:hover .icon-title {
    color: #d4b844;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap span,
.cid-tSJ7zhk4gc .align-wrap .item-wrap p {
    transition: all 0.3s;
}

.cid-tSJ7zhk4gc .opening-hours .box-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li {
    padding: 10px 0 10px;
    color: #ffffff;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li:first-child {
    padding-top: 0;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li:last-child {
    border-bottom: none;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li span {
    float: right;
    text-align: right;
    padding-left: 0.5rem;
    color: #ffffff;
}

.cid-tSJ7zhk4gc .opening-hours .box-list.display-4 {
    line-height: 1.5;
}

@media (min-width: 1200px) {
    .cid-tSJ7zhk4gc .col-lg-3 {
        max-width: 20%;
    }
}

@media (max-width: 992px) {
    .cid-tSJ7zhk4gc .col-md-6 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-tSJ7zhk4gc .socicon-wrap {
        margin: auto;
    }
}

.cid-tSJ7zhk4gc .items .list-item .text2,
.cid-tSJ7zhk4gc .items .list-item {
    text-align: center;
}

.cid-tSJ7SGwdnG {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #06182d;
}

.cid-tSJ7SGwdnG .copyright {
    display: flex;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .copyright {
        margin-bottom: 1rem;
    }
}

.cid-tSJ7SGwdnG .text-wrap {
    transition: all 0.3s;
    padding: 23px;
    bottom: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper {
    background: #06182d;
    display: flex;
    width: 31px;
    height: 31px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #384657;
    transition: all 0.3s;
    z-index: 4;
    cursor: pointer;
    margin: 0 0.2rem;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover {
    background: #ff4e3c;
    border-color: #ff4e3c;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
    color: #ffffde;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper .link-icon {
    display: inline-block;
    color: #ffffde;
    transition: all 0.3s;
    font-size: 14px;
    justify-content: center;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
    height: 2px;
    width: 100%;
    top: 50%;
    right: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
        display: none;
    }
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
    height: 2px;
    width: 100%;
    top: 50%;
    left: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
        display: none;
    }
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: relative !important;
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: absolute !important;
}

.cid-tSCpVaFTLq .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-tSCpVaFTLq .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tSCpVaFTLq .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-tSCpVaFTLq .dropdown-item:hover,
.cid-tSCpVaFTLq .dropdown-item:focus {
    background: #fc7942 !important;
    color: white !important;
}

.cid-tSCpVaFTLq .dropdown-item:hover span {
    color: white;
}

.cid-tSCpVaFTLq .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-tSCpVaFTLq .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-tSCpVaFTLq .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-tSCpVaFTLq .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-tSCpVaFTLq .nav-link {
    position: relative;
}

.cid-tSCpVaFTLq .container {
    display: flex;
    margin: auto;
}

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .container {
        flex-wrap: nowrap;
    }
}

.cid-tSCpVaFTLq .navbar-nav {
    margin: 0 auto;
}

.cid-tSCpVaFTLq .dropdown-menu,
.cid-tSCpVaFTLq .navbar.opened {
    background: #06182d !important;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}

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

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

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

.cid-tSCpVaFTLq .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    background: rgba(6, 24, 45, 0.2);
    border: none !important;
    box-shadow: none !important;
}

.cid-tSCpVaFTLq .navbar.opened {
    transition: all 0.3s;
}

.cid-tSCpVaFTLq .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}

.cid-tSCpVaFTLq .navbar .navbar-logo img {
    width: auto;
}

.cid-tSCpVaFTLq .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}

.cid-tSCpVaFTLq .navbar.collapsed {
    justify-content: center;
}

.cid-tSCpVaFTLq .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

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

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

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

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

.cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-tSCpVaFTLq .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tSCpVaFTLq .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tSCpVaFTLq .navbar .navbar-toggler {
        flex-basis: auto;
    }
}

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tSCpVaFTLq .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

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

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

.cid-tSCpVaFTLq .navbar-brand {
    min-height: 108px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #06182d;
}

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

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

.cid-tSCpVaFTLq ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tSCpVaFTLq .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tSCpVaFTLq button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

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

.cid-tSCpVaFTLq .navbar-dropdown {
    padding: 0 1rem;
}

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-tSCpVaFTLq .navbar {
        height: 70px;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        height: auto;
    }

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

.cid-tSCpVaFTLq .container,
.cid-tSCpVaFTLq .container-fluid {
    position: relative;
    min-height: 108px;
}

.cid-tSCpVaFTLq .navbar-short {
    background-color: #06182d !important;
}

.cid-tSCpVaFTLq .navbar-short .container,
.cid-tSCpVaFTLq .navbar-short .container-fluid {
    min-height: 85px;
}

.cid-tSCpVaFTLq .navbar-short .container:before,
.cid-tSCpVaFTLq .navbar-short .container-fluid:before {
    display: none;
}

.cid-tSCpVaFTLq .navbar-short .navbar-brand {
    min-height: 85px !important;
}

.cid-tSCpVaFTLq .mbr-section-btn .btn {
    padding: 10px 25px;
    min-height: 48px;
}

.cid-tSCpVaFTLq .border-item {
    position: absolute;
    bottom: -1px;
    display: none;
    width: 100%;
    background-color: transparent;
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .border-item {
        display: block;
    }
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar {
        overflow: hidden;
    }

    .cid-tSCpVaFTLq .container,
    .cid-tSCpVaFTLq .container-fluid {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-brand {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-short .container,
    .cid-tSCpVaFTLq .navbar-short .container-fluid {
        min-height: 75px;
    }

    .cid-tSCpVaFTLq .navbar-short .navbar-brand {
        min-height: 75px !important;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        background: rgba(6, 24, 45, 0.2) !important;
    }

    .cid-tSCpVaFTLq .navbar.navbar-short {
        background-color: #06182d !important;
    }

    .cid-tSCpVaFTLq .navbar-collapse {
        position: relative;
        order: 5;
        z-index: 5 !important;
        padding-bottom: 10px;
    }

    .cid-tSCpVaFTLq .navbar-nav .nav-item {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

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

    .cid-tSCpVaFTLq .border-item {
        position: relative;
        bottom: 0;
        margin-top: auto;
    }

    .cid-tSCpVaFTLq .border-item:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100vw;
        height: 100vw;
        background: #06182d;
        z-index: 4;
        transition: 0.1s all;
    }
}

.cid-tSJbVYltKB {
    padding-top: 9rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #06182d;
}

.cid-tSJbVYltKB .container {
    max-width: 1600px;
}

.cid-tSJbVYltKB .row {
    justify-content: center;
}

.cid-tSJbVYltKB .text-container {
    width: 100%;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .cid-tSJbVYltKB .text-container {
        margin-bottom: 50px;
    }
}

.cid-tSJbVYltKB .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSJbVYltKB .mbr-section-subtitle {
    color: #ffffff;
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSJbVYltKB .mbr-section-subtitle {
        margin-top: 1rem;
    }
}

.cid-tSJbVYltKB .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.83rem;
}

@media (max-width: 991px) {
    .cid-tSJbVYltKB .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cid-tSJbVYltKB .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cid-tSJbVYltKB .card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 1.67rem;
    overflow: hidden;
    background-color: #3370a3;
    transition: .18s all;
}

.cid-tSJbVYltKB .card:hover {
    transform: scale(0.96);
}

.cid-tSJbVYltKB .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 24px;
}

@media (max-width: 991px) {
    .cid-tSJbVYltKB .card-wrapper {
        padding: 16px;
    }
}

.cid-tSJbVYltKB .card-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .cid-tSJbVYltKB .card-box {
        margin-bottom: 20px;
    }
}

.cid-tSJbVYltKB .card-title {
    width: 100%;
    margin-bottom: 0;
    color: #212132;
    opacity: 0.6;
}

.cid-tSJbVYltKB .card-text {
    width: 100%;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSJbVYltKB .card-text {
        margin-top: 8px;
    }
}

.cid-tSJbVYltKB .mbr-section-btn {
    margin-top: 0.5rem;
}

.cid-tSJbVYltKB .mbr-section-btn .btn {
    border: none !important;
    min-height: auto;
    min-width: auto;
}

.cid-tSJbVYltKB .card-img {
    width: 100%;
    height: 288px;
    border-radius: 1.67rem;
    overflow: hidden;
    margin-top: auto;
}

@media (max-width: 991px) {
    .cid-tSJbVYltKB .card-img {
        height: 375px;
    }
}

@media (max-width: 767px) {
    .cid-tSJbVYltKB .card-img {
        height: auto;
    }
}

.cid-tSJbVYltKB .card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.cid-tSJbVYltKB .card-title,
.cid-tSJbVYltKB .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKHc3BQnT {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    background-color: #06182d;
}

.cid-tSKHc3BQnT .container {
    max-width: 1600px;
}

.cid-tSKHc3BQnT .row {
    justify-content: center;
}

.cid-tSKHc3BQnT .text-container {
    width: 100%;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .cid-tSKHc3BQnT .text-container {
        margin-bottom: 50px;
    }
}

.cid-tSKHc3BQnT .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKHc3BQnT .mbr-section-subtitle {
    color: #ffffff;
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKHc3BQnT .mbr-section-subtitle {
        margin-top: 1rem;
    }
}

.cid-tSKHc3BQnT .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.83rem;
}

@media (max-width: 991px) {
    .cid-tSKHc3BQnT .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cid-tSKHc3BQnT .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cid-tSKHc3BQnT .card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 1.67rem;
    overflow: hidden;
    background-color: #3370a3;
    transition: .18s all;
}

.cid-tSKHc3BQnT .card:hover {
    transform: scale(0.96);
}

.cid-tSKHc3BQnT .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 24px;
}

@media (max-width: 991px) {
    .cid-tSKHc3BQnT .card-wrapper {
        padding: 16px;
    }
}

.cid-tSKHc3BQnT .card-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .cid-tSKHc3BQnT .card-box {
        margin-bottom: 20px;
    }
}

.cid-tSKHc3BQnT .card-title {
    width: 100%;
    margin-bottom: 0;
    color: #212132;
    opacity: 0.6;
}

.cid-tSKHc3BQnT .card-text {
    width: 100%;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKHc3BQnT .card-text {
        margin-top: 8px;
    }
}

.cid-tSKHc3BQnT .mbr-section-btn {
    margin-top: 0.5rem;
}

.cid-tSKHc3BQnT .mbr-section-btn .btn {
    border: none !important;
    min-height: auto;
    min-width: auto;
}

.cid-tSKHc3BQnT .card-img {
    width: 100%;
    height: 288px;
    border-radius: 1.67rem;
    overflow: hidden;
    margin-top: auto;
}

@media (max-width: 991px) {
    .cid-tSKHc3BQnT .card-img {
        height: 375px;
    }
}

@media (max-width: 767px) {
    .cid-tSKHc3BQnT .card-img {
        height: auto;
    }
}

.cid-tSKHc3BQnT .card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.cid-tSKHc3BQnT .card-title,
.cid-tSKHc3BQnT .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKJcJ0QEN {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    background-color: #06182d;
}

.cid-tSKJcJ0QEN .container {
    max-width: 1600px;
}

.cid-tSKJcJ0QEN .row {
    justify-content: center;
}

.cid-tSKJcJ0QEN .text-container {
    width: 100%;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .cid-tSKJcJ0QEN .text-container {
        margin-bottom: 50px;
    }
}

.cid-tSKJcJ0QEN .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKJcJ0QEN .mbr-section-subtitle {
    color: #ffffff;
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKJcJ0QEN .mbr-section-subtitle {
        margin-top: 1rem;
    }
}

.cid-tSKJcJ0QEN .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.83rem;
}

@media (max-width: 991px) {
    .cid-tSKJcJ0QEN .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cid-tSKJcJ0QEN .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cid-tSKJcJ0QEN .card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 1.67rem;
    overflow: hidden;
    background-color: #3370a3;
    transition: .18s all;
}

.cid-tSKJcJ0QEN .card:hover {
    transform: scale(0.96);
}

.cid-tSKJcJ0QEN .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 24px;
}

@media (max-width: 991px) {
    .cid-tSKJcJ0QEN .card-wrapper {
        padding: 16px;
    }
}

.cid-tSKJcJ0QEN .card-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .cid-tSKJcJ0QEN .card-box {
        margin-bottom: 20px;
    }
}

.cid-tSKJcJ0QEN .card-title {
    width: 100%;
    margin-bottom: 0;
    color: #212132;
    opacity: 0.6;
}

.cid-tSKJcJ0QEN .card-text {
    width: 100%;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKJcJ0QEN .card-text {
        margin-top: 8px;
    }
}

.cid-tSKJcJ0QEN .mbr-section-btn {
    margin-top: 0.5rem;
}

.cid-tSKJcJ0QEN .mbr-section-btn .btn {
    border: none !important;
    min-height: auto;
    min-width: auto;
}

.cid-tSKJcJ0QEN .card-img {
    width: 100%;
    height: 288px;
    border-radius: 1.67rem;
    overflow: hidden;
    margin-top: auto;
}

@media (max-width: 991px) {
    .cid-tSKJcJ0QEN .card-img {
        height: 375px;
    }
}

@media (max-width: 767px) {
    .cid-tSKJcJ0QEN .card-img {
        height: auto;
    }
}

.cid-tSKJcJ0QEN .card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.cid-tSKJcJ0QEN .card-title,
.cid-tSKJcJ0QEN .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKJBODhRu {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    background-color: #06182d;
}

.cid-tSKJBODhRu .container {
    max-width: 1600px;
}

.cid-tSKJBODhRu .row {
    justify-content: center;
}

.cid-tSKJBODhRu .text-container {
    width: 100%;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .cid-tSKJBODhRu .text-container {
        margin-bottom: 50px;
    }
}

.cid-tSKJBODhRu .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKJBODhRu .mbr-section-subtitle {
    color: #ffffff;
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKJBODhRu .mbr-section-subtitle {
        margin-top: 1rem;
    }
}

.cid-tSKJBODhRu .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.83rem;
}

@media (max-width: 991px) {
    .cid-tSKJBODhRu .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cid-tSKJBODhRu .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cid-tSKJBODhRu .card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 1.67rem;
    overflow: hidden;
    background-color: #3370a3;
    transition: .18s all;
}

.cid-tSKJBODhRu .card:hover {
    transform: scale(0.96);
}

.cid-tSKJBODhRu .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 24px;
}

@media (max-width: 991px) {
    .cid-tSKJBODhRu .card-wrapper {
        padding: 16px;
    }
}

.cid-tSKJBODhRu .card-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .cid-tSKJBODhRu .card-box {
        margin-bottom: 20px;
    }
}

.cid-tSKJBODhRu .card-title {
    width: 100%;
    margin-bottom: 0;
    color: #212132;
    opacity: 0.6;
}

.cid-tSKJBODhRu .card-text {
    width: 100%;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKJBODhRu .card-text {
        margin-top: 8px;
    }
}

.cid-tSKJBODhRu .mbr-section-btn {
    margin-top: 0.5rem;
}

.cid-tSKJBODhRu .mbr-section-btn .btn {
    border: none !important;
    min-height: auto;
    min-width: auto;
}

.cid-tSKJBODhRu .card-img {
    width: 100%;
    height: 288px;
    border-radius: 1.67rem;
    overflow: hidden;
    margin-top: auto;
}

@media (max-width: 991px) {
    .cid-tSKJBODhRu .card-img {
        height: 375px;
    }
}

@media (max-width: 767px) {
    .cid-tSKJBODhRu .card-img {
        height: auto;
    }
}

.cid-tSKJBODhRu .card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.cid-tSKJBODhRu .card-title,
.cid-tSKJBODhRu .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKKHyWaFI {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    background-color: #06182d;
}

.cid-tSKKHyWaFI .container {
    max-width: 1600px;
}

.cid-tSKKHyWaFI .row {
    justify-content: center;
}

.cid-tSKKHyWaFI .text-container {
    width: 100%;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .cid-tSKKHyWaFI .text-container {
        margin-bottom: 50px;
    }
}

.cid-tSKKHyWaFI .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKKHyWaFI .mbr-section-subtitle {
    color: #ffffff;
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKKHyWaFI .mbr-section-subtitle {
        margin-top: 1rem;
    }
}

.cid-tSKKHyWaFI .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.83rem;
}

@media (max-width: 991px) {
    .cid-tSKKHyWaFI .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cid-tSKKHyWaFI .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cid-tSKKHyWaFI .card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 1.67rem;
    overflow: hidden;
    background-color: #3370a3;
    transition: .18s all;
}

.cid-tSKKHyWaFI .card:hover {
    transform: scale(0.96);
}

.cid-tSKKHyWaFI .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 24px;
}

@media (max-width: 991px) {
    .cid-tSKKHyWaFI .card-wrapper {
        padding: 16px;
    }
}

.cid-tSKKHyWaFI .card-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .cid-tSKKHyWaFI .card-box {
        margin-bottom: 20px;
    }
}

.cid-tSKKHyWaFI .card-title {
    width: 100%;
    margin-bottom: 0;
    color: #212132;
    opacity: 0.6;
}

.cid-tSKKHyWaFI .card-text {
    width: 100%;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKKHyWaFI .card-text {
        margin-top: 8px;
    }
}

.cid-tSKKHyWaFI .mbr-section-btn {
    margin-top: 0.5rem;
}

.cid-tSKKHyWaFI .mbr-section-btn .btn {
    border: none !important;
    min-height: auto;
    min-width: auto;
}

.cid-tSKKHyWaFI .card-img {
    width: 100%;
    height: 288px;
    border-radius: 1.67rem;
    overflow: hidden;
    margin-top: auto;
}

@media (max-width: 991px) {
    .cid-tSKKHyWaFI .card-img {
        height: 375px;
    }
}

@media (max-width: 767px) {
    .cid-tSKKHyWaFI .card-img {
        height: auto;
    }
}

.cid-tSKKHyWaFI .card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.cid-tSKKHyWaFI .card-title,
.cid-tSKKHyWaFI .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKKI5Lojp {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    background-color: #06182d;
}

.cid-tSKKI5Lojp .container {
    max-width: 1600px;
}

.cid-tSKKI5Lojp .row {
    justify-content: center;
}

.cid-tSKKI5Lojp .text-container {
    width: 100%;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .cid-tSKKI5Lojp .text-container {
        margin-bottom: 50px;
    }
}

.cid-tSKKI5Lojp .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKKI5Lojp .mbr-section-subtitle {
    color: #ffffff;
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKKI5Lojp .mbr-section-subtitle {
        margin-top: 1rem;
    }
}

.cid-tSKKI5Lojp .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.83rem;
}

@media (max-width: 991px) {
    .cid-tSKKI5Lojp .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cid-tSKKI5Lojp .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cid-tSKKI5Lojp .card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 1.67rem;
    overflow: hidden;
    background-color: #3370a3;
    transition: .18s all;
}

.cid-tSKKI5Lojp .card:hover {
    transform: scale(0.96);
}

.cid-tSKKI5Lojp .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 24px;
}

@media (max-width: 991px) {
    .cid-tSKKI5Lojp .card-wrapper {
        padding: 16px;
    }
}

.cid-tSKKI5Lojp .card-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .cid-tSKKI5Lojp .card-box {
        margin-bottom: 20px;
    }
}

.cid-tSKKI5Lojp .card-title {
    width: 100%;
    margin-bottom: 0;
    color: #212132;
    opacity: 0.6;
}

.cid-tSKKI5Lojp .card-text {
    width: 100%;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKKI5Lojp .card-text {
        margin-top: 8px;
    }
}

.cid-tSKKI5Lojp .mbr-section-btn {
    margin-top: 0.5rem;
}

.cid-tSKKI5Lojp .mbr-section-btn .btn {
    border: none !important;
    min-height: auto;
    min-width: auto;
}

.cid-tSKKI5Lojp .card-img {
    width: 100%;
    height: 288px;
    border-radius: 1.67rem;
    overflow: hidden;
    margin-top: auto;
}

@media (max-width: 991px) {
    .cid-tSKKI5Lojp .card-img {
        height: 375px;
    }
}

@media (max-width: 767px) {
    .cid-tSKKI5Lojp .card-img {
        height: auto;
    }
}

.cid-tSKKI5Lojp .card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.cid-tSKKI5Lojp .card-title,
.cid-tSKKI5Lojp .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKKICtam8 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #06182d;
}

.cid-tSKKICtam8 .container {
    max-width: 1600px;
}

.cid-tSKKICtam8 .row {
    justify-content: center;
}

.cid-tSKKICtam8 .text-container {
    width: 100%;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .cid-tSKKICtam8 .text-container {
        margin-bottom: 50px;
    }
}

.cid-tSKKICtam8 .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKKICtam8 .mbr-section-subtitle {
    color: #ffffff;
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKKICtam8 .mbr-section-subtitle {
        margin-top: 1rem;
    }
}

.cid-tSKKICtam8 .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.83rem;
}

@media (max-width: 991px) {
    .cid-tSKKICtam8 .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cid-tSKKICtam8 .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cid-tSKKICtam8 .card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 1.67rem;
    overflow: hidden;
    background-color: #3370a3;
    transition: .18s all;
}

.cid-tSKKICtam8 .card:hover {
    transform: scale(0.96);
}

.cid-tSKKICtam8 .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 24px;
}

@media (max-width: 991px) {
    .cid-tSKKICtam8 .card-wrapper {
        padding: 16px;
    }
}

.cid-tSKKICtam8 .card-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .cid-tSKKICtam8 .card-box {
        margin-bottom: 20px;
    }
}

.cid-tSKKICtam8 .card-title {
    width: 100%;
    margin-bottom: 0;
    color: #212132;
    opacity: 0.6;
}

.cid-tSKKICtam8 .card-text {
    width: 100%;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKKICtam8 .card-text {
        margin-top: 8px;
    }
}

.cid-tSKKICtam8 .mbr-section-btn {
    margin-top: 0.5rem;
}

.cid-tSKKICtam8 .mbr-section-btn .btn {
    border: none !important;
    min-height: auto;
    min-width: auto;
}

.cid-tSKKICtam8 .card-img {
    width: 100%;
    height: 288px;
    border-radius: 1.67rem;
    overflow: hidden;
    margin-top: auto;
}

@media (max-width: 991px) {
    .cid-tSKKICtam8 .card-img {
        height: 375px;
    }
}

@media (max-width: 767px) {
    .cid-tSKKICtam8 .card-img {
        height: auto;
    }
}

.cid-tSKKICtam8 .card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.cid-tSKKICtam8 .card-title,
.cid-tSKKICtam8 .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKNZg7rnq {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    background-color: #06182d;
}

.cid-tSKNZg7rnq .container {
    max-width: 1600px;
}

.cid-tSKNZg7rnq .row {
    justify-content: center;
}

.cid-tSKNZg7rnq .text-container {
    width: 100%;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .cid-tSKNZg7rnq .text-container {
        margin-bottom: 50px;
    }
}

.cid-tSKNZg7rnq .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKNZg7rnq .mbr-section-subtitle {
    color: #ffffff;
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKNZg7rnq .mbr-section-subtitle {
        margin-top: 1rem;
    }
}

.cid-tSKNZg7rnq .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.83rem;
}

@media (max-width: 991px) {
    .cid-tSKNZg7rnq .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cid-tSKNZg7rnq .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cid-tSKNZg7rnq .card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 1.67rem;
    overflow: hidden;
    background-color: #3370a3;
    transition: .18s all;
}

.cid-tSKNZg7rnq .card:hover {
    transform: scale(0.96);
}

.cid-tSKNZg7rnq .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 24px;
}

@media (max-width: 991px) {
    .cid-tSKNZg7rnq .card-wrapper {
        padding: 16px;
    }
}

.cid-tSKNZg7rnq .card-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .cid-tSKNZg7rnq .card-box {
        margin-bottom: 20px;
    }
}

.cid-tSKNZg7rnq .card-title {
    width: 100%;
    margin-bottom: 0;
    color: #212132;
    opacity: 0.6;
}

.cid-tSKNZg7rnq .card-text {
    width: 100%;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKNZg7rnq .card-text {
        margin-top: 8px;
    }
}

.cid-tSKNZg7rnq .mbr-section-btn {
    margin-top: 0.5rem;
}

.cid-tSKNZg7rnq .mbr-section-btn .btn {
    border: none !important;
    min-height: auto;
    min-width: auto;
}

.cid-tSKNZg7rnq .card-img {
    width: 100%;
    height: 288px;
    border-radius: 1.67rem;
    overflow: hidden;
    margin-top: auto;
}

@media (max-width: 991px) {
    .cid-tSKNZg7rnq .card-img {
        height: 375px;
    }
}

@media (max-width: 767px) {
    .cid-tSKNZg7rnq .card-img {
        height: auto;
    }
}

.cid-tSKNZg7rnq .card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.cid-tSKNZg7rnq .card-title,
.cid-tSKNZg7rnq .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKNZIszLA {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    background-color: #06182d;
}

.cid-tSKNZIszLA .container {
    max-width: 1600px;
}

.cid-tSKNZIszLA .row {
    justify-content: center;
}

.cid-tSKNZIszLA .text-container {
    width: 100%;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .cid-tSKNZIszLA .text-container {
        margin-bottom: 50px;
    }
}

.cid-tSKNZIszLA .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKNZIszLA .mbr-section-subtitle {
    color: #ffffff;
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKNZIszLA .mbr-section-subtitle {
        margin-top: 1rem;
    }
}

.cid-tSKNZIszLA .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.83rem;
}

@media (max-width: 991px) {
    .cid-tSKNZIszLA .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cid-tSKNZIszLA .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cid-tSKNZIszLA .card {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 1.67rem;
    overflow: hidden;
    background-color: #3370a3;
    transition: .18s all;
}

.cid-tSKNZIszLA .card:hover {
    transform: scale(0.96);
}

.cid-tSKNZIszLA .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 24px;
}

@media (max-width: 991px) {
    .cid-tSKNZIszLA .card-wrapper {
        padding: 16px;
    }
}

.cid-tSKNZIszLA .card-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .cid-tSKNZIszLA .card-box {
        margin-bottom: 20px;
    }
}

.cid-tSKNZIszLA .card-title {
    width: 100%;
    margin-bottom: 0;
    color: #212132;
    opacity: 0.6;
}

.cid-tSKNZIszLA .card-text {
    width: 100%;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .cid-tSKNZIszLA .card-text {
        margin-top: 8px;
    }
}

.cid-tSKNZIszLA .mbr-section-btn {
    margin-top: 0.5rem;
}

.cid-tSKNZIszLA .mbr-section-btn .btn {
    border: none !important;
    min-height: auto;
    min-width: auto;
}

.cid-tSKNZIszLA .card-img {
    width: 100%;
    height: 288px;
    border-radius: 1.67rem;
    overflow: hidden;
    margin-top: auto;
}

@media (max-width: 991px) {
    .cid-tSKNZIszLA .card-img {
        height: 375px;
    }
}

@media (max-width: 767px) {
    .cid-tSKNZIszLA .card-img {
        height: auto;
    }
}

.cid-tSKNZIszLA .card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.cid-tSKNZIszLA .card-title,
.cid-tSKNZIszLA .mbr-section-btn {
    color: #ffffff;
}

.cid-tSKPoci130 {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #06182d;
}

.cid-tSKPoci130 .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSKPoci130 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSKPoci130 .container-fluid {
    padding: 0;
}

@media (max-width: 992px) {
    .cid-tSKPoci130 .container-fluid {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .cid-tSKPoci130 .container {
        padding: 0;
    }
}

.cid-tSKPoci130 .row {
    justify-content: center;
    color: #e26767;
}

.cid-tSKPoci130 .title-wrapper {
    padding: 0 16px;
}

.cid-tSKPoci130 .title-wrapper .mbr-section-title {
    margin-bottom: 0;
    color: #cdd906;
}

.cid-tSKPoci130 .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKEbapFRD {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSKEbapFRD .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSKEbapFRD .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSKEbapFRD .container-fluid {
    padding: 0 80px;
}

@media (max-width: 992px) {
    .cid-tSKEbapFRD .container-fluid {
        padding: 0 24px;
    }
}

@media (max-width: 992px) {
    .cid-tSKEbapFRD .container {
        padding: 0 24px;
    }
}

.cid-tSKEbapFRD .row {
    justify-content: center;
}

.cid-tSKEbapFRD .row .card {
    justify-content: center;
}

@media (max-width: 992px) {
    .cid-tSKEbapFRD .title-wrapper {
        margin-bottom: 32px;
    }
}

.cid-tSKEbapFRD .title-wrapper .mbr-section-title {
    margin-bottom: 0;
}

.cid-tSKEbapFRD .box .mbr-media img {
    height: 550px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-tSKEbapFRD .box .mbr-media img {
        height: 350px;
    }
}

.cid-tSKEbapFRD .box .mbr-media .mbr-iconfont {
    color: #f5db6e;
}

.cid-tSKEbapFRD .mbr-media {
    position: relative;
}

.cid-tSKEbapFRD .mbr-media img {
    width: 100%;
    object-fit: cover;
}

.cid-tSKEbapFRD a:hover {
    background-image: none !important;
}

.cid-tSKEbapFRD .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.cid-tSKEbapFRD .icon-wrap:hover {
    cursor: pointer;
}

.cid-tSKEbapFRD .mbr-media span {
    font-size: 5rem;
    transition: all 0.2s;
}

.cid-tSKEbapFRD .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
}

.cid-tSKEbapFRD .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
}

.cid-tSKEbapFRD .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
}

.cid-tSKEbapFRD .close {
    position: fixed;
    opacity: 0.5;
    font-size: 1.5rem;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
}

.cid-tSKEbapFRD .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.cid-tSKEbapFRD .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKF7RRLBQ {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSKF7RRLBQ .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSKF7RRLBQ .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSKF7RRLBQ .container-fluid {
    padding: 0 80px;
}

@media (max-width: 992px) {
    .cid-tSKF7RRLBQ .container-fluid {
        padding: 0 24px;
    }
}

@media (max-width: 992px) {
    .cid-tSKF7RRLBQ .container {
        padding: 0 24px;
    }
}

.cid-tSKF7RRLBQ .row {
    justify-content: center;
}

.cid-tSKF7RRLBQ .row .card {
    justify-content: center;
}

@media (max-width: 992px) {
    .cid-tSKF7RRLBQ .title-wrapper {
        margin-bottom: 32px;
    }
}

.cid-tSKF7RRLBQ .title-wrapper .mbr-section-title {
    margin-bottom: 0;
}

.cid-tSKF7RRLBQ .box .mbr-media img {
    height: 550px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-tSKF7RRLBQ .box .mbr-media img {
        height: 350px;
    }
}

.cid-tSKF7RRLBQ .box .mbr-media .mbr-iconfont {
    color: #f5db6e;
}

.cid-tSKF7RRLBQ .mbr-media {
    position: relative;
}

.cid-tSKF7RRLBQ .mbr-media img {
    width: 100%;
    object-fit: cover;
}

.cid-tSKF7RRLBQ a:hover {
    background-image: none !important;
}

.cid-tSKF7RRLBQ .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.cid-tSKF7RRLBQ .icon-wrap:hover {
    cursor: pointer;
}

.cid-tSKF7RRLBQ .mbr-media span {
    font-size: 5rem;
    transition: all 0.2s;
}

.cid-tSKF7RRLBQ .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
}

.cid-tSKF7RRLBQ .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
}

.cid-tSKF7RRLBQ .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
}

.cid-tSKF7RRLBQ .close {
    position: fixed;
    opacity: 0.5;
    font-size: 1.5rem;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
}

.cid-tSKF7RRLBQ .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.cid-tSKF7RRLBQ .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKF8ss3wP {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSKF8ss3wP .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSKF8ss3wP .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSKF8ss3wP .container-fluid {
    padding: 0 80px;
}

@media (max-width: 992px) {
    .cid-tSKF8ss3wP .container-fluid {
        padding: 0 24px;
    }
}

@media (max-width: 992px) {
    .cid-tSKF8ss3wP .container {
        padding: 0 24px;
    }
}

.cid-tSKF8ss3wP .row {
    justify-content: center;
}

.cid-tSKF8ss3wP .row .card {
    justify-content: center;
}

@media (max-width: 992px) {
    .cid-tSKF8ss3wP .title-wrapper {
        margin-bottom: 32px;
    }
}

.cid-tSKF8ss3wP .title-wrapper .mbr-section-title {
    margin-bottom: 0;
}

.cid-tSKF8ss3wP .box .mbr-media img {
    height: 550px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-tSKF8ss3wP .box .mbr-media img {
        height: 350px;
    }
}

.cid-tSKF8ss3wP .box .mbr-media .mbr-iconfont {
    color: #ffeb98;
}

.cid-tSKF8ss3wP .mbr-media {
    position: relative;
}

.cid-tSKF8ss3wP .mbr-media img {
    width: 100%;
    object-fit: cover;
}

.cid-tSKF8ss3wP a:hover {
    background-image: none !important;
}

.cid-tSKF8ss3wP .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.cid-tSKF8ss3wP .icon-wrap:hover {
    cursor: pointer;
}

.cid-tSKF8ss3wP .mbr-media span {
    font-size: 5rem;
    transition: all 0.2s;
}

.cid-tSKF8ss3wP .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
}

.cid-tSKF8ss3wP .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
}

.cid-tSKF8ss3wP .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
}

.cid-tSKF8ss3wP .close {
    position: fixed;
    opacity: 0.5;
    font-size: 1.5rem;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
}

.cid-tSKF8ss3wP .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.cid-tSKF8ss3wP .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSKF93DDE1 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSKF93DDE1 .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSKF93DDE1 .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSKF93DDE1 .container-fluid {
    padding: 0 80px;
}

@media (max-width: 992px) {
    .cid-tSKF93DDE1 .container-fluid {
        padding: 0 24px;
    }
}

@media (max-width: 992px) {
    .cid-tSKF93DDE1 .container {
        padding: 0 24px;
    }
}

.cid-tSKF93DDE1 .row {
    justify-content: center;
}

.cid-tSKF93DDE1 .row .card {
    justify-content: center;
}

@media (max-width: 992px) {
    .cid-tSKF93DDE1 .title-wrapper {
        margin-bottom: 32px;
    }
}

.cid-tSKF93DDE1 .title-wrapper .mbr-section-title {
    margin-bottom: 0;
}

.cid-tSKF93DDE1 .box .mbr-media img {
    height: 550px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cid-tSKF93DDE1 .box .mbr-media img {
        height: 350px;
    }
}

.cid-tSKF93DDE1 .box .mbr-media .mbr-iconfont {
    color: #f5db6e;
}

.cid-tSKF93DDE1 .mbr-media {
    position: relative;
}

.cid-tSKF93DDE1 .mbr-media img {
    width: 100%;
    object-fit: cover;
}

.cid-tSKF93DDE1 a:hover {
    background-image: none !important;
}

.cid-tSKF93DDE1 .icon-wrap {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.cid-tSKF93DDE1 .icon-wrap:hover {
    cursor: pointer;
}

.cid-tSKF93DDE1 .mbr-media span {
    font-size: 5rem;
    transition: all 0.2s;
}

.cid-tSKF93DDE1 .modalWindow {
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    background-color: rgba(61, 61, 61, 0.65);
    width: 100%;
    height: 100%;
}

.cid-tSKF93DDE1 .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
}

.cid-tSKF93DDE1 .modalWindow .modalWindow-video {
    height: calc(44.9943757vw);
    width: 80vw;
    margin: 0 auto;
}

.cid-tSKF93DDE1 .close {
    position: fixed;
    opacity: 0.5;
    font-size: 1.5rem;
    font-weight: 300;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    top: 2.5rem;
    right: 2.5rem;
    border: 2px solid #fff;
    text-shadow: none;
    z-index: 5;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
}

.cid-tSKF93DDE1 .close:hover {
    opacity: 1;
    background: #000;
    color: #fff;
}

.cid-tSKF93DDE1 .mbr-section-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSJ7zhk4gc {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #06182d;
}

.cid-tSJ7zhk4gc .mbr-overlay {
    background-color: #06182d;
    opacity: 0.7;
}

.cid-tSJ7zhk4gc .items .list-item {
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7zhk4gc .items .list-item .listico {
    display: inline-block;
    padding-right: 1rem;
    font-size: 1rem;
}

.cid-tSJ7zhk4gc .items .list-item .text2 {
    display: inline-block;
    color: #ffffff;
    text-align: left;
    margin-bottom: 0;
}

.cid-tSJ7zhk4gc li {
    margin: 0;
    list-style: none;
    cursor: pointer;
}

.cid-tSJ7zhk4gc .align-wrap {
    display: flex;
    flex-direction: column;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap {
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .card-img {
    margin-right: 15px;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .card-img .mbr-iconfont {
    color: #ff4e3c !important;
    font-size: 1.1rem;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap {
    display: flex;
    align-items: center;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap .icon-title {
    margin: 0;
    padding-bottom: 0px;
    color: #ffffff;
    font-weight: 300;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap:hover .icon-title {
    color: #d4b844;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap span,
.cid-tSJ7zhk4gc .align-wrap .item-wrap p {
    transition: all 0.3s;
}

.cid-tSJ7zhk4gc .opening-hours .box-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li {
    padding: 10px 0 10px;
    color: #ffffff;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li:first-child {
    padding-top: 0;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li:last-child {
    border-bottom: none;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li span {
    float: right;
    text-align: right;
    padding-left: 0.5rem;
    color: #ffffff;
}

.cid-tSJ7zhk4gc .opening-hours .box-list.display-4 {
    line-height: 1.5;
}

@media (min-width: 1200px) {
    .cid-tSJ7zhk4gc .col-lg-3 {
        max-width: 20%;
    }
}

@media (max-width: 992px) {
    .cid-tSJ7zhk4gc .col-md-6 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-tSJ7zhk4gc .socicon-wrap {
        margin: auto;
    }
}

.cid-tSJ7zhk4gc .items .list-item .text2,
.cid-tSJ7zhk4gc .items .list-item {
    text-align: center;
}

.cid-tSJ7SGwdnG {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #06182d;
}

.cid-tSJ7SGwdnG .copyright {
    display: flex;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .copyright {
        margin-bottom: 1rem;
    }
}

.cid-tSJ7SGwdnG .text-wrap {
    transition: all 0.3s;
    padding: 23px;
    bottom: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper {
    background: #06182d;
    display: flex;
    width: 31px;
    height: 31px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #384657;
    transition: all 0.3s;
    z-index: 4;
    cursor: pointer;
    margin: 0 0.2rem;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover {
    background: #ff4e3c;
    border-color: #ff4e3c;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
    color: #ffffde;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper .link-icon {
    display: inline-block;
    color: #ffffde;
    transition: all 0.3s;
    font-size: 14px;
    justify-content: center;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
    height: 2px;
    width: 100%;
    top: 50%;
    right: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
        display: none;
    }
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
    height: 2px;
    width: 100%;
    top: 50%;
    left: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
        display: none;
    }
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: relative !important;
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: absolute !important;
}

.cid-tSCpVaFTLq .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-tSCpVaFTLq .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tSCpVaFTLq .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-tSCpVaFTLq .dropdown-item:hover,
.cid-tSCpVaFTLq .dropdown-item:focus {
    background: #fc7942 !important;
    color: white !important;
}

.cid-tSCpVaFTLq .dropdown-item:hover span {
    color: white;
}

.cid-tSCpVaFTLq .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-tSCpVaFTLq .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-tSCpVaFTLq .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-tSCpVaFTLq .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-tSCpVaFTLq .nav-link {
    position: relative;
}

.cid-tSCpVaFTLq .container {
    display: flex;
    margin: auto;
}

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .container {
        flex-wrap: nowrap;
    }
}

.cid-tSCpVaFTLq .navbar-nav {
    margin: 0 auto;
}

.cid-tSCpVaFTLq .dropdown-menu,
.cid-tSCpVaFTLq .navbar.opened {
    background: #06182d !important;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}

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

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

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

.cid-tSCpVaFTLq .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    background: rgba(6, 24, 45, 0.2);
    border: none !important;
    box-shadow: none !important;
}

.cid-tSCpVaFTLq .navbar.opened {
    transition: all 0.3s;
}

.cid-tSCpVaFTLq .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}

.cid-tSCpVaFTLq .navbar .navbar-logo img {
    width: auto;
}

.cid-tSCpVaFTLq .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}

.cid-tSCpVaFTLq .navbar.collapsed {
    justify-content: center;
}

.cid-tSCpVaFTLq .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

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

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

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

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

.cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-tSCpVaFTLq .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tSCpVaFTLq .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tSCpVaFTLq .navbar .navbar-toggler {
        flex-basis: auto;
    }
}

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tSCpVaFTLq .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

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

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

.cid-tSCpVaFTLq .navbar-brand {
    min-height: 108px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #06182d;
}

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

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

.cid-tSCpVaFTLq ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tSCpVaFTLq .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tSCpVaFTLq button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

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

.cid-tSCpVaFTLq .navbar-dropdown {
    padding: 0 1rem;
}

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-tSCpVaFTLq .navbar {
        height: 70px;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        height: auto;
    }

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

.cid-tSCpVaFTLq .container,
.cid-tSCpVaFTLq .container-fluid {
    position: relative;
    min-height: 108px;
}

.cid-tSCpVaFTLq .navbar-short {
    background-color: #06182d !important;
}

.cid-tSCpVaFTLq .navbar-short .container,
.cid-tSCpVaFTLq .navbar-short .container-fluid {
    min-height: 85px;
}

.cid-tSCpVaFTLq .navbar-short .container:before,
.cid-tSCpVaFTLq .navbar-short .container-fluid:before {
    display: none;
}

.cid-tSCpVaFTLq .navbar-short .navbar-brand {
    min-height: 85px !important;
}

.cid-tSCpVaFTLq .mbr-section-btn .btn {
    padding: 10px 25px;
    min-height: 48px;
}

.cid-tSCpVaFTLq .border-item {
    position: absolute;
    bottom: -1px;
    display: none;
    width: 100%;
    background-color: transparent;
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .border-item {
        display: block;
    }
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar {
        overflow: hidden;
    }

    .cid-tSCpVaFTLq .container,
    .cid-tSCpVaFTLq .container-fluid {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-brand {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-short .container,
    .cid-tSCpVaFTLq .navbar-short .container-fluid {
        min-height: 75px;
    }

    .cid-tSCpVaFTLq .navbar-short .navbar-brand {
        min-height: 75px !important;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        background: rgba(6, 24, 45, 0.2) !important;
    }

    .cid-tSCpVaFTLq .navbar.navbar-short {
        background-color: #06182d !important;
    }

    .cid-tSCpVaFTLq .navbar-collapse {
        position: relative;
        order: 5;
        z-index: 5 !important;
        padding-bottom: 10px;
    }

    .cid-tSCpVaFTLq .navbar-nav .nav-item {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

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

    .cid-tSCpVaFTLq .border-item {
        position: relative;
        bottom: 0;
        margin-top: auto;
    }

    .cid-tSCpVaFTLq .border-item:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100vw;
        height: 100vw;
        background: #06182d;
        z-index: 4;
        transition: 0.1s all;
    }
}

.cid-tSDBi7MoKg {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSDBi7MoKg .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSDBi7MoKg .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSDBi7MoKg .mbr-section-head {
    width: 100%;
    margin-bottom: 150px;
}

@media (max-width: 1199px) {
    .cid-tSDBi7MoKg .mbr-section-head {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .cid-tSDBi7MoKg .mbr-section-head {
        margin-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .cid-tSDBi7MoKg .mbr-section-head {
        margin-bottom: 120px;
    }
}

@media (max-width: 575px) {
    .cid-tSDBi7MoKg .mbr-section-head {
        margin-bottom: 100px;
    }
}

.cid-tSDBi7MoKg .main-title {
    color: #ffffff;
    margin-bottom: 0;
}

.cid-tSDBi7MoKg .main-title a {
    font-weight: inherit;
    pointer-events: none;
}

.cid-tSDBi7MoKg .main-subtitle {
    color: #ffffff;
    margin-top: 32px;
    margin-bottom: 0;
}

.cid-tSDBi7MoKg .content-container {
    width: 100%;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 100px 120px;
}

@media (max-width: 1199px) {
    .cid-tSDBi7MoKg .content-container {
        padding: 68px 82px;
    }
}

@media (max-width: 991px) {
    .cid-tSDBi7MoKg .content-container {
        padding: 50px 60px;
    }
}

@media (max-width: 767px) {
    .cid-tSDBi7MoKg .content-container {
        border-radius: 10px;
        padding: 90px 45px;
    }
}

@media (max-width: 575px) {
    .cid-tSDBi7MoKg .content-container {
        padding: 68px 34px;
    }
}

.cid-tSDBi7MoKg .mbr-section-title {
    color: #000000;
    opacity: 0.5;
    margin-bottom: 150px;
}

@media (max-width: 1199px) {
    .cid-tSDBi7MoKg .mbr-section-title {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .cid-tSDBi7MoKg .mbr-section-title {
        margin-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .cid-tSDBi7MoKg .mbr-section-title {
        margin-bottom: 54px;
    }
}

@media (max-width: 575px) {
    .cid-tSDBi7MoKg .mbr-section-title {
        margin-bottom: 40px;
    }
}

.cid-tSDBi7MoKg .mbr-section-subtitle {
    color: #000000;
    margin-bottom: 70px;
}

@media (max-width: 1199px) {
    .cid-tSDBi7MoKg .mbr-section-subtitle {
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .cid-tSDBi7MoKg .mbr-section-subtitle {
        margin-bottom: 34px;
    }
}

@media (max-width: 767px) {
    .cid-tSDBi7MoKg .mbr-section-subtitle {
        margin-bottom: 62px;
    }
}

@media (max-width: 575px) {
    .cid-tSDBi7MoKg .mbr-section-subtitle {
        margin-bottom: 48px;
    }
}

.cid-tSDBi7MoKg .mbr-text {
    color: #000000;
    margin-bottom: 0;
}

.cid-tSJ7zhk4gc {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #06182d;
}

.cid-tSJ7zhk4gc .mbr-overlay {
    background-color: #06182d;
    opacity: 0.7;
}

.cid-tSJ7zhk4gc .items .list-item {
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7zhk4gc .items .list-item .listico {
    display: inline-block;
    padding-right: 1rem;
    font-size: 1rem;
}

.cid-tSJ7zhk4gc .items .list-item .text2 {
    display: inline-block;
    color: #ffffff;
    text-align: left;
    margin-bottom: 0;
}

.cid-tSJ7zhk4gc li {
    margin: 0;
    list-style: none;
    cursor: pointer;
}

.cid-tSJ7zhk4gc .align-wrap {
    display: flex;
    flex-direction: column;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap {
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .card-img {
    margin-right: 15px;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .card-img .mbr-iconfont {
    color: #ff4e3c !important;
    font-size: 1.1rem;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap {
    display: flex;
    align-items: center;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap .icon-title {
    margin: 0;
    padding-bottom: 0px;
    color: #ffffff;
    font-weight: 300;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap:hover .icon-title {
    color: #d4b844;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap span,
.cid-tSJ7zhk4gc .align-wrap .item-wrap p {
    transition: all 0.3s;
}

.cid-tSJ7zhk4gc .opening-hours .box-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li {
    padding: 10px 0 10px;
    color: #ffffff;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li:first-child {
    padding-top: 0;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li:last-child {
    border-bottom: none;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li span {
    float: right;
    text-align: right;
    padding-left: 0.5rem;
    color: #ffffff;
}

.cid-tSJ7zhk4gc .opening-hours .box-list.display-4 {
    line-height: 1.5;
}

@media (min-width: 1200px) {
    .cid-tSJ7zhk4gc .col-lg-3 {
        max-width: 20%;
    }
}

@media (max-width: 992px) {
    .cid-tSJ7zhk4gc .col-md-6 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-tSJ7zhk4gc .socicon-wrap {
        margin: auto;
    }
}

.cid-tSJ7zhk4gc .items .list-item .text2,
.cid-tSJ7zhk4gc .items .list-item {
    text-align: center;
}

.cid-tSJ7SGwdnG {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #06182d;
}

.cid-tSJ7SGwdnG .copyright {
    display: flex;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .copyright {
        margin-bottom: 1rem;
    }
}

.cid-tSJ7SGwdnG .text-wrap {
    transition: all 0.3s;
    padding: 23px;
    bottom: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper {
    background: #06182d;
    display: flex;
    width: 31px;
    height: 31px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #384657;
    transition: all 0.3s;
    z-index: 4;
    cursor: pointer;
    margin: 0 0.2rem;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover {
    background: #ff4e3c;
    border-color: #ff4e3c;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
    color: #ffffde;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper .link-icon {
    display: inline-block;
    color: #ffffde;
    transition: all 0.3s;
    font-size: 14px;
    justify-content: center;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
    height: 2px;
    width: 100%;
    top: 50%;
    right: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
        display: none;
    }
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
    height: 2px;
    width: 100%;
    top: 50%;
    left: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
        display: none;
    }
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: relative !important;
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: absolute !important;
}

.cid-tSCpVaFTLq .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-tSCpVaFTLq .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tSCpVaFTLq .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-tSCpVaFTLq .dropdown-item:hover,
.cid-tSCpVaFTLq .dropdown-item:focus {
    background: #fc7942 !important;
    color: white !important;
}

.cid-tSCpVaFTLq .dropdown-item:hover span {
    color: white;
}

.cid-tSCpVaFTLq .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-tSCpVaFTLq .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-tSCpVaFTLq .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-tSCpVaFTLq .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-tSCpVaFTLq .nav-link {
    position: relative;
}

.cid-tSCpVaFTLq .container {
    display: flex;
    margin: auto;
}

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .container {
        flex-wrap: nowrap;
    }
}

.cid-tSCpVaFTLq .navbar-nav {
    margin: 0 auto;
}

.cid-tSCpVaFTLq .dropdown-menu,
.cid-tSCpVaFTLq .navbar.opened {
    background: #06182d !important;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}

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

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

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

.cid-tSCpVaFTLq .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    background: rgba(6, 24, 45, 0.2);
    border: none !important;
    box-shadow: none !important;
}

.cid-tSCpVaFTLq .navbar.opened {
    transition: all 0.3s;
}

.cid-tSCpVaFTLq .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}

.cid-tSCpVaFTLq .navbar .navbar-logo img {
    width: auto;
}

.cid-tSCpVaFTLq .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
}

.cid-tSCpVaFTLq .navbar.collapsed {
    justify-content: center;
}

.cid-tSCpVaFTLq .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

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

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

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

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

.cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-tSCpVaFTLq .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tSCpVaFTLq .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tSCpVaFTLq .navbar .navbar-toggler {
        flex-basis: auto;
    }
}

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tSCpVaFTLq .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

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

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

.cid-tSCpVaFTLq .navbar-brand {
    min-height: 108px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #06182d;
}

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

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

.cid-tSCpVaFTLq ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tSCpVaFTLq .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tSCpVaFTLq button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

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

.cid-tSCpVaFTLq .navbar-dropdown {
    padding: 0 1rem;
}

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-tSCpVaFTLq .navbar {
        height: 70px;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        height: auto;
    }

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

.cid-tSCpVaFTLq .container,
.cid-tSCpVaFTLq .container-fluid {
    position: relative;
    min-height: 108px;
}

.cid-tSCpVaFTLq .navbar-short {
    background-color: #06182d !important;
}

.cid-tSCpVaFTLq .navbar-short .container,
.cid-tSCpVaFTLq .navbar-short .container-fluid {
    min-height: 85px;
}

.cid-tSCpVaFTLq .navbar-short .container:before,
.cid-tSCpVaFTLq .navbar-short .container-fluid:before {
    display: none;
}

.cid-tSCpVaFTLq .navbar-short .navbar-brand {
    min-height: 85px !important;
}

.cid-tSCpVaFTLq .mbr-section-btn .btn {
    padding: 10px 25px;
    min-height: 48px;
}

.cid-tSCpVaFTLq .border-item {
    position: absolute;
    bottom: -1px;
    display: none;
    width: 100%;
    background-color: transparent;
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .border-item {
        display: block;
    }
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar {
        overflow: hidden;
    }

    .cid-tSCpVaFTLq .container,
    .cid-tSCpVaFTLq .container-fluid {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-brand {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-short .container,
    .cid-tSCpVaFTLq .navbar-short .container-fluid {
        min-height: 75px;
    }

    .cid-tSCpVaFTLq .navbar-short .navbar-brand {
        min-height: 75px !important;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        background: rgba(6, 24, 45, 0.2) !important;
    }

    .cid-tSCpVaFTLq .navbar.navbar-short {
        background-color: #06182d !important;
    }

    .cid-tSCpVaFTLq .navbar-collapse {
        position: relative;
        order: 5;
        z-index: 5 !important;
        padding-bottom: 10px;
    }

    .cid-tSCpVaFTLq .navbar-nav .nav-item {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

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

    .cid-tSCpVaFTLq .border-item {
        position: relative;
        bottom: 0;
        margin-top: auto;
    }

    .cid-tSCpVaFTLq .border-item:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100vw;
        height: 100vw;
        background: #06182d;
        z-index: 4;
        transition: 0.1s all;
    }
}

.cid-tSDj0QSGOH {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background-color: #06182d;
}

.cid-tSDj0QSGOH .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSDj0QSGOH .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSDj0QSGOH .mbr-section-head {
    width: 100%;
    margin-bottom: 150px;
}

@media (max-width: 1199px) {
    .cid-tSDj0QSGOH .mbr-section-head {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .cid-tSDj0QSGOH .mbr-section-head {
        margin-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .cid-tSDj0QSGOH .mbr-section-head {
        margin-bottom: 120px;
    }
}

@media (max-width: 575px) {
    .cid-tSDj0QSGOH .mbr-section-head {
        margin-bottom: 100px;
    }
}

.cid-tSDj0QSGOH .main-title {
    color: #ffffff;
    margin-bottom: 0;
}

.cid-tSDj0QSGOH .main-title a {
    font-weight: inherit;
    pointer-events: none;
}

.cid-tSDj0QSGOH .main-subtitle {
    color: #ffffff;
    margin-top: 32px;
    margin-bottom: 0;
}

.cid-tSDj0QSGOH .content-container {
    width: 100%;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 100px 120px;
}

@media (max-width: 1199px) {
    .cid-tSDj0QSGOH .content-container {
        padding: 68px 82px;
    }
}

@media (max-width: 991px) {
    .cid-tSDj0QSGOH .content-container {
        padding: 50px 60px;
    }
}

@media (max-width: 767px) {
    .cid-tSDj0QSGOH .content-container {
        border-radius: 10px;
        padding: 90px 45px;
    }
}

@media (max-width: 575px) {
    .cid-tSDj0QSGOH .content-container {
        padding: 68px 34px;
    }
}

.cid-tSDj0QSGOH .mbr-section-title {
    color: #000000;
    opacity: 0.5;
    margin-bottom: 150px;
}

@media (max-width: 1199px) {
    .cid-tSDj0QSGOH .mbr-section-title {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .cid-tSDj0QSGOH .mbr-section-title {
        margin-bottom: 75px;
    }
}

@media (max-width: 767px) {
    .cid-tSDj0QSGOH .mbr-section-title {
        margin-bottom: 54px;
    }
}

@media (max-width: 575px) {
    .cid-tSDj0QSGOH .mbr-section-title {
        margin-bottom: 40px;
    }
}

.cid-tSDj0QSGOH .mbr-section-subtitle {
    color: #000000;
    margin-bottom: 70px;
}

@media (max-width: 1199px) {
    .cid-tSDj0QSGOH .mbr-section-subtitle {
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .cid-tSDj0QSGOH .mbr-section-subtitle {
        margin-bottom: 34px;
    }
}

@media (max-width: 767px) {
    .cid-tSDj0QSGOH .mbr-section-subtitle {
        margin-bottom: 62px;
    }
}

@media (max-width: 575px) {
    .cid-tSDj0QSGOH .mbr-section-subtitle {
        margin-bottom: 48px;
    }
}

.cid-tSDj0QSGOH .mbr-text {
    color: #000000;
    margin-bottom: 0;
}

.cid-tSJ7zhk4gc {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #06182d;
}

.cid-tSJ7zhk4gc .mbr-overlay {
    background-color: #06182d;
    opacity: 0.7;
}

.cid-tSJ7zhk4gc .items .list-item {
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7zhk4gc .items .list-item .listico {
    display: inline-block;
    padding-right: 1rem;
    font-size: 1rem;
}

.cid-tSJ7zhk4gc .items .list-item .text2 {
    display: inline-block;
    color: #ffffff;
    text-align: left;
    margin-bottom: 0;
}

.cid-tSJ7zhk4gc li {
    margin: 0;
    list-style: none;
    cursor: pointer;
}

.cid-tSJ7zhk4gc .align-wrap {
    display: flex;
    flex-direction: column;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap {
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .card-img {
    margin-right: 15px;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .card-img .mbr-iconfont {
    color: #ff4e3c !important;
    font-size: 1.1rem;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap {
    display: flex;
    align-items: center;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap .icon-title {
    margin: 0;
    padding-bottom: 0px;
    color: #ffffff;
    font-weight: 300;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap:hover .icon-title {
    color: #d4b844;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap span,
.cid-tSJ7zhk4gc .align-wrap .item-wrap p {
    transition: all 0.3s;
}

.cid-tSJ7zhk4gc .opening-hours .box-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li {
    padding: 10px 0 10px;
    color: #ffffff;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li:first-child {
    padding-top: 0;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li:last-child {
    border-bottom: none;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li span {
    float: right;
    text-align: right;
    padding-left: 0.5rem;
    color: #ffffff;
}

.cid-tSJ7zhk4gc .opening-hours .box-list.display-4 {
    line-height: 1.5;
}

@media (min-width: 1200px) {
    .cid-tSJ7zhk4gc .col-lg-3 {
        max-width: 20%;
    }
}

@media (max-width: 992px) {
    .cid-tSJ7zhk4gc .col-md-6 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-tSJ7zhk4gc .socicon-wrap {
        margin: auto;
    }
}

.cid-tSJ7zhk4gc .items .list-item .text2,
.cid-tSJ7zhk4gc .items .list-item {
    text-align: center;
}

.cid-tSJ7SGwdnG {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #06182d;
}

.cid-tSJ7SGwdnG .copyright {
    display: flex;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .copyright {
        margin-bottom: 1rem;
    }
}

.cid-tSJ7SGwdnG .text-wrap {
    transition: all 0.3s;
    padding: 23px;
    bottom: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper {
    background: #06182d;
    display: flex;
    width: 31px;
    height: 31px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #384657;
    transition: all 0.3s;
    z-index: 4;
    cursor: pointer;
    margin: 0 0.2rem;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover {
    background: #ff4e3c;
    border-color: #ff4e3c;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
    color: #ffffde;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper .link-icon {
    display: inline-block;
    color: #ffffde;
    transition: all 0.3s;
    font-size: 14px;
    justify-content: center;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
    height: 2px;
    width: 100%;
    top: 50%;
    right: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
        display: none;
    }
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
    height: 2px;
    width: 100%;
    top: 50%;
    left: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
        display: none;
    }
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: relative !important;
}

.cid-tSCpVaFTLq .navbar-dropdown {
    position: absolute !important;
}

.cid-tSCpVaFTLq .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-tSCpVaFTLq .dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tSCpVaFTLq .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
}

.cid-tSCpVaFTLq .dropdown-item:hover,
.cid-tSCpVaFTLq .dropdown-item:focus {
    background: #fc7942 !important;
    color: white !important;
}

.cid-tSCpVaFTLq .dropdown-item:hover span {
    color: white;
}

.cid-tSCpVaFTLq .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.cid-tSCpVaFTLq .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.cid-tSCpVaFTLq .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 0.667em 1em !important;
}

.cid-tSCpVaFTLq .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
}

.cid-tSCpVaFTLq .nav-link {
    position: relative;
}

.cid-tSCpVaFTLq .container {
    display: flex;
    margin: auto;
}

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .container {
        flex-wrap: nowrap;
    }
}

.cid-tSCpVaFTLq .navbar-nav {
    margin: 0 auto;
}

.cid-tSCpVaFTLq .dropdown-menu,
.cid-tSCpVaFTLq .navbar.opened {
    background: #06182d !important;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item {
    width: auto;
    transition: all 0.25s ease-in-out;
}

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

.cid-tSCpVaFTLq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-right: 0.5rem;
    vertical-align: sub;
}

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

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

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

.cid-tSCpVaFTLq .navbar {
    min-height: 70px;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    background: rgba(6, 24, 45, 0.2);
    border: none !important;
    box-shadow: none !important;
}

.cid-tSCpVaFTLq .navbar.opened {
    transition: all 0.3s;
}

.cid-tSCpVaFTLq .navbar .dropdown-item {
    padding: 0.5rem 1.8rem;
}

.cid-tSCpVaFTLq .navbar .navbar-logo img {
    width: auto;
}

.cid-tSCpVaFTLq .navbar .navbar-collapse {
    justify-content: flex-end;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0);
}

.cid-tSCpVaFTLq .navbar.collapsed {
    justify-content: center;
}

.cid-tSCpVaFTLq .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

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

@media (min-width: 992px) {
    .cid-tSCpVaFTLq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
        max-height: calc(98.5vh - 3rem);
    }
}

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

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

.cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

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

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar .nav-item .nav-link::before {
        display: none;
    }

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

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

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

    .cid-tSCpVaFTLq .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-tSCpVaFTLq .navbar .navbar-logo img {
        height: 3rem !important;
    }

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

    .cid-tSCpVaFTLq .navbar .dropdown-menu .dropdown-item {
        padding: 0.25rem 1.5rem !important;
        text-align: center;
    }

    .cid-tSCpVaFTLq .navbar .navbar-brand {
        flex-shrink: initial;
        flex-basis: auto;
        word-break: break-word;
        padding-right: 2rem;
    }

    .cid-tSCpVaFTLq .navbar .navbar-toggler {
        flex-basis: auto;
    }
}

@media (max-width: 991px) and (max-width: 767px) {
    .cid-tSCpVaFTLq .navbar .navbar-brand {
        width: calc(100% - 31px);
    }
}

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

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
}

.cid-tSCpVaFTLq .navbar.navbar-short .navbar-brand {
    min-height: 60px;
    padding: 0;
}

.cid-tSCpVaFTLq .navbar-brand {
    min-height: 108px;
    flex-shrink: 0;
    align-items: center;
    margin-right: 0;
    padding: 10px 0;
    transition: all 0.3s;
    word-break: break-word;
    z-index: 1;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #06182d;
}

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

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

.cid-tSCpVaFTLq ul.navbar-nav {
    flex-wrap: wrap;
}

.cid-tSCpVaFTLq .navbar-buttons {
    text-align: center;
    min-width: 170px;
}

.cid-tSCpVaFTLq button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
}

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

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

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

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

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

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

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(2) {
    transform: rotate(45deg);
    transition: all 0.25s;
}

.cid-tSCpVaFTLq nav.opened .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    transition: all 0.25s;
}

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

.cid-tSCpVaFTLq .navbar-dropdown {
    padding: 0 1rem;
    background-color: rgba(0, 0, 0, 0);
}

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .cid-tSCpVaFTLq .navbar {
        height: 70px;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        height: auto;
    }

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

.cid-tSCpVaFTLq .container,
.cid-tSCpVaFTLq .container-fluid {
    position: relative;
    min-height: 108px;
    background-color: rgba(0, 0, 0, 0);
}

.cid-tSCpVaFTLq .navbar-short {
    background-color: #06182d !important;
}

.cid-tSCpVaFTLq .navbar-short .container,
.cid-tSCpVaFTLq .navbar-short .container-fluid {
    min-height: 85px;
}

.cid-tSCpVaFTLq .navbar-short .container:before,
.cid-tSCpVaFTLq .navbar-short .container-fluid:before {
    display: none;
}

.cid-tSCpVaFTLq .navbar-short .navbar-brand {
    min-height: 85px !important;
}

.cid-tSCpVaFTLq .mbr-section-btn .btn {
    padding: 10px 25px;
    min-height: 48px;
}

.cid-tSCpVaFTLq .border-item {
    position: absolute;
    bottom: -1px;
    display: none;
    width: 100%;
    background-color: transparent;
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .border-item {
        display: block;
    }
}

@media (max-width: 991px) {
    .cid-tSCpVaFTLq .navbar {
        overflow: hidden;
    }

    .cid-tSCpVaFTLq .container,
    .cid-tSCpVaFTLq .container-fluid {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-brand {
        min-height: 85px;
    }

    .cid-tSCpVaFTLq .navbar-short .container,
    .cid-tSCpVaFTLq .navbar-short .container-fluid {
        min-height: 75px;
    }

    .cid-tSCpVaFTLq .navbar-short .navbar-brand {
        min-height: 75px !important;
    }

    .cid-tSCpVaFTLq .navbar.opened {
        background: rgba(6, 24, 45, 0.2) !important;
    }

    .cid-tSCpVaFTLq .navbar.navbar-short {
        background-color: #06182d !important;
    }

    .cid-tSCpVaFTLq .navbar-collapse {
        position: relative;
        order: 5;
        z-index: 5 !important;
        padding-bottom: 10px;
    }

    .cid-tSCpVaFTLq .navbar-nav .nav-item {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

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

    .cid-tSCpVaFTLq .border-item {
        position: relative;
        bottom: 0;
        margin-top: auto;
    }

    .cid-tSCpVaFTLq .border-item:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100vw;
        height: 100vw;
        background: #06182d;
        z-index: 4;
        transition: 0.1s all;
    }
}

.cid-tSDMqtjjfD {
    padding-top: 10rem;
    padding-bottom: 3rem;
    background-color: #06182d;
}

.cid-tSDMqtjjfD .mbr-fallback-image.disabled {
    display: none;
}

.cid-tSDMqtjjfD .mbr-fallback-image {
    display: block;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.cid-tSDMqtjjfD .row {
    margin: 0 !important;
    row-gap: 40px;
    flex-direction: row-reverse;
}

.cid-tSDMqtjjfD .item-img {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    padding: 0 !important;
    justify-content: flex-end;
}

.cid-tSDMqtjjfD .item-img img {
    max-width: 580px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .cid-tSDMqtjjfD .item-img {
        width: 100%;
    }
}

.cid-tSDMqtjjfD .item-content {
    width: 50%;
    padding: 0 !important;
}

@media (max-width: 1500px) {
    .cid-tSDMqtjjfD .item-content {
        padding-left: 40px !important;
        padding-left: 0 !important;
        padding-right: 40px !important;
    }
}

@media (max-width: 1199px) {
    .cid-tSDMqtjjfD .item-content {
        padding-left: 25px !important;
        padding-left: 0 !important;
        padding-right: 25px !important;
    }
}

@media (max-width: 991px) {
    .cid-tSDMqtjjfD .item-content {
        width: 100%;
        padding: 0 !important;
    }
}

.cid-tSDMqtjjfD .card-title {
    color: #ffffff;
    text-align: center;
}

.cid-tSDMqtjjfD .card-text {
    margin-top: 25px;
    color: #131313;
}

.cid-tSDMqtjjfD .list-box {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    width: 100%;
    margin-top: 45px;
}

@media (max-width: 991px) {
    .cid-tSDMqtjjfD .list-box {
        margin-top: 24px;
        row-gap: 5px;
    }
}

.cid-tSDMqtjjfD .list-item {
    width: 100%;
}

.cid-tSDMqtjjfD .list-text {
    color: #ffffff;
    text-align: center;
}

.cid-tSDMqtjjfD .mbr-section-btn {
    margin-top: 40px;
}

@media (max-width: 991px) {
    .cid-tSDMqtjjfD .mbr-section-btn {
        margin-top: 15px;
    }
}

.cid-tSDMqtjjfD .card-text,
.cid-tSDMqtjjfD .mbr-section-btn {
    color: #ffffff;
    text-align: center;
}

.cid-tSEVyOK4kY {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #235d81;
}

.cid-tSEVyOK4kY .container {
    padding: 0 5%;
}

.cid-tSEVyOK4kY .image-wrapper {
    display: flex;
    align-items: center;
}

.cid-tSEVyOK4kY .card:nth-child(odd) {
    padding-right: 21px;
}

@media (max-width: 992px) {
    .cid-tSEVyOK4kY .card:nth-child(odd) {
        padding-right: 16px;
    }
}

.cid-tSEVyOK4kY .card:nth-child(even) {
    padding-left: 21px;
}

@media (max-width: 992px) {
    .cid-tSEVyOK4kY .card:nth-child(even) {
        padding-left: 16px;
    }
}

.cid-tSEVyOK4kY .card-wrapper {
    margin-bottom: 42px;
    border-radius: 15px;
    display: flex;
    background: #06182d;
}

@media (max-width: 991px) {
    .cid-tSEVyOK4kY .card-wrapper {
        padding: 1rem 2rem;
    }
}

@media (min-width: 992px) {
    .cid-tSEVyOK4kY .card-wrapper {
        padding: 2rem 4rem;
    }
}

.cid-tSEVyOK4kY .mbr-iconfont {
    font-size: 2rem;
    padding-right: 1.5rem;
    color: #fc7942;
}

.cid-tSEVyOK4kY .mbr-section-title {
    margin-bottom: 4.5rem;
    color: #FFFFFF;
}

.cid-tSEVyOK4kY .card-title {
    color: #ffffff;
}

.cid-tSEVyOK4kY .mbr-text {
    color: #ffffff;
}

.cid-tSEVyOK4kY P {
    color: #ffffff;
}

.cid-tSJ7zhk4gc {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #06182d;
}

.cid-tSJ7zhk4gc .mbr-overlay {
    background-color: #06182d;
    opacity: 0.7;
}

.cid-tSJ7zhk4gc .items .list-item {
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7zhk4gc .items .list-item .listico {
    display: inline-block;
    padding-right: 1rem;
    font-size: 1rem;
}

.cid-tSJ7zhk4gc .items .list-item .text2 {
    display: inline-block;
    color: #ffffff;
    text-align: left;
    margin-bottom: 0;
}

.cid-tSJ7zhk4gc li {
    margin: 0;
    list-style: none;
    cursor: pointer;
}

.cid-tSJ7zhk4gc .align-wrap {
    display: flex;
    flex-direction: column;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap {
    display: flex;
    justify-content: flex-start;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .card-img {
    margin-right: 15px;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .card-img .mbr-iconfont {
    color: #ff4e3c !important;
    font-size: 1.1rem;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap {
    display: flex;
    align-items: center;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap .icon-title {
    margin: 0;
    padding-bottom: 0px;
    color: #ffffff;
    font-weight: 300;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap .icons-wrap:hover .icon-title {
    color: #d4b844;
}

.cid-tSJ7zhk4gc .align-wrap .item-wrap span,
.cid-tSJ7zhk4gc .align-wrap .item-wrap p {
    transition: all 0.3s;
}

.cid-tSJ7zhk4gc .opening-hours .box-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li {
    padding: 10px 0 10px;
    color: #ffffff;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li:first-child {
    padding-top: 0;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li:last-child {
    border-bottom: none;
}

.cid-tSJ7zhk4gc .opening-hours .box-list li span {
    float: right;
    text-align: right;
    padding-left: 0.5rem;
    color: #ffffff;
}

.cid-tSJ7zhk4gc .opening-hours .box-list.display-4 {
    line-height: 1.5;
}

@media (min-width: 1200px) {
    .cid-tSJ7zhk4gc .col-lg-3 {
        max-width: 20%;
    }
}

@media (max-width: 992px) {
    .cid-tSJ7zhk4gc .col-md-6 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-tSJ7zhk4gc .socicon-wrap {
        margin: auto;
    }
}

.cid-tSJ7zhk4gc .items .list-item .text2,
.cid-tSJ7zhk4gc .items .list-item {
    text-align: center;
}

.cid-tSJ7SGwdnG {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #06182d;
}

.cid-tSJ7SGwdnG .copyright {
    display: flex;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .copyright {
        margin-bottom: 1rem;
    }
}

.cid-tSJ7SGwdnG .text-wrap {
    transition: all 0.3s;
    padding: 23px;
    bottom: 0;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper {
    background: #06182d;
    display: flex;
    width: 31px;
    height: 31px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #384657;
    transition: all 0.3s;
    z-index: 4;
    cursor: pointer;
    margin: 0 0.2rem;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover {
    background: #ff4e3c;
    border-color: #ff4e3c;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
    color: #ffffde;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap .icon-wrapper .link-icon {
    display: inline-block;
    color: #ffffde;
    transition: all 0.3s;
    font-size: 14px;
    justify-content: center;
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
    height: 2px;
    width: 100%;
    top: 50%;
    right: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::before {
        display: none;
    }
}

.cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
    height: 2px;
    width: 100%;
    top: 50%;
    left: 58%;
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #384657;
}

@media (max-width: 992px) {
    .cid-tSJ7SGwdnG .text-wrap .icons-wrap::after {
        display: none;
    }
}
