body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-ukXKQJD6I3 .navbar-dropdown {
  position: absolute !important;
}
.cid-ukXKQJD6I3 .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-ukXKQJD6I3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXKQJD6I3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXKQJD6I3 .dropdown-item:hover,
.cid-ukXKQJD6I3 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ukXKQJD6I3 .dropdown-item:hover span {
  color: white;
}
.cid-ukXKQJD6I3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXKQJD6I3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXKQJD6I3 .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXKQJD6I3 .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXKQJD6I3 .nav-link {
  position: relative;
}
.cid-ukXKQJD6I3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ukXKQJD6I3 .container {
    flex-wrap: nowrap;
  }
}
.cid-ukXKQJD6I3 .dropdown-menu,
.cid-ukXKQJD6I3 .navbar.opened {
  background: #000000 !important;
}
.cid-ukXKQJD6I3 .nav-item:focus,
.cid-ukXKQJD6I3 .nav-link:focus {
  outline: none;
}
.cid-ukXKQJD6I3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXKQJD6I3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXKQJD6I3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXKQJD6I3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXKQJD6I3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXKQJD6I3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXKQJD6I3 .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 1.6666666667vw 0 !important;
  border: none !important;
}
.cid-ukXKQJD6I3 .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXKQJD6I3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXKQJD6I3 .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXKQJD6I3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXKQJD6I3 .navbar.collapsed {
  justify-content: center;
}
.cid-ukXKQJD6I3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXKQJD6I3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXKQJD6I3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-ukXKQJD6I3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXKQJD6I3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXKQJD6I3 .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-ukXKQJD6I3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXKQJD6I3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXKQJD6I3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXKQJD6I3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXKQJD6I3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXKQJD6I3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXKQJD6I3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXKQJD6I3 .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-ukXKQJD6I3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXKQJD6I3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXKQJD6I3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXKQJD6I3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXKQJD6I3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXKQJD6I3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXKQJD6I3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXKQJD6I3 .navbar-brand {
  min-height: 70px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
  max-width: 25%;
  width: 100%;
}
.cid-ukXKQJD6I3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-ukXKQJD6I3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXKQJD6I3 .dropdown-item.active,
.cid-ukXKQJD6I3 .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXKQJD6I3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXKQJD6I3 .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXKQJD6I3 .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXKQJD6I3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ukXKQJD6I3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXKQJD6I3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXKQJD6I3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXKQJD6I3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXKQJD6I3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXKQJD6I3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ede7e2;
}
.cid-ukXKQJD6I3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXKQJD6I3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXKQJD6I3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXKQJD6I3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXKQJD6I3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXKQJD6I3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXKQJD6I3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXKQJD6I3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXKQJD6I3 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ukXKQJD6I3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXKQJD6I3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukXKQJD6I3 .navbar {
    height: 70px;
  }
  .cid-ukXKQJD6I3 .navbar.opened {
    height: auto;
  }
  .cid-ukXKQJD6I3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXKQJD6I3 .navbar-collapse {
  max-width: 75%;
  width: 100%;
  margin-left: auto;
}
.cid-ukXKQJD6I3 .navbar-nav {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 70%;
  border-radius: 1.7vw;
  overflow: hidden;
  border: 1px solid #ede7e2;
  background: #000000;
}
.cid-ukXKQJD6I3 .navbar-nav .nav-item {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXKQJD6I3 .navbar-nav .nav-link {
  padding: 1.1vw 1.7vw !important;
  margin: 0 !important;
  border-radius: 1.7vw;
  transition: .2s all;
}
.cid-ukXKQJD6I3 .navbar-nav .nav-link:hover {
  background-color: #ede7e2;
  color: #000000 !important;
  box-shadow: 2px 0 0 #ede7e2, 0 1px 0 #ede7e2, -2px 0 0 #ede7e2, 0 -1px 0 #ede7e2;
}
@media (min-width: 992px) {
  .cid-ukXKQJD6I3 .mbr-section-btn {
    width: 33.33333333%;
    margin: -0.6rem;
    padding-left: 0.6rem;
  }
  .cid-ukXKQJD6I3 .mbr-section-btn .btn {
    padding: 1.18vw 2vw;
  }
}
@media (max-width: 991px) {
  .cid-ukXKQJD6I3 .mbr-section-btn .btn {
    padding: 3.2vw 3.3vw;
  }
}
.cid-ukXKQJD6I3 .mbr-section-btn.custom-section-btn .btn-primary:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-ukXKQJD6I3 .mbr-section-btn.custom-section-btn .btn-black:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-ukXKQJD6I3 .mbr-section-btn.custom-section-btn .btn-white:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-ukXKQJD6I3 .btn-container {
  width: 33.33333333%;
  margin: -0.6rem;
  padding-left: 0.6rem;
}
@media (max-width: 991px) {
  .cid-ukXKQJD6I3 .navbar-brand {
    max-width: 60% !important;
    width: 100% !important;
    padding-right: 0 !important;
  }
  .cid-ukXKQJD6I3 .navbar-collapse {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding-top: 6vw;
  }
  .cid-ukXKQJD6I3 .navbar-nav {
    border: none;
    background: transparent;
    max-width: 100%;
  }
  .cid-ukXKQJD6I3 .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-ukXKQJD6I3 .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 0 2.1vw !important;
    border-radius: 0;
    font-size: 7.6vw;
    justify-content: flex-start;
  }
  .cid-ukXKQJD6I3 .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
    color: #ede7e2 !important;
    box-shadow: none;
  }
  .cid-ukXKQJD6I3 .mbr-section-btn {
    margin-top: 6.9vw;
    text-align: left;
  }
  .cid-ukXKQJD6I3 .btn-container {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-ukXKQJD6I3 .navbar-nav .nav-item .nav-link {
    margin: 0 0 3vw !important;
    font-size: 9.6vw;
    line-height: 1;
  }
  .cid-ukXKQJD6I3 .mbr-section-btn {
    margin-top: 7.5vw;
  }
}
@media (max-width: 575px) {
  .cid-ukXKQJD6I3 .navbar-nav .nav-item .nav-link {
    margin: 0 0 5vw !important;
    font-size: 11vw;
    line-height: 1;
  }
  .cid-ukXKQJD6I3 .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .cid-ukXKQJD6I3 .mbr-section-btn .btn {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uHKILB0FNm {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uHKILB0FNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKILB0FNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHKILB0FNm .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHKILB0FNm .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-ukXM1Z4z47 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ukXM1Z4z47 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXM1Z4z47 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXM1Z4z47 .content-wrapper {
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-ukXM1Z4z47 .content-wrapper {
    padding: 0;
  }
}
.cid-ukXM1Z4z47 .content-wrapper .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukXM1Z4z47 .content-wrapper .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-ukXM1Z4z47 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ukXM1Z4z47 .content-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ukXM1Z4z47 .content-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ukXM1Z4z47 .content-wrapper .image-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukXM1Z4z47 .content-wrapper .image-wrapper {
    margin-bottom: 38px;
  }
}
.cid-ukXM1Z4z47 .content-wrapper .image-wrapper img {
  height: 600px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ukXM1Z4z47 .content-wrapper .image-wrapper img {
    height: 250px;
  }
}
.cid-ukXM1Z4z47 .mbr-section-title {
  color: #ffffff;
}
.cid-ukXM1Z4z47 .mbr-text,
.cid-ukXM1Z4z47 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-ukXM1Z4z47 .mbr-section-title,
.cid-ukXM1Z4z47 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-ukXMsGFe0a {
  position: relative;
  overflow: hidden;
  background-color: #bbbbbb;
}
.cid-ukXMsGFe0a .decor-wrap {
  position: absolute;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-ukXMsGFe0a .decor-wrap {
    width: 60%;
    height: 50%;
    border-radius: 0 50% 0 0;
  }
}
.cid-ukXMsGFe0a .decor_1 {
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  border-radius: 0 0 40% 0;
  background-color: #000000;
  z-index: 1;
}
.cid-ukXMsGFe0a .decor_2 {
  right: -35%;
  bottom: 0;
  width: 200vh;
  height: 80%;
  border-radius: 100% 100% 0 0;
  background-color: #6592e6;
}
.cid-ukXMsGFe0a .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXMsGFe0a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXMsGFe0a .row {
  position: relative;
  z-index: 2;
}
.cid-ukXMsGFe0a .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-ukXMsGFe0a .content-wrapper .mbr-section-title {
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .cid-ukXMsGFe0a .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-ukXMsGFe0a .content-wrapper .text-wrapper {
  padding-right: 32%;
  padding-right: 0;
  padding-left: 32%;
}
@media (max-width: 992px) {
  .cid-ukXMsGFe0a .content-wrapper .text-wrapper {
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-ukXMsGFe0a .content-wrapper .text-wrapper {
    padding-left: 0;
  }
}
.cid-ukXMsGFe0a .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukXMsGFe0a .image-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ukXMsGFe0a .image-wrapper {
    margin-top: 46px;
  }
}
.cid-ukXMsGFe0a .image-wrapper img {
  height: 800px;
  width: 150%;
  transform: rotate(-8deg);
  object-fit: cover;
  transform: rotate(8deg);
}
@media (max-width: 992px) {
  .cid-ukXMsGFe0a .image-wrapper img {
    height: 350px;
    transform: none;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-ukXMsGFe0a .image-wrapper img {
    transform: none;
  }
}
.cid-ukXMsGFe0a .mbr-section-title {
  color: #ffffff;
}
.cid-ukXMsGFe0a .mbr-text {
  color: #51565c;
}
.cid-ukXMsGFe0a .mbr-text,
.cid-ukXMsGFe0a .text-wrapper {
  color: #ffffff;
}
.cid-ukXMKW03wj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ukXMKW03wj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXMKW03wj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXMKW03wj .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-ukXMKW03wj .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-ukXMKW03wj .container {
    padding: 0 26px;
  }
}
.cid-ukXMKW03wj .row {
  justify-content: center;
}
.cid-ukXMKW03wj .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #000000;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-ukXMKW03wj .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-ukXMKW03wj .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-ukXMKW03wj .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-ukXMKW03wj .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-ukXMKW03wj .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ukXMKW03wj .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-ukXMKW03wj .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ukXMKW03wj .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-ukXMKW03wj .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ukXMKW03wj .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-ukXMKW03wj .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-ukXMKW03wj .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-ukXMKW03wj .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ukXMKW03wj .mbr-section-title {
  color: #ffffff;
}
.cid-ukXMKW03wj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ukXMKW03wj .mbr-desc {
  color: #ffffff;
}
.cid-ukXMKW03wj .mbr-text {
  color: #ffffff;
}
.cid-ukXMKW03wj .mbr-link {
  color: #ffffff;
}
.cid-ukXMUnT1CJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ukXMUnT1CJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXMUnT1CJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXMUnT1CJ .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ukXMUnT1CJ .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-ukXMUnT1CJ .container {
    padding: 0 20px;
  }
}
.cid-ukXMUnT1CJ .row {
  justify-content: space-between;
}
.cid-ukXMUnT1CJ .card {
  justify-content: center;
}
.cid-ukXMUnT1CJ .image-wrapper {
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-ukXMUnT1CJ .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-ukXMUnT1CJ .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.cid-ukXMUnT1CJ .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-ukXMUnT1CJ .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-ukXMUnT1CJ .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-ukXMUnT1CJ .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukXMUnT1CJ .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-ukXMUnT1CJ .content-wrapper {
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-ukXMUnT1CJ .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-ukXMUnT1CJ .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-ukXMUnT1CJ .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-ukXMUnT1CJ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukXMUnT1CJ .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ukXMUnT1CJ .mbr-desc {
  color: #ffffff;
}
.cid-ukXMUnT1CJ .mbr-section-title {
  color: #1e1d1c;
}
.cid-ukXMUnT1CJ .mbr-section-title,
.cid-ukXMUnT1CJ .mbr-section-btn {
  color: #ffffff;
}
.cid-ukXNvfiBO1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8caff0;
}
.cid-ukXNvfiBO1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXNvfiBO1 .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-ukXNvfiBO1 .container {
    padding: 0 15px;
  }
}
.cid-ukXNvfiBO1 .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-ukXNvfiBO1 .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-ukXNvfiBO1 .content-wrapper {
    padding-right: 0;
  }
}
.cid-ukXNvfiBO1 .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ukXNvfiBO1 .content-wrap {
    display: block;
  }
}
.cid-ukXNvfiBO1 .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukXNvfiBO1 .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-ukXNvfiBO1 .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ukXNvfiBO1 .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-ukXNvfiBO1 .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-ukXNvfiBO1 .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-ukXNvfiBO1 .mbr-section-title {
  color: #000000;
}
.cid-ukXNvfiBO1 .mbr-desc,
.cid-ukXNvfiBO1 .desc-wrapper {
  color: #3f1819;
}
.cid-ukXNvfiBO1 .mbr-text {
  color: #000000;
}
.cid-ukXR3rBiRb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ukXR3rBiRb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXR3rBiRb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXR3rBiRb .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ukXR3rBiRb .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ukXR3rBiRb .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ukXR3rBiRb .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ukXR3rBiRb .container {
    padding: 0 16px;
  }
}
.cid-ukXR3rBiRb .row {
  padding: 60px 44px;
  background-color: #353535;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-ukXR3rBiRb .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-ukXR3rBiRb .row {
    padding: 25px 9px;
  }
}
.cid-ukXR3rBiRb .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ukXR3rBiRb .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ukXR3rBiRb .content-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ukXR3rBiRb .content-wrapper {
    height: auto;
    margin-bottom: 32px;
  }
}
.cid-ukXR3rBiRb .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-ukXR3rBiRb .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ukXR3rBiRb .image-wrapper img {
    height: 350px;
  }
}
.cid-ukXR3rBiRb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ukXR3rBiRb .mbr-text {
  color: #ffffff;
}
.cid-ukXR3rBiRb .mbr-name {
  color: #000000;
}
.cid-uHK6pLDDZT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uHK6pLDDZT .mbr-text {
  color: #ffffff;
}
.cid-uHK6pLDDZT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHK7I7dhRG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uHK7I7dhRG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHK7I7dhRG .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-uHK7I7dhRG .container {
    padding: 0 30px;
  }
}
.cid-uHK7I7dhRG .card {
  justify-content: center;
}
.cid-uHK7I7dhRG .content-wrapper {
  padding: 0 120px;
  display: flex;
}
@media (max-width: 1440px) {
  .cid-uHK7I7dhRG .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHK7I7dhRG .content-wrapper {
    padding: 0;
    display: block;
  }
}
.cid-uHK7I7dhRG .content-wrapper .tabs-wrapper {
  width: 30%;
  padding-right: 120px;
}
@media (max-width: 1440px) {
  .cid-uHK7I7dhRG .content-wrapper .tabs-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHK7I7dhRG .content-wrapper .tabs-wrapper {
    padding: 0;
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uHK7I7dhRG .content-wrapper .tabs-wrapper .tabs-wrap {
  border-left: 1px solid #000000;
  padding-left: 20px;
  height: fit-content;
}
.cid-uHK7I7dhRG .content-wrapper .tabs-wrapper .tabs-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uHK7I7dhRG .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-block;
}
.cid-uHK7I7dhRG .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-top: 20px;
  display: block;
}
.cid-uHK7I7dhRG .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uHK7I7dhRG .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  position: relative;
  padding: 0;
  margin-bottom: 0;
  border: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  opacity: .5;
}
.cid-uHK7I7dhRG .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uHK7I7dhRG .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 1;
  background-color: transparent;
}
.cid-uHK7I7dhRG .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active::before {
  width: 100%;
}
.cid-uHK7I7dhRG .content-wrapper .text-wrapper {
  width: 70%;
}
@media (max-width: 992px) {
  .cid-uHK7I7dhRG .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uHK7I7dhRG .content-wrapper .text-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uHK7I7dhRG .mbr-section-title {
  color: #254b45;
}
.cid-uHK7I7dhRG .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uHK7I7dhRG .mbr-section-title,
.cid-uHK7I7dhRG .tabs-wrap {
  color: #000000;
}
.cid-uHK8b8eo27 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uHK8b8eo27 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uHK8b8eo27 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uHK8b8eo27 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uHK8b8eo27 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHK8b8eo27 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uHK8b8eo27 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uHK8b8eo27 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uHK8b8eo27 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uHK8b8eo27 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uHK8b8eo27 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uHK8b8eo27 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uHK8b8eo27 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHK8b8eo27 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uHK8b8eo27 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ukYk6aAmal .navbar-dropdown {
  position: absolute !important;
}
.cid-ukYk6aAmal .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-ukYk6aAmal .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukYk6aAmal .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukYk6aAmal .dropdown-item:hover,
.cid-ukYk6aAmal .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ukYk6aAmal .dropdown-item:hover span {
  color: white;
}
.cid-ukYk6aAmal .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukYk6aAmal .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukYk6aAmal .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukYk6aAmal .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukYk6aAmal .nav-link {
  position: relative;
}
.cid-ukYk6aAmal .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ukYk6aAmal .container {
    flex-wrap: nowrap;
  }
}
.cid-ukYk6aAmal .dropdown-menu,
.cid-ukYk6aAmal .navbar.opened {
  background: #000000 !important;
}
.cid-ukYk6aAmal .nav-item:focus,
.cid-ukYk6aAmal .nav-link:focus {
  outline: none;
}
.cid-ukYk6aAmal .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukYk6aAmal .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukYk6aAmal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukYk6aAmal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukYk6aAmal .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukYk6aAmal .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukYk6aAmal .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 1.6666666667vw 0 !important;
  border: none !important;
}
.cid-ukYk6aAmal .navbar.opened {
  transition: all 0.3s;
}
.cid-ukYk6aAmal .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukYk6aAmal .navbar .navbar-logo img {
  width: auto;
}
.cid-ukYk6aAmal .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukYk6aAmal .navbar.collapsed {
  justify-content: center;
}
.cid-ukYk6aAmal .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukYk6aAmal .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukYk6aAmal .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-ukYk6aAmal .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukYk6aAmal .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukYk6aAmal .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-ukYk6aAmal .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukYk6aAmal .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukYk6aAmal .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukYk6aAmal .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukYk6aAmal .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukYk6aAmal .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukYk6aAmal .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukYk6aAmal .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-ukYk6aAmal .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukYk6aAmal .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukYk6aAmal .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukYk6aAmal .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukYk6aAmal .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukYk6aAmal .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukYk6aAmal .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukYk6aAmal .navbar-brand {
  min-height: 70px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
  max-width: 25%;
  width: 100%;
}
.cid-ukYk6aAmal .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-ukYk6aAmal .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukYk6aAmal .dropdown-item.active,
.cid-ukYk6aAmal .dropdown-item:active {
  background-color: transparent;
}
.cid-ukYk6aAmal .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukYk6aAmal .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukYk6aAmal .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukYk6aAmal .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ukYk6aAmal .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukYk6aAmal .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukYk6aAmal ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukYk6aAmal .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukYk6aAmal button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukYk6aAmal button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ede7e2;
}
.cid-ukYk6aAmal button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukYk6aAmal button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukYk6aAmal button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukYk6aAmal button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukYk6aAmal nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukYk6aAmal nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukYk6aAmal nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukYk6aAmal nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukYk6aAmal .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ukYk6aAmal a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukYk6aAmal .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukYk6aAmal .navbar {
    height: 70px;
  }
  .cid-ukYk6aAmal .navbar.opened {
    height: auto;
  }
  .cid-ukYk6aAmal .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukYk6aAmal .navbar-collapse {
  max-width: 75%;
  width: 100%;
  margin-left: auto;
}
.cid-ukYk6aAmal .navbar-nav {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 70%;
  border-radius: 1.7vw;
  overflow: hidden;
  border: 1px solid #ede7e2;
  background: #000000;
}
.cid-ukYk6aAmal .navbar-nav .nav-item {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukYk6aAmal .navbar-nav .nav-link {
  padding: 1.1vw 1.7vw !important;
  margin: 0 !important;
  border-radius: 1.7vw;
  transition: .2s all;
}
.cid-ukYk6aAmal .navbar-nav .nav-link:hover {
  background-color: #ede7e2;
  color: #000000 !important;
  box-shadow: 2px 0 0 #ede7e2, 0 1px 0 #ede7e2, -2px 0 0 #ede7e2, 0 -1px 0 #ede7e2;
}
@media (min-width: 992px) {
  .cid-ukYk6aAmal .mbr-section-btn {
    width: 33.33333333%;
    margin: -0.6rem;
    padding-left: 0.6rem;
  }
  .cid-ukYk6aAmal .mbr-section-btn .btn {
    padding: 1.18vw 2vw;
  }
}
@media (max-width: 991px) {
  .cid-ukYk6aAmal .mbr-section-btn .btn {
    padding: 3.2vw 3.3vw;
  }
}
.cid-ukYk6aAmal .mbr-section-btn.custom-section-btn .btn-primary:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-ukYk6aAmal .mbr-section-btn.custom-section-btn .btn-black:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-ukYk6aAmal .mbr-section-btn.custom-section-btn .btn-white:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-ukYk6aAmal .btn-container {
  width: 33.33333333%;
  margin: -0.6rem;
  padding-left: 0.6rem;
}
@media (max-width: 991px) {
  .cid-ukYk6aAmal .navbar-brand {
    max-width: 60% !important;
    width: 100% !important;
    padding-right: 0 !important;
  }
  .cid-ukYk6aAmal .navbar-collapse {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding-top: 6vw;
  }
  .cid-ukYk6aAmal .navbar-nav {
    border: none;
    background: transparent;
    max-width: 100%;
  }
  .cid-ukYk6aAmal .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-ukYk6aAmal .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 0 2.1vw !important;
    border-radius: 0;
    font-size: 7.6vw;
    justify-content: flex-start;
  }
  .cid-ukYk6aAmal .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
    color: #ede7e2 !important;
    box-shadow: none;
  }
  .cid-ukYk6aAmal .mbr-section-btn {
    margin-top: 6.9vw;
    text-align: left;
  }
  .cid-ukYk6aAmal .btn-container {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-ukYk6aAmal .navbar-nav .nav-item .nav-link {
    margin: 0 0 3vw !important;
    font-size: 9.6vw;
    line-height: 1;
  }
  .cid-ukYk6aAmal .mbr-section-btn {
    margin-top: 7.5vw;
  }
}
@media (max-width: 575px) {
  .cid-ukYk6aAmal .navbar-nav .nav-item .nav-link {
    margin: 0 0 5vw !important;
    font-size: 11vw;
    line-height: 1;
  }
  .cid-ukYk6aAmal .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .cid-ukYk6aAmal .mbr-section-btn .btn {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-ukYk6bUmBF {
  padding-top: 210px;
  padding-bottom: 180px;
  background-color: #353535;
}
@media (max-width: 767px) {
  .cid-ukYk6bUmBF {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
.cid-ukYk6bUmBF img {
  width: 100%;
  border-radius: 30px;
}
.cid-ukYk6bUmBF .mbr-section-title {
  color: #ffffff;
}
.cid-ukYk6bUmBF .mbr-section-subtitle {
  background-color: #ff6666;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-ukYk6bUmBF .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ukYk6bUmBF .svg-1 path {
  fill: #ffffff;
}
.cid-ukYk6bUmBF .container-fluid {
  max-width: 1200px;
}
.cid-ukYk6bUmBF .mbr-arrow {
  z-index: 1;
}
.cid-ukYk6bUmBF .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-ukYk6bUmBF .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-ukYk6bUmBF .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukYk6bUmBF .container-fluid {
    padding: 0 1rem;
  }
  .cid-ukYk6bUmBF .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-ukYk6bUmBF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukYk6bUmBF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukYk6d1rQJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ukYk6d1rQJ blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000000;
}
.cid-ukYk6d1rQJ .mbr-text {
  color: #ffffff;
}
.cid-uHK9mAwVK3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8caff0;
  overflow: hidden;
}
.cid-uHK9mAwVK3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHK9mAwVK3 .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-uHK9mAwVK3 .container {
    padding: 0 30px;
  }
}
.cid-uHK9mAwVK3 .card {
  justify-content: center;
}
.cid-uHK9mAwVK3 .content-wrapper {
  padding: 0 120px;
  display: flex;
}
@media (max-width: 1440px) {
  .cid-uHK9mAwVK3 .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHK9mAwVK3 .content-wrapper {
    padding: 0;
    display: block;
  }
}
.cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper {
  width: 30%;
  padding-right: 120px;
}
@media (max-width: 1440px) {
  .cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper {
    padding: 0;
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper .tabs-wrap {
  border-left: 1px solid #000000;
  padding-left: 20px;
  height: fit-content;
}
.cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper .tabs-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-block;
}
.cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-top: 20px;
  display: block;
}
.cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  position: relative;
  padding: 0;
  margin-bottom: 0;
  border: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  opacity: .5;
}
.cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 1;
  background-color: transparent;
}
.cid-uHK9mAwVK3 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active::before {
  width: 100%;
}
.cid-uHK9mAwVK3 .content-wrapper .text-wrapper {
  width: 70%;
}
@media (max-width: 992px) {
  .cid-uHK9mAwVK3 .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uHK9mAwVK3 .content-wrapper .text-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uHK9mAwVK3 .mbr-section-title {
  color: #254b45;
}
.cid-uHK9mAwVK3 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uHK9mAwVK3 .mbr-section-title,
.cid-uHK9mAwVK3 .tabs-wrap {
  color: #000000;
}
.cid-uHK8b8eo27 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uHK8b8eo27 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uHK8b8eo27 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uHK8b8eo27 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uHK8b8eo27 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHK8b8eo27 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uHK8b8eo27 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uHK8b8eo27 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uHK8b8eo27 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uHK8b8eo27 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uHK8b8eo27 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uHK8b8eo27 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uHK8b8eo27 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHK8b8eo27 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uHK8b8eo27 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uHKaJDuDPB .navbar-dropdown {
  position: absolute !important;
}
.cid-uHKaJDuDPB .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-uHKaJDuDPB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHKaJDuDPB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHKaJDuDPB .dropdown-item:hover,
.cid-uHKaJDuDPB .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHKaJDuDPB .dropdown-item:hover span {
  color: white;
}
.cid-uHKaJDuDPB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHKaJDuDPB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHKaJDuDPB .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHKaJDuDPB .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHKaJDuDPB .nav-link {
  position: relative;
}
.cid-uHKaJDuDPB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHKaJDuDPB .container {
    flex-wrap: nowrap;
  }
}
.cid-uHKaJDuDPB .dropdown-menu,
.cid-uHKaJDuDPB .navbar.opened {
  background: #000000 !important;
}
.cid-uHKaJDuDPB .nav-item:focus,
.cid-uHKaJDuDPB .nav-link:focus {
  outline: none;
}
.cid-uHKaJDuDPB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHKaJDuDPB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHKaJDuDPB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHKaJDuDPB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHKaJDuDPB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHKaJDuDPB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHKaJDuDPB .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 1.6666666667vw 0 !important;
  border: none !important;
}
.cid-uHKaJDuDPB .navbar.opened {
  transition: all 0.3s;
}
.cid-uHKaJDuDPB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHKaJDuDPB .navbar .navbar-logo img {
  width: auto;
}
.cid-uHKaJDuDPB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHKaJDuDPB .navbar.collapsed {
  justify-content: center;
}
.cid-uHKaJDuDPB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHKaJDuDPB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHKaJDuDPB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uHKaJDuDPB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHKaJDuDPB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHKaJDuDPB .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-uHKaJDuDPB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHKaJDuDPB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHKaJDuDPB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHKaJDuDPB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHKaJDuDPB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHKaJDuDPB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHKaJDuDPB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHKaJDuDPB .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-uHKaJDuDPB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHKaJDuDPB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHKaJDuDPB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHKaJDuDPB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHKaJDuDPB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHKaJDuDPB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHKaJDuDPB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHKaJDuDPB .navbar-brand {
  min-height: 70px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
  max-width: 25%;
  width: 100%;
}
.cid-uHKaJDuDPB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-uHKaJDuDPB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHKaJDuDPB .dropdown-item.active,
.cid-uHKaJDuDPB .dropdown-item:active {
  background-color: transparent;
}
.cid-uHKaJDuDPB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHKaJDuDPB .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHKaJDuDPB .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHKaJDuDPB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uHKaJDuDPB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHKaJDuDPB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHKaJDuDPB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHKaJDuDPB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHKaJDuDPB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHKaJDuDPB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ede7e2;
}
.cid-uHKaJDuDPB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHKaJDuDPB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHKaJDuDPB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHKaJDuDPB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHKaJDuDPB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHKaJDuDPB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHKaJDuDPB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHKaJDuDPB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHKaJDuDPB .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHKaJDuDPB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHKaJDuDPB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHKaJDuDPB .navbar {
    height: 70px;
  }
  .cid-uHKaJDuDPB .navbar.opened {
    height: auto;
  }
  .cid-uHKaJDuDPB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHKaJDuDPB .navbar-collapse {
  max-width: 75%;
  width: 100%;
  margin-left: auto;
}
.cid-uHKaJDuDPB .navbar-nav {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 70%;
  border-radius: 1.7vw;
  overflow: hidden;
  border: 1px solid #ede7e2;
  background: #000000;
}
.cid-uHKaJDuDPB .navbar-nav .nav-item {
  display: flex;
  flex-wrap: wrap;
}
.cid-uHKaJDuDPB .navbar-nav .nav-link {
  padding: 1.1vw 1.7vw !important;
  margin: 0 !important;
  border-radius: 1.7vw;
  transition: .2s all;
}
.cid-uHKaJDuDPB .navbar-nav .nav-link:hover {
  background-color: #ede7e2;
  color: #000000 !important;
  box-shadow: 2px 0 0 #ede7e2, 0 1px 0 #ede7e2, -2px 0 0 #ede7e2, 0 -1px 0 #ede7e2;
}
@media (min-width: 992px) {
  .cid-uHKaJDuDPB .mbr-section-btn {
    width: 33.33333333%;
    margin: -0.6rem;
    padding-left: 0.6rem;
  }
  .cid-uHKaJDuDPB .mbr-section-btn .btn {
    padding: 1.18vw 2vw;
  }
}
@media (max-width: 991px) {
  .cid-uHKaJDuDPB .mbr-section-btn .btn {
    padding: 3.2vw 3.3vw;
  }
}
.cid-uHKaJDuDPB .mbr-section-btn.custom-section-btn .btn-primary:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKaJDuDPB .mbr-section-btn.custom-section-btn .btn-black:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKaJDuDPB .mbr-section-btn.custom-section-btn .btn-white:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKaJDuDPB .btn-container {
  width: 33.33333333%;
  margin: -0.6rem;
  padding-left: 0.6rem;
}
@media (max-width: 991px) {
  .cid-uHKaJDuDPB .navbar-brand {
    max-width: 60% !important;
    width: 100% !important;
    padding-right: 0 !important;
  }
  .cid-uHKaJDuDPB .navbar-collapse {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding-top: 6vw;
  }
  .cid-uHKaJDuDPB .navbar-nav {
    border: none;
    background: transparent;
    max-width: 100%;
  }
  .cid-uHKaJDuDPB .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-uHKaJDuDPB .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 0 2.1vw !important;
    border-radius: 0;
    font-size: 7.6vw;
    justify-content: flex-start;
  }
  .cid-uHKaJDuDPB .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
    color: #ede7e2 !important;
    box-shadow: none;
  }
  .cid-uHKaJDuDPB .mbr-section-btn {
    margin-top: 6.9vw;
    text-align: left;
  }
  .cid-uHKaJDuDPB .btn-container {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-uHKaJDuDPB .navbar-nav .nav-item .nav-link {
    margin: 0 0 3vw !important;
    font-size: 9.6vw;
    line-height: 1;
  }
  .cid-uHKaJDuDPB .mbr-section-btn {
    margin-top: 7.5vw;
  }
}
@media (max-width: 575px) {
  .cid-uHKaJDuDPB .navbar-nav .nav-item .nav-link {
    margin: 0 0 5vw !important;
    font-size: 11vw;
    line-height: 1;
  }
  .cid-uHKaJDuDPB .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .cid-uHKaJDuDPB .mbr-section-btn .btn {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uHKaJDPhxH {
  padding-top: 225px;
  padding-bottom: 180px;
  background-color: #353535;
}
@media (max-width: 767px) {
  .cid-uHKaJDPhxH {
    padding-top: 75px;
    padding-bottom: 60px;
  }
}
.cid-uHKaJDPhxH img {
  width: 100%;
  border-radius: 30px;
}
.cid-uHKaJDPhxH .mbr-section-title {
  color: #ffffff;
}
.cid-uHKaJDPhxH .mbr-section-subtitle {
  background-color: #ff6666;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-uHKaJDPhxH .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-uHKaJDPhxH .svg-1 path {
  fill: #ffffff;
}
.cid-uHKaJDPhxH .container-fluid {
  max-width: 1200px;
}
.cid-uHKaJDPhxH .mbr-arrow {
  z-index: 1;
}
.cid-uHKaJDPhxH .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-uHKaJDPhxH .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uHKaJDPhxH .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uHKaJDPhxH .container-fluid {
    padding: 0 1rem;
  }
  .cid-uHKaJDPhxH .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-uHKaJDPhxH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKaJDPhxH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHKaJE5jek {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHKaJE5jek blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #232323;
}
.cid-uHKaJE5jek .mbr-text {
  color: #fafafa;
}
.cid-uHKaJElaEP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8caff0;
  overflow: hidden;
}
.cid-uHKaJElaEP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKaJElaEP .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-uHKaJElaEP .container {
    padding: 0 30px;
  }
}
.cid-uHKaJElaEP .card {
  justify-content: center;
}
.cid-uHKaJElaEP .content-wrapper {
  padding: 0 120px;
  display: flex;
}
@media (max-width: 1440px) {
  .cid-uHKaJElaEP .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHKaJElaEP .content-wrapper {
    padding: 0;
    display: block;
  }
}
.cid-uHKaJElaEP .content-wrapper .tabs-wrapper {
  width: 30%;
  padding-right: 120px;
}
@media (max-width: 1440px) {
  .cid-uHKaJElaEP .content-wrapper .tabs-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHKaJElaEP .content-wrapper .tabs-wrapper {
    padding: 0;
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uHKaJElaEP .content-wrapper .tabs-wrapper .tabs-wrap {
  border-left: 1px solid #000000;
  padding-left: 20px;
  height: fit-content;
}
.cid-uHKaJElaEP .content-wrapper .tabs-wrapper .tabs-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uHKaJElaEP .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-block;
}
.cid-uHKaJElaEP .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-top: 20px;
  display: block;
}
.cid-uHKaJElaEP .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uHKaJElaEP .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  position: relative;
  padding: 0;
  margin-bottom: 0;
  border: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  opacity: .5;
}
.cid-uHKaJElaEP .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uHKaJElaEP .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 1;
  background-color: transparent;
}
.cid-uHKaJElaEP .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active::before {
  width: 100%;
}
.cid-uHKaJElaEP .content-wrapper .text-wrapper {
  width: 70%;
}
@media (max-width: 992px) {
  .cid-uHKaJElaEP .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uHKaJElaEP .content-wrapper .text-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uHKaJElaEP .mbr-section-title {
  color: #254b45;
}
.cid-uHKaJElaEP .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uHKaJElaEP .mbr-section-title,
.cid-uHKaJElaEP .tabs-wrap {
  color: #000000;
}
.cid-uHKaJEF6My {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uHKaJEF6My .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uHKaJEF6My .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uHKaJEF6My .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uHKaJEF6My .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHKaJEF6My .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uHKaJEF6My .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uHKaJEF6My .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uHKaJEF6My .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uHKaJEF6My .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uHKaJEF6My .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uHKaJEF6My .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uHKaJEF6My .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHKaJEF6My .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uHKaJEF6My .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uHKaKEBs1T .navbar-dropdown {
  position: absolute !important;
}
.cid-uHKaKEBs1T .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-uHKaKEBs1T .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHKaKEBs1T .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHKaKEBs1T .dropdown-item:hover,
.cid-uHKaKEBs1T .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHKaKEBs1T .dropdown-item:hover span {
  color: white;
}
.cid-uHKaKEBs1T .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHKaKEBs1T .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHKaKEBs1T .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHKaKEBs1T .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHKaKEBs1T .nav-link {
  position: relative;
}
.cid-uHKaKEBs1T .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHKaKEBs1T .container {
    flex-wrap: nowrap;
  }
}
.cid-uHKaKEBs1T .dropdown-menu,
.cid-uHKaKEBs1T .navbar.opened {
  background: #000000 !important;
}
.cid-uHKaKEBs1T .nav-item:focus,
.cid-uHKaKEBs1T .nav-link:focus {
  outline: none;
}
.cid-uHKaKEBs1T .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHKaKEBs1T .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHKaKEBs1T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHKaKEBs1T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHKaKEBs1T .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHKaKEBs1T .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHKaKEBs1T .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 1.6666666667vw 0 !important;
  border: none !important;
}
.cid-uHKaKEBs1T .navbar.opened {
  transition: all 0.3s;
}
.cid-uHKaKEBs1T .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHKaKEBs1T .navbar .navbar-logo img {
  width: auto;
}
.cid-uHKaKEBs1T .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHKaKEBs1T .navbar.collapsed {
  justify-content: center;
}
.cid-uHKaKEBs1T .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHKaKEBs1T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHKaKEBs1T .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uHKaKEBs1T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHKaKEBs1T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHKaKEBs1T .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-uHKaKEBs1T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHKaKEBs1T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHKaKEBs1T .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHKaKEBs1T .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHKaKEBs1T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHKaKEBs1T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHKaKEBs1T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHKaKEBs1T .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-uHKaKEBs1T .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHKaKEBs1T .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHKaKEBs1T .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHKaKEBs1T .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHKaKEBs1T .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHKaKEBs1T .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHKaKEBs1T .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHKaKEBs1T .navbar-brand {
  min-height: 70px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
  max-width: 25%;
  width: 100%;
}
.cid-uHKaKEBs1T .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-uHKaKEBs1T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHKaKEBs1T .dropdown-item.active,
.cid-uHKaKEBs1T .dropdown-item:active {
  background-color: transparent;
}
.cid-uHKaKEBs1T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHKaKEBs1T .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHKaKEBs1T .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHKaKEBs1T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uHKaKEBs1T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHKaKEBs1T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHKaKEBs1T ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHKaKEBs1T .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHKaKEBs1T button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHKaKEBs1T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ede7e2;
}
.cid-uHKaKEBs1T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHKaKEBs1T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHKaKEBs1T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHKaKEBs1T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHKaKEBs1T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHKaKEBs1T nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHKaKEBs1T nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHKaKEBs1T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHKaKEBs1T .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHKaKEBs1T a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHKaKEBs1T .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHKaKEBs1T .navbar {
    height: 70px;
  }
  .cid-uHKaKEBs1T .navbar.opened {
    height: auto;
  }
  .cid-uHKaKEBs1T .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHKaKEBs1T .navbar-collapse {
  max-width: 75%;
  width: 100%;
  margin-left: auto;
}
.cid-uHKaKEBs1T .navbar-nav {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 70%;
  border-radius: 1.7vw;
  overflow: hidden;
  border: 1px solid #ede7e2;
  background: #000000;
}
.cid-uHKaKEBs1T .navbar-nav .nav-item {
  display: flex;
  flex-wrap: wrap;
}
.cid-uHKaKEBs1T .navbar-nav .nav-link {
  padding: 1.1vw 1.7vw !important;
  margin: 0 !important;
  border-radius: 1.7vw;
  transition: .2s all;
}
.cid-uHKaKEBs1T .navbar-nav .nav-link:hover {
  background-color: #ede7e2;
  color: #000000 !important;
  box-shadow: 2px 0 0 #ede7e2, 0 1px 0 #ede7e2, -2px 0 0 #ede7e2, 0 -1px 0 #ede7e2;
}
@media (min-width: 992px) {
  .cid-uHKaKEBs1T .mbr-section-btn {
    width: 33.33333333%;
    margin: -0.6rem;
    padding-left: 0.6rem;
  }
  .cid-uHKaKEBs1T .mbr-section-btn .btn {
    padding: 1.18vw 2vw;
  }
}
@media (max-width: 991px) {
  .cid-uHKaKEBs1T .mbr-section-btn .btn {
    padding: 3.2vw 3.3vw;
  }
}
.cid-uHKaKEBs1T .mbr-section-btn.custom-section-btn .btn-primary:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKaKEBs1T .mbr-section-btn.custom-section-btn .btn-black:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKaKEBs1T .mbr-section-btn.custom-section-btn .btn-white:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKaKEBs1T .btn-container {
  width: 33.33333333%;
  margin: -0.6rem;
  padding-left: 0.6rem;
}
@media (max-width: 991px) {
  .cid-uHKaKEBs1T .navbar-brand {
    max-width: 60% !important;
    width: 100% !important;
    padding-right: 0 !important;
  }
  .cid-uHKaKEBs1T .navbar-collapse {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding-top: 6vw;
  }
  .cid-uHKaKEBs1T .navbar-nav {
    border: none;
    background: transparent;
    max-width: 100%;
  }
  .cid-uHKaKEBs1T .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-uHKaKEBs1T .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 0 2.1vw !important;
    border-radius: 0;
    font-size: 7.6vw;
    justify-content: flex-start;
  }
  .cid-uHKaKEBs1T .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
    color: #ede7e2 !important;
    box-shadow: none;
  }
  .cid-uHKaKEBs1T .mbr-section-btn {
    margin-top: 6.9vw;
    text-align: left;
  }
  .cid-uHKaKEBs1T .btn-container {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-uHKaKEBs1T .navbar-nav .nav-item .nav-link {
    margin: 0 0 3vw !important;
    font-size: 9.6vw;
    line-height: 1;
  }
  .cid-uHKaKEBs1T .mbr-section-btn {
    margin-top: 7.5vw;
  }
}
@media (max-width: 575px) {
  .cid-uHKaKEBs1T .navbar-nav .nav-item .nav-link {
    margin: 0 0 5vw !important;
    font-size: 11vw;
    line-height: 1;
  }
  .cid-uHKaKEBs1T .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .cid-uHKaKEBs1T .mbr-section-btn .btn {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uHKaKEUtI0 {
  padding-top: 225px;
  padding-bottom: 180px;
  background-color: #353535;
}
@media (max-width: 767px) {
  .cid-uHKaKEUtI0 {
    padding-top: 75px;
    padding-bottom: 60px;
  }
}
.cid-uHKaKEUtI0 img {
  width: 100%;
  border-radius: 30px;
}
.cid-uHKaKEUtI0 .mbr-section-title {
  color: #ffffff;
}
.cid-uHKaKEUtI0 .mbr-section-subtitle {
  background-color: #ff6666;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-uHKaKEUtI0 .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-uHKaKEUtI0 .svg-1 path {
  fill: #ffffff;
}
.cid-uHKaKEUtI0 .container-fluid {
  max-width: 1200px;
}
.cid-uHKaKEUtI0 .mbr-arrow {
  z-index: 1;
}
.cid-uHKaKEUtI0 .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-uHKaKEUtI0 .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uHKaKEUtI0 .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uHKaKEUtI0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uHKaKEUtI0 .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-uHKaKEUtI0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKaKEUtI0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHKaKFaV74 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHKaKFaV74 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000000;
}
.cid-uHKaKFaV74 .mbr-text {
  color: #ffffff;
}
.cid-uHKaKFrWkC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8caff0;
  overflow: hidden;
}
.cid-uHKaKFrWkC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKaKFrWkC .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-uHKaKFrWkC .container {
    padding: 0 30px;
  }
}
.cid-uHKaKFrWkC .card {
  justify-content: center;
}
.cid-uHKaKFrWkC .content-wrapper {
  padding: 0 120px;
  display: flex;
}
@media (max-width: 1440px) {
  .cid-uHKaKFrWkC .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHKaKFrWkC .content-wrapper {
    padding: 0;
    display: block;
  }
}
.cid-uHKaKFrWkC .content-wrapper .tabs-wrapper {
  width: 30%;
  padding-right: 120px;
}
@media (max-width: 1440px) {
  .cid-uHKaKFrWkC .content-wrapper .tabs-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHKaKFrWkC .content-wrapper .tabs-wrapper {
    padding: 0;
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uHKaKFrWkC .content-wrapper .tabs-wrapper .tabs-wrap {
  border-left: 1px solid #000000;
  padding-left: 20px;
  height: fit-content;
}
.cid-uHKaKFrWkC .content-wrapper .tabs-wrapper .tabs-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uHKaKFrWkC .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-block;
}
.cid-uHKaKFrWkC .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-top: 20px;
  display: block;
}
.cid-uHKaKFrWkC .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uHKaKFrWkC .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  position: relative;
  padding: 0;
  margin-bottom: 0;
  border: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  opacity: .5;
}
.cid-uHKaKFrWkC .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uHKaKFrWkC .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 1;
  background-color: transparent;
}
.cid-uHKaKFrWkC .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active::before {
  width: 100%;
}
.cid-uHKaKFrWkC .content-wrapper .text-wrapper {
  width: 70%;
}
@media (max-width: 992px) {
  .cid-uHKaKFrWkC .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uHKaKFrWkC .content-wrapper .text-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uHKaKFrWkC .mbr-section-title {
  color: #254b45;
}
.cid-uHKaKFrWkC .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uHKaKFrWkC .mbr-section-title,
.cid-uHKaKFrWkC .tabs-wrap {
  color: #000000;
}
.cid-uHKaKFIdxx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uHKaKFIdxx .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uHKaKFIdxx .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uHKaKFIdxx .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uHKaKFIdxx .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHKaKFIdxx .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uHKaKFIdxx .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uHKaKFIdxx .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uHKaKFIdxx .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uHKaKFIdxx .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uHKaKFIdxx .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uHKaKFIdxx .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uHKaKFIdxx .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHKaKFIdxx .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uHKaKFIdxx .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uHKfL2Hbqq .navbar-dropdown {
  position: absolute !important;
}
.cid-uHKfL2Hbqq .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-uHKfL2Hbqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHKfL2Hbqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHKfL2Hbqq .dropdown-item:hover,
.cid-uHKfL2Hbqq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHKfL2Hbqq .dropdown-item:hover span {
  color: white;
}
.cid-uHKfL2Hbqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHKfL2Hbqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHKfL2Hbqq .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHKfL2Hbqq .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHKfL2Hbqq .nav-link {
  position: relative;
}
.cid-uHKfL2Hbqq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHKfL2Hbqq .container {
    flex-wrap: nowrap;
  }
}
.cid-uHKfL2Hbqq .dropdown-menu,
.cid-uHKfL2Hbqq .navbar.opened {
  background: #000000 !important;
}
.cid-uHKfL2Hbqq .nav-item:focus,
.cid-uHKfL2Hbqq .nav-link:focus {
  outline: none;
}
.cid-uHKfL2Hbqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHKfL2Hbqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHKfL2Hbqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHKfL2Hbqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHKfL2Hbqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHKfL2Hbqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHKfL2Hbqq .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 1.6666666667vw 0 !important;
  border: none !important;
}
.cid-uHKfL2Hbqq .navbar.opened {
  transition: all 0.3s;
}
.cid-uHKfL2Hbqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHKfL2Hbqq .navbar .navbar-logo img {
  width: auto;
}
.cid-uHKfL2Hbqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHKfL2Hbqq .navbar.collapsed {
  justify-content: center;
}
.cid-uHKfL2Hbqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHKfL2Hbqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHKfL2Hbqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.3rem);
  }
}
.cid-uHKfL2Hbqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHKfL2Hbqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHKfL2Hbqq .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-uHKfL2Hbqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHKfL2Hbqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHKfL2Hbqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHKfL2Hbqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHKfL2Hbqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHKfL2Hbqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHKfL2Hbqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHKfL2Hbqq .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-uHKfL2Hbqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHKfL2Hbqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHKfL2Hbqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHKfL2Hbqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHKfL2Hbqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHKfL2Hbqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHKfL2Hbqq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHKfL2Hbqq .navbar-brand {
  min-height: 70px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
  max-width: 25%;
  width: 100%;
}
.cid-uHKfL2Hbqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-uHKfL2Hbqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHKfL2Hbqq .dropdown-item.active,
.cid-uHKfL2Hbqq .dropdown-item:active {
  background-color: transparent;
}
.cid-uHKfL2Hbqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHKfL2Hbqq .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHKfL2Hbqq .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHKfL2Hbqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uHKfL2Hbqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHKfL2Hbqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHKfL2Hbqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHKfL2Hbqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHKfL2Hbqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHKfL2Hbqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ede7e2;
}
.cid-uHKfL2Hbqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHKfL2Hbqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHKfL2Hbqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHKfL2Hbqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHKfL2Hbqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHKfL2Hbqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHKfL2Hbqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHKfL2Hbqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHKfL2Hbqq .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHKfL2Hbqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHKfL2Hbqq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHKfL2Hbqq .navbar {
    height: 70px;
  }
  .cid-uHKfL2Hbqq .navbar.opened {
    height: auto;
  }
  .cid-uHKfL2Hbqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHKfL2Hbqq .navbar-collapse {
  max-width: 75%;
  width: 100%;
  margin-left: auto;
}
.cid-uHKfL2Hbqq .navbar-nav {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 70%;
  border-radius: 1.7vw;
  overflow: hidden;
  border: 1px solid #ede7e2;
  background: #000000;
}
.cid-uHKfL2Hbqq .navbar-nav .nav-item {
  display: flex;
  flex-wrap: wrap;
}
.cid-uHKfL2Hbqq .navbar-nav .nav-link {
  padding: 1.1vw 1.7vw !important;
  margin: 0 !important;
  border-radius: 1.7vw;
  transition: .2s all;
}
.cid-uHKfL2Hbqq .navbar-nav .nav-link:hover {
  background-color: #ede7e2;
  color: #000000 !important;
  box-shadow: 2px 0 0 #ede7e2, 0 1px 0 #ede7e2, -2px 0 0 #ede7e2, 0 -1px 0 #ede7e2;
}
@media (min-width: 992px) {
  .cid-uHKfL2Hbqq .mbr-section-btn {
    width: 33.33333333%;
    margin: -0.6rem;
    padding-left: 0.6rem;
  }
  .cid-uHKfL2Hbqq .mbr-section-btn .btn {
    padding: 1.18vw 2vw;
  }
}
@media (max-width: 991px) {
  .cid-uHKfL2Hbqq .mbr-section-btn .btn {
    padding: 3.2vw 3.3vw;
  }
}
.cid-uHKfL2Hbqq .mbr-section-btn.custom-section-btn .btn-primary:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKfL2Hbqq .mbr-section-btn.custom-section-btn .btn-black:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKfL2Hbqq .mbr-section-btn.custom-section-btn .btn-white:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKfL2Hbqq .btn-container {
  width: 33.33333333%;
  margin: -0.6rem;
  padding-left: 0.6rem;
}
@media (max-width: 991px) {
  .cid-uHKfL2Hbqq .navbar-brand {
    max-width: 60% !important;
    width: 100% !important;
    padding-right: 0 !important;
  }
  .cid-uHKfL2Hbqq .navbar-collapse {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding-top: 6vw;
  }
  .cid-uHKfL2Hbqq .navbar-nav {
    border: none;
    background: transparent;
    max-width: 100%;
  }
  .cid-uHKfL2Hbqq .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-uHKfL2Hbqq .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 0 2.1vw !important;
    border-radius: 0;
    font-size: 7.6vw;
    justify-content: flex-start;
  }
  .cid-uHKfL2Hbqq .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
    color: #ede7e2 !important;
    box-shadow: none;
  }
  .cid-uHKfL2Hbqq .mbr-section-btn {
    margin-top: 6.9vw;
    text-align: left;
  }
  .cid-uHKfL2Hbqq .btn-container {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-uHKfL2Hbqq .navbar-nav .nav-item .nav-link {
    margin: 0 0 3vw !important;
    font-size: 9.6vw;
    line-height: 1;
  }
  .cid-uHKfL2Hbqq .mbr-section-btn {
    margin-top: 7.5vw;
  }
}
@media (max-width: 575px) {
  .cid-uHKfL2Hbqq .navbar-nav .nav-item .nav-link {
    margin: 0 0 5vw !important;
    font-size: 11vw;
    line-height: 1;
  }
  .cid-uHKfL2Hbqq .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .cid-uHKfL2Hbqq .mbr-section-btn .btn {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uHKfL39pTc {
  padding-top: 210px;
  padding-bottom: 180px;
  background-color: #353535;
}
@media (max-width: 767px) {
  .cid-uHKfL39pTc {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
.cid-uHKfL39pTc img {
  width: 100%;
  border-radius: 30px;
}
.cid-uHKfL39pTc .mbr-section-title {
  color: #ffffff;
}
.cid-uHKfL39pTc .mbr-section-subtitle {
  background-color: #ff6666;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-uHKfL39pTc .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-uHKfL39pTc .svg-1 path {
  fill: #ffffff;
}
.cid-uHKfL39pTc .container-fluid {
  max-width: 1200px;
}
.cid-uHKfL39pTc .mbr-arrow {
  z-index: 1;
}
.cid-uHKfL39pTc .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-uHKfL39pTc .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uHKfL39pTc .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uHKfL39pTc .container-fluid {
    padding: 0 1rem;
  }
  .cid-uHKfL39pTc .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-uHKfL39pTc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKfL39pTc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHKfL3AebG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHKfL3AebG blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000000;
}
.cid-uHKfL3AebG .mbr-text {
  color: #ffffff;
}
.cid-uHKfL3RtUW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8caff0;
  overflow: hidden;
}
.cid-uHKfL3RtUW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKfL3RtUW .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-uHKfL3RtUW .container {
    padding: 0 30px;
  }
}
.cid-uHKfL3RtUW .card {
  justify-content: center;
}
.cid-uHKfL3RtUW .content-wrapper {
  padding: 0 120px;
  display: flex;
}
@media (max-width: 1440px) {
  .cid-uHKfL3RtUW .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHKfL3RtUW .content-wrapper {
    padding: 0;
    display: block;
  }
}
.cid-uHKfL3RtUW .content-wrapper .tabs-wrapper {
  width: 30%;
  padding-right: 120px;
}
@media (max-width: 1440px) {
  .cid-uHKfL3RtUW .content-wrapper .tabs-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHKfL3RtUW .content-wrapper .tabs-wrapper {
    padding: 0;
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uHKfL3RtUW .content-wrapper .tabs-wrapper .tabs-wrap {
  border-left: 1px solid #000000;
  padding-left: 20px;
  height: fit-content;
}
.cid-uHKfL3RtUW .content-wrapper .tabs-wrapper .tabs-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uHKfL3RtUW .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-block;
}
.cid-uHKfL3RtUW .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-top: 20px;
  display: block;
}
.cid-uHKfL3RtUW .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uHKfL3RtUW .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  position: relative;
  padding: 0;
  margin-bottom: 0;
  border: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  opacity: .5;
}
.cid-uHKfL3RtUW .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uHKfL3RtUW .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 1;
  background-color: transparent;
}
.cid-uHKfL3RtUW .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active::before {
  width: 100%;
}
.cid-uHKfL3RtUW .content-wrapper .text-wrapper {
  width: 70%;
}
@media (max-width: 992px) {
  .cid-uHKfL3RtUW .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uHKfL3RtUW .content-wrapper .text-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uHKfL3RtUW .mbr-section-title {
  color: #254b45;
}
.cid-uHKfL3RtUW .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uHKfL3RtUW .mbr-section-title,
.cid-uHKfL3RtUW .tabs-wrap {
  color: #000000;
}
.cid-uHKfL4b0s3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uHKfL4b0s3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uHKfL4b0s3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uHKfL4b0s3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uHKfL4b0s3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHKfL4b0s3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uHKfL4b0s3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uHKfL4b0s3 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uHKfL4b0s3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uHKfL4b0s3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uHKfL4b0s3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uHKfL4b0s3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uHKfL4b0s3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHKfL4b0s3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uHKfL4b0s3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uHKg9espcJ .navbar-dropdown {
  position: absolute !important;
}
.cid-uHKg9espcJ .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-uHKg9espcJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHKg9espcJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHKg9espcJ .dropdown-item:hover,
.cid-uHKg9espcJ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHKg9espcJ .dropdown-item:hover span {
  color: white;
}
.cid-uHKg9espcJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHKg9espcJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHKg9espcJ .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHKg9espcJ .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHKg9espcJ .nav-link {
  position: relative;
}
.cid-uHKg9espcJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHKg9espcJ .container {
    flex-wrap: nowrap;
  }
}
.cid-uHKg9espcJ .dropdown-menu,
.cid-uHKg9espcJ .navbar.opened {
  background: #000000 !important;
}
.cid-uHKg9espcJ .nav-item:focus,
.cid-uHKg9espcJ .nav-link:focus {
  outline: none;
}
.cid-uHKg9espcJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHKg9espcJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHKg9espcJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHKg9espcJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHKg9espcJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHKg9espcJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHKg9espcJ .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 1.6666666667vw 0 !important;
  border: none !important;
}
.cid-uHKg9espcJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uHKg9espcJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHKg9espcJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uHKg9espcJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHKg9espcJ .navbar.collapsed {
  justify-content: center;
}
.cid-uHKg9espcJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHKg9espcJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHKg9espcJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uHKg9espcJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHKg9espcJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHKg9espcJ .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-uHKg9espcJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHKg9espcJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHKg9espcJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHKg9espcJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHKg9espcJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHKg9espcJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHKg9espcJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHKg9espcJ .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-uHKg9espcJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHKg9espcJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHKg9espcJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHKg9espcJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHKg9espcJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHKg9espcJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHKg9espcJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHKg9espcJ .navbar-brand {
  min-height: 70px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
  max-width: 25%;
  width: 100%;
}
.cid-uHKg9espcJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-uHKg9espcJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHKg9espcJ .dropdown-item.active,
.cid-uHKg9espcJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uHKg9espcJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHKg9espcJ .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHKg9espcJ .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHKg9espcJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uHKg9espcJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHKg9espcJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHKg9espcJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHKg9espcJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHKg9espcJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHKg9espcJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ede7e2;
}
.cid-uHKg9espcJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHKg9espcJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHKg9espcJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHKg9espcJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHKg9espcJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHKg9espcJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHKg9espcJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHKg9espcJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHKg9espcJ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHKg9espcJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHKg9espcJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHKg9espcJ .navbar {
    height: 70px;
  }
  .cid-uHKg9espcJ .navbar.opened {
    height: auto;
  }
  .cid-uHKg9espcJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHKg9espcJ .navbar-collapse {
  max-width: 75%;
  width: 100%;
  margin-left: auto;
}
.cid-uHKg9espcJ .navbar-nav {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 70%;
  border-radius: 1.7vw;
  overflow: hidden;
  border: 1px solid #ede7e2;
  background: #000000;
}
.cid-uHKg9espcJ .navbar-nav .nav-item {
  display: flex;
  flex-wrap: wrap;
}
.cid-uHKg9espcJ .navbar-nav .nav-link {
  padding: 1.1vw 1.7vw !important;
  margin: 0 !important;
  border-radius: 1.7vw;
  transition: .2s all;
}
.cid-uHKg9espcJ .navbar-nav .nav-link:hover {
  background-color: #ede7e2;
  color: #000000 !important;
  box-shadow: 2px 0 0 #ede7e2, 0 1px 0 #ede7e2, -2px 0 0 #ede7e2, 0 -1px 0 #ede7e2;
}
@media (min-width: 992px) {
  .cid-uHKg9espcJ .mbr-section-btn {
    width: 33.33333333%;
    margin: -0.6rem;
    padding-left: 0.6rem;
  }
  .cid-uHKg9espcJ .mbr-section-btn .btn {
    padding: 1.18vw 2vw;
  }
}
@media (max-width: 991px) {
  .cid-uHKg9espcJ .mbr-section-btn .btn {
    padding: 3.2vw 3.3vw;
  }
}
.cid-uHKg9espcJ .mbr-section-btn.custom-section-btn .btn-primary:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKg9espcJ .mbr-section-btn.custom-section-btn .btn-black:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKg9espcJ .mbr-section-btn.custom-section-btn .btn-white:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-uHKg9espcJ .btn-container {
  width: 33.33333333%;
  margin: -0.6rem;
  padding-left: 0.6rem;
}
@media (max-width: 991px) {
  .cid-uHKg9espcJ .navbar-brand {
    max-width: 60% !important;
    width: 100% !important;
    padding-right: 0 !important;
  }
  .cid-uHKg9espcJ .navbar-collapse {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding-top: 6vw;
  }
  .cid-uHKg9espcJ .navbar-nav {
    border: none;
    background: transparent;
    max-width: 100%;
  }
  .cid-uHKg9espcJ .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-uHKg9espcJ .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 0 2.1vw !important;
    border-radius: 0;
    font-size: 7.6vw;
    justify-content: flex-start;
  }
  .cid-uHKg9espcJ .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
    color: #ede7e2 !important;
    box-shadow: none;
  }
  .cid-uHKg9espcJ .mbr-section-btn {
    margin-top: 6.9vw;
    text-align: left;
  }
  .cid-uHKg9espcJ .btn-container {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-uHKg9espcJ .navbar-nav .nav-item .nav-link {
    margin: 0 0 3vw !important;
    font-size: 9.6vw;
    line-height: 1;
  }
  .cid-uHKg9espcJ .mbr-section-btn {
    margin-top: 7.5vw;
  }
}
@media (max-width: 575px) {
  .cid-uHKg9espcJ .navbar-nav .nav-item .nav-link {
    margin: 0 0 5vw !important;
    font-size: 11vw;
    line-height: 1;
  }
  .cid-uHKg9espcJ .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .cid-uHKg9espcJ .mbr-section-btn .btn {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-uHKg9eNRQg {
  padding-top: 210px;
  padding-bottom: 180px;
  background-color: #353535;
}
@media (max-width: 767px) {
  .cid-uHKg9eNRQg {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
.cid-uHKg9eNRQg img {
  width: 100%;
  border-radius: 30px;
}
.cid-uHKg9eNRQg .mbr-section-title {
  color: #ffffff;
}
.cid-uHKg9eNRQg .mbr-section-subtitle {
  background-color: #ff6666;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-uHKg9eNRQg .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-uHKg9eNRQg .svg-1 path {
  fill: #ffffff;
}
.cid-uHKg9eNRQg .container-fluid {
  max-width: 1200px;
}
.cid-uHKg9eNRQg .mbr-arrow {
  z-index: 1;
}
.cid-uHKg9eNRQg .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-uHKg9eNRQg .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uHKg9eNRQg .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uHKg9eNRQg .container-fluid {
    padding: 0 1rem;
  }
  .cid-uHKg9eNRQg .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-uHKg9eNRQg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKg9eNRQg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHKg9f58K0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHKg9f58K0 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000000;
}
.cid-uHKg9f58K0 .mbr-text {
  color: #ffffff;
}
.cid-uHKg9fjIl8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8caff0;
  overflow: hidden;
}
.cid-uHKg9fjIl8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKg9fjIl8 .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-uHKg9fjIl8 .container {
    padding: 0 30px;
  }
}
.cid-uHKg9fjIl8 .card {
  justify-content: center;
}
.cid-uHKg9fjIl8 .content-wrapper {
  padding: 0 120px;
  display: flex;
}
@media (max-width: 1440px) {
  .cid-uHKg9fjIl8 .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHKg9fjIl8 .content-wrapper {
    padding: 0;
    display: block;
  }
}
.cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper {
  width: 30%;
  padding-right: 120px;
}
@media (max-width: 1440px) {
  .cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper {
    padding: 0;
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper .tabs-wrap {
  border-left: 1px solid #000000;
  padding-left: 20px;
  height: fit-content;
}
.cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper .tabs-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-block;
}
.cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-top: 20px;
  display: block;
}
.cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item:first-child {
  margin-top: 0;
}
.cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  position: relative;
  padding: 0;
  margin-bottom: 0;
  border: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  opacity: .5;
}
.cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 1;
  background-color: transparent;
}
.cid-uHKg9fjIl8 .content-wrapper .tabs-wrapper .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active::before {
  width: 100%;
}
.cid-uHKg9fjIl8 .content-wrapper .text-wrapper {
  width: 70%;
}
@media (max-width: 992px) {
  .cid-uHKg9fjIl8 .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uHKg9fjIl8 .content-wrapper .text-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uHKg9fjIl8 .mbr-section-title {
  color: #254b45;
}
.cid-uHKg9fjIl8 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uHKg9fjIl8 .mbr-section-title,
.cid-uHKg9fjIl8 .tabs-wrap {
  color: #000000;
}
.cid-uHKg9fEX4s {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uHKg9fEX4s .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uHKg9fEX4s .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uHKg9fEX4s .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uHKg9fEX4s .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uHKg9fEX4s .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uHKg9fEX4s .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uHKg9fEX4s .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uHKg9fEX4s .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uHKg9fEX4s .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uHKg9fEX4s .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uHKg9fEX4s .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uHKg9fEX4s .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHKg9fEX4s .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uHKg9fEX4s .media-container-row .row-copirayt p {
  width: 100%;
}
