body {
  font-family: 'Playfair Display', serif;
}
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.25rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Playfair Display', 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.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.975rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (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.5 * (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: #bc2424 !important;
}
.bg-success {
  background-color: #ffe161 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #9f6d2a !important;
}
.bg-danger {
  background-color: #73460b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bc2424 !important;
  border-color: #bc2424 !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: #731616 !important;
  border-color: #731616 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #731616 !important;
  border-color: #731616 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c69453 !important;
  border-color: #c69453 !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: #926830 !important;
  border-color: #926830 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #926830 !important;
  border-color: #926830 !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: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #9f6d2a !important;
  border-color: #9f6d2a !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #5a3e18 !important;
  border-color: #5a3e18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a3e18 !important;
  border-color: #5a3e18 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73460b !important;
  border-color: #73460b !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: #241603 !important;
  border-color: #241603 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #241603 !important;
  border-color: #241603 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
  color: #95785a !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: #5f4c39 !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #95785a !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !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: #bc2424;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #731616 !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: #bc2424 !important;
  border-color: #bc2424 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c69453;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #926830 !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: #c69453 !important;
  border-color: #c69453 !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: #ffe161;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9f6d2a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5a3e18 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #9f6d2a !important;
  border-color: #9f6d2a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #73460b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #241603 !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: #73460b !important;
  border-color: #73460b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #222222;
}
.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: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f9f7f5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d8ccbf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #95785a !important;
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
}
.text-primary {
  color: #bc2424 !important;
}
.text-secondary {
  color: #c69453 !important;
}
.text-success {
  color: #ffe161 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #9f6d2a !important;
}
.text-danger {
  color: #73460b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #661414 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #865f2d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #facb00 !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: #4e3615 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #160d02 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d3c4b5 !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: #bc2424;
}
.nav-tabs .nav-link:not(.active) {
  color: #222222;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #9f6d2a;
}
.alert-danger {
  background-color: #73460b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bc2424;
  border-color: #bc2424;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bc2424;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e67a7a;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d9ac6f;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e78d16;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #bc2424 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #bc2424;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bc2424;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bc2424;
}
.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: #bc2424;
  border-bottom-color: #bc2424;
}
.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: #bc2424 !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: #c69453 !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='%23bc2424' %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;
}
.container {
  max-width: 1302px;
}
.btn {
  padding: 12px 24px;
  border-radius: 0;
  letter-spacing: 3px;
}
.btn-big {
  padding: 20px 40px !important;
}
.btn-scale {
  transition: 0.3s all;
}
.btn-scale:hover {
  transform: scale(0.9);
}
.cid-uFpzkv0jfD .navbar-dropdown {
  position: relative !important;
}
.cid-uFpzkv0jfD .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uFpzkv0jfD .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uFpzkv0jfD .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-uFpzkv0jfD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFpzkv0jfD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFpzkv0jfD .dropdown-item:hover,
.cid-uFpzkv0jfD .dropdown-item:focus {
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFpzkv0jfD .dropdown-item:hover span {
  color: white;
}
.cid-uFpzkv0jfD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFpzkv0jfD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFpzkv0jfD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFpzkv0jfD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFpzkv0jfD .nav-link {
  position: relative;
}
.cid-uFpzkv0jfD .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uFpzkv0jfD .container {
    flex-wrap: nowrap;
  }
}
.cid-uFpzkv0jfD .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uFpzkv0jfD .iconfont-wrapper:hover {
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .dropdown-menu,
.cid-uFpzkv0jfD .navbar.opened {
  background: #9fdbf8 !important;
}
.cid-uFpzkv0jfD .nav-item:focus,
.cid-uFpzkv0jfD .nav-link:focus {
  outline: none;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFpzkv0jfD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFpzkv0jfD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFpzkv0jfD .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #9fdbf8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFpzkv0jfD .navbar.opened {
  transition: all 0.3s;
}
.cid-uFpzkv0jfD .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-uFpzkv0jfD .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uFpzkv0jfD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFpzkv0jfD .navbar.collapsed {
  justify-content: center;
}
.cid-uFpzkv0jfD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFpzkv0jfD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFpzkv0jfD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uFpzkv0jfD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFpzkv0jfD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFpzkv0jfD .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-uFpzkv0jfD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFpzkv0jfD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFpzkv0jfD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFpzkv0jfD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFpzkv0jfD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFpzkv0jfD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFpzkv0jfD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFpzkv0jfD .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-uFpzkv0jfD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFpzkv0jfD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFpzkv0jfD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFpzkv0jfD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uFpzkv0jfD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFpzkv0jfD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFpzkv0jfD .navbar.navbar-short {
  min-height: 96px;
}
.cid-uFpzkv0jfD .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uFpzkv0jfD .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uFpzkv0jfD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFpzkv0jfD .navbar-brand .navbar-caption:hover,
.cid-uFpzkv0jfD .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFpzkv0jfD .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uFpzkv0jfD .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .dropdown-item.active,
.cid-uFpzkv0jfD .dropdown-item:active {
  background-color: transparent;
}
.cid-uFpzkv0jfD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFpzkv0jfD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFpzkv0jfD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFpzkv0jfD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9fdbf8;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-uFpzkv0jfD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uFpzkv0jfD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uFpzkv0jfD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFpzkv0jfD ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uFpzkv0jfD ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uFpzkv0jfD .navbar-buttons {
  text-align: center;
}
.cid-uFpzkv0jfD .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-uFpzkv0jfD .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uFpzkv0jfD .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uFpzkv0jfD button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #9fdbf8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uFpzkv0jfD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFpzkv0jfD .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-uFpzkv0jfD .navbar {
    height: 70px;
  }
  .cid-uFpzkv0jfD .navbar.opened {
    height: auto;
  }
  .cid-uFpzkv0jfD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFpzkv0jfD .navbar-nav {
  margin: 0 auto;
}
.cid-uFpzkv0jfD .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uFpzkv0jfD .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-uFpzkv0jfD .nav-item .nav-link::after {
  color: #cbff5b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uFpzkv0jfD .nav-item .nav-link:hover {
  background-color: transparent;
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu .dropdown-item {
  color: #bc2424 !important;
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu .dropdown-item:hover {
  color: #cbff5b !important;
}
@media (max-width: 991px) {
  .cid-uFpzkv0jfD .navbar {
    justify-content: flex-start !important;
  }
  .cid-uFpzkv0jfD .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uFpzkv0jfD .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uFpzkv0jfD .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uFpzkv0jfD .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uFpzkv0jfD .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uFpzkv0jfD .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uFpzkv0jfD .content-wrap {
  min-height: 110px;
}
.cid-uFpMmCGdcs {
  padding-top: 12rem;
  padding-bottom: 0rem;
  position: relative;
  align-items: center;
  background-color: #151e11;
}
.cid-uFpMmCGdcs .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
@media (max-width: 1440px) {
  .cid-uFpMmCGdcs .image-wrap {
    padding: 16px;
  }
}
.cid-uFpMmCGdcs .image-wrap img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}
.cid-uFpMmCGdcs .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .cid-uFpMmCGdcs .image-overlay {
    padding: 16px;
  }
}
.cid-uFpMmCGdcs .image-overlay .image-over {
  background-color: #151e11;
  z-index: 2;
  opacity: 0.5;
  width: 100%;
  height: 70%;
}
.cid-uFpMmCGdcs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpMmCGdcs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpMmCGdcs .row {
  justify-content: center;
}
.cid-uFpMmCGdcs .mbr-section-title {
  position: relative;
  z-index: 2;
  margin: 160px 20px;
  color: #fff7ee;
  text-align: center;
}
@media (max-width: 1440px) {
  .cid-uFpMmCGdcs .mbr-section-title {
    margin: 60px 16px;
  }
}
@media (max-width: 992px) {
  .cid-uFpMmCGdcs .mbr-section-title {
    margin: 30px 16px;
  }
}
.cid-uFpMmCGdcs .card-wrapper {
  padding: 90px;
  position: relative;
  z-index: 2;
  background-color: #151e11;
}
@media (max-width: 992px) {
  .cid-uFpMmCGdcs .card-wrapper {
    padding: 30px 16px;
  }
}
.cid-uFpMmCGdcs .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFpMmCGdcs .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFpMmCGdcs .mbr-text,
.cid-uFpMmCGdcs .text-wrapper {
  color: #fff7ee;
  text-align: center;
}
.cid-uFpMmCGdcs .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uFpMmCGdcs .mbr-text,
.cid-uFpMmCGdcs .mbr-section-btn {
  text-align: center;
}
.cid-uFpWGUtk04 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-uFpWGUtk04 .container {
    max-width: 1162px;
  }
}
@media (max-width: 768px) {
  .cid-uFpWGUtk04 .top {
    margin-top: 10rem;
  }
}
.cid-uFpWGUtk04 .mbr-section-title {
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
.cid-uFpWGUtk04 .mbr-text {
  font-size: 24px;
  line-height: 1.3;
  color: #000000;
}
.cid-uFpWGUtk04 .index {
  z-index: 3;
}
.cid-uFpWGUtk04 ul {
  list-style: none;
  margin: 0;
  padding-left: 40px;
}
.cid-uFpWGUtk04 li {
  margin-bottom: 47px;
  position: relative;
}
.cid-uFpWGUtk04 ul li::before {
  position: relative;
  content: "\2713";
  left: -40px;
  top: -5%;
  color: #000000;
  border: 2px solid #000000;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 .5rem;
}
.cid-uFpWGUtk04 .wrap {
  right: 80%;
  top: 0;
  width: 400px;
  height: 200px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-uFpWGUtk04 .wrap {
    top: -10%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .cid-uFpWGUtk04 .wrap {
    top: 10%;
  }
}
.cid-uFpWGUtk04 .wrap .anim {
  width: 195px;
  height: 195px;
  position: relative;
  object-fit: cover;
  border-radius: 100%;
  animation: 15s linear 0s normal none infinite running rot1;
  -webkit-animation: 15s linear 0s normal none infinite running rot1;
}
@media (min-width: 992px) {
  .cid-uFpWGUtk04 .wrap {
    right: 5%;
    top: -10%;
  }
}
@media (min-width: 1400px) {
  .cid-uFpWGUtk04 .wrap {
    right: -5%;
    top: -5%;
  }
}
@keyframes rot1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.cid-uFpWGUtk04 .mbr-section-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: #000000;
  font-size: 25px;
}
.cid-uFpWGUtk04 .text {
  font-size: 30px;
  color: #cbc0ff;
  font-weight: 600;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  text-align: end;
}
.cid-uFpWGUtk04 .text1 {
  bottom: -75%;
  right: 10%;
  position: absolute;
  font-size: 140px;
  color: #f4d7d7;
  font-weight: 700;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
}
.cid-uFpWGUtk04 .mbr-text UL {
  text-align: left;
}
.cid-sSw5LIPlNd {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #9fdbf8;
}
.cid-sSw5LIPlNd .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sSw5LIPlNd .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-sSw5LIPlNd .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sSw5LIPlNd .label-text {
    text-align: center !important;
  }
}
.cid-sSw5LIPlNd .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSw5LIPlNd .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sSw5LIPlNd .mbr-section-title,
.cid-sSw5LIPlNd .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uFpYH2n9Sx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  background-image: linear-gradient(#000000 70%, #6ec7f2 110%);
}
.cid-uFpYH2n9Sx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpYH2n9Sx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpYH2n9Sx .row {
  justify-content: center;
}
.cid-uFpYH2n9Sx .card-wrapper {
  display: flex;
  background-color: #1f2329;
  justify-content: space-between;
  align-items: center;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uFpYH2n9Sx .card-wrapper {
    display: block;
    padding: 16px;
  }
}
.cid-uFpYH2n9Sx .card-wrapper .content-wrapper {
  width: 42%;
}
@media (max-width: 992px) {
  .cid-uFpYH2n9Sx .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uFpYH2n9Sx .card-wrapper .content-wrapper .tag-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFpYH2n9Sx .card-wrapper .content-wrapper .tag-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uFpYH2n9Sx .card-wrapper .content-wrapper .tag-wrapper .item-wrap {
  display: inline-flex;
  background-color: #222222;
  padding: 6px 10px;
}
.cid-uFpYH2n9Sx .card-wrapper .content-wrapper .mbr-date {
  margin-bottom: 22px;
}
.cid-uFpYH2n9Sx .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uFpYH2n9Sx .card-wrapper .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFpYH2n9Sx .card-wrapper .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 12px;
}
.cid-uFpYH2n9Sx .card-wrapper .content-wrapper .logo-wrapper .logo-wrap .mbr-name {
  margin-bottom: 0;
}
.cid-uFpYH2n9Sx .card-wrapper .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uFpYH2n9Sx .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uFpYH2n9Sx .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uFpYH2n9Sx .card-wrapper .image-wrapper img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFpYH2n9Sx .card-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uFpYH2n9Sx .item-wrap {
  color: #ffffff;
}
.cid-uFpYH2n9Sx .mbr-date {
  color: #ffffff;
}
.cid-uFpYH2n9Sx .mbr-section-title {
  color: #ffffff;
}
.cid-uFpYH2n9Sx .mbr-name {
  color: #ffffff;
}
.cid-uFuGSUsPsf {
  background-color: #000000;
  padding-top: 7rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-uFuGSUsPsf .row {
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (min-width: 992px) {
  .cid-uFuGSUsPsf .content-wrapper {
    max-width: 600px;
    height: 560px;
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uFuGSUsPsf .wrapper {
    padding-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .cid-uFuGSUsPsf .wrapper {
    padding: 0 28px;
  }
}
.cid-uFuGSUsPsf .text {
  position: relative;
}
.cid-uFuGSUsPsf .card-header {
  padding: 15px 0 !important;
  border-bottom: none;
  margin-bottom: 0px !important;
  background-color: transparent;
  border-top: 1px solid rgba(61, 61, 61, 0.3);
}
@media (min-width: 768px) {
  .cid-uFuGSUsPsf .card-header {
    padding: 15px 0 15px 0 !important;
  }
}
.cid-uFuGSUsPsf .panel-body {
  padding-bottom: 60px;
  display: flex;
  align-items: flex-end;
}
.cid-uFuGSUsPsf span {
  transform: rotate(45deg);
  transition: all 0.5s;
  font-size: 20px;
}
.cid-uFuGSUsPsf .collapsed span {
  transform: rotate(0deg);
}
@media (min-width: 992px) {
  .cid-uFuGSUsPsf .content-block {
    padding-left: 60px;
  }
}
.cid-uFuGSUsPsf .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uFuGSUsPsf .panel-group {
  width: 100%;
}
.cid-uFuGSUsPsf .sign {
  font-family: 'Moririse2' !important;
}
.cid-uFuGSUsPsf .card {
  border-radius: 0px;
}
.cid-uFuGSUsPsf .card .card-header {
  border-radius: 0px;
  padding: 0;
}
.cid-uFuGSUsPsf .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uFuGSUsPsf .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uFuGSUsPsf .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uFuGSUsPsf .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.cid-uFuGSUsPsf .link-title {
  border-bottom: 1px solid rgba(61, 61, 61, 0.3);
  padding-bottom: 33px;
}
.cid-uFuGSUsPsf .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uFuGSUsPsf .mbr-text {
  margin-bottom: 84px;
}
.cid-uFuGSUsPsf .header-text,
.cid-uFuGSUsPsf .sign {
  color: #47b5ed;
}
.cid-uFuGSUsPsf .panel-text {
  color: #fcc015;
  text-align: left;
}
.cid-uFuGSUsPsf .title {
  color: #ffffff;
}
.cid-uFpWDeIDDW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-uFpWDeIDDW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpWDeIDDW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpWDeIDDW b,
.cid-uFpWDeIDDW strong {
  font-weight: 900;
}
.cid-uFpWDeIDDW .mbr-section-title {
  color: #17003b;
}
.cid-uFpWDeIDDW .mbr-section-subtitle {
  color: #17003b;
}
.cid-uFnHivHs7m {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #1b1818;
}
.cid-uFnHivHs7m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFnHivHs7m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1400px) {
  .cid-uFnHivHs7m .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-uFnHivHs7m P {
  max-width: 1200px;
}
.cid-uFnHivHs7m .mbr-section-btn,
.cid-uFnHivHs7m .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uFnHivHs7m .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFnHivHs7m .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uFnHivHs7m .image-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uFnHivHs7m .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uFnHivHs7m .mbr-section-title {
  color: #ffffff;
}
.cid-uFnHivHs7m .mbr-text,
.cid-uFnHivHs7m .mbr-section-btn {
  color: #ffffff;
}
.cid-uFnHivHs7m .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sSw6XGqytG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-sSw6XGqytG .row {
  justify-content: center;
}
.cid-sSw6XGqytG img,
.cid-sSw6XGqytG .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sSw6XGqytG .item:focus,
.cid-sSw6XGqytG span:focus {
  outline: none;
}
.cid-sSw6XGqytG .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .col-items {
    flex-wrap: wrap;
  }
}
.cid-sSw6XGqytG .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-sSw6XGqytG .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-sSw6XGqytG .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  overflow: hidden;
  transition: 1s all;
  min-height: 463px;
}
.cid-sSw6XGqytG .item-wrapper .btn {
  padding: 10px 12px;
  min-width: 62px;
}
.cid-sSw6XGqytG .item-wrapper .btn span {
  color: #ffffff;
  margin-right: 8px;
}
.cid-sSw6XGqytG .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-sSw6XGqytG .item-wrapper .btn-primary:hover span {
  color: #bc2424 !important;
}
.cid-sSw6XGqytG .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
@media (min-width: 768px) {
  .cid-sSw6XGqytG .item-wrapper:hover .item-content {
    bottom: 0;
  }
  .cid-sSw6XGqytG .item-wrapper:hover .item-img img {
    transform: scale(1.2) translateY(-8%);
  }
}
.cid-sSw6XGqytG .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-sSw6XGqytG .item-img img {
  width: 100%;
  transform-style: preserve-3d;
  transition: 1.5s;
}
@media (min-width: 768px) {
  .cid-sSw6XGqytG .item-img img {
    transform: scale(1.2) translateY(8%);
  }
}
.cid-sSw6XGqytG .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  pointer-events: none;
}
.cid-sSw6XGqytG .item-content {
  position: relative;
  bottom: -100%;
  z-index: 3;
  width: 100%;
  padding: 35px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .item-content {
    bottom: 0;
    text-align: center;
  }
}
.cid-sSw6XGqytG .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .label-text {
    text-align: center !important;
  }
}
.cid-sSw6XGqytG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sSw6XGqytG .mbr-text {
  color: #ffffff;
}
.cid-sSw6XGqytG .item-title {
  color: #ffffff;
}
.cid-sSw6XGqytG .item-subtitle {
  color: #ffffff;
}
.cid-sSw6XGqytG .icon-wrapper {
  margin-bottom: 1rem;
}
.cid-sSw6XGqytG .icon-wrapper .mbr-iconfont {
  font-size: 33px;
  color: #ffffff;
}
.cid-sSw6XGqytG .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-sSw6XGqytG .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .mbr-section-head {
    text-align: center !important;
  }
}
.cid-sSw6XGqytG .mbr-section-subtitle {
  text-align: center;
}
.cid-uFqGkoqMLT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #2c2625;
}
.cid-uFqGkoqMLT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqGkoqMLT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqGkoqMLT .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFqGkoqMLT .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFqGkoqMLT .content-wrapper {
    padding: 0;
  }
}
.cid-uFqGkoqMLT .content-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #9fdbf8;
  padding: 108px;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 0 #ffffff;
}
@media (max-width: 1440px) {
  .cid-uFqGkoqMLT .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFqGkoqMLT .content-wrapper .card-wrapper {
    padding: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uFqGkoqMLT .content-wrapper .card-wrapper {
    box-shadow: -5px 5px 0 0 #ffffff;
  }
}
.cid-uFqGkoqMLT .content-wrapper .card-wrapper .card-wrap {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uFqGkoqMLT .content-wrapper .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uFqGkoqMLT .content-wrapper .card-wrapper .card-wrap .tag-wrapper {
  margin-bottom: 20px;
}
.cid-uFqGkoqMLT .content-wrapper .card-wrapper .card-wrap .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #2c2625;
}
.cid-uFqGkoqMLT .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uFqGkoqMLT .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFqGkoqMLT .content-wrapper .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 32px;
}
.cid-uFqGkoqMLT .content-wrapper .card-wrapper .image-wrapper {
  position: relative;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uFqGkoqMLT .content-wrapper .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uFqGkoqMLT .content-wrapper .card-wrapper .image-wrapper .image-wrap-main img {
  object-fit: cover;
  height: 570px;
  border: 2px solid #2c2625;
  box-shadow: -10px 10px 0 0 #2c2625;
}
@media (max-width: 992px) {
  .cid-uFqGkoqMLT .content-wrapper .card-wrapper .image-wrapper .image-wrap-main img {
    box-shadow: -5px 5px 0 0 #2c2625;
    height: 350px;
  }
}
.cid-uFqGkoqMLT .content-wrapper .card-wrapper .image-wrapper .image-wrap {
  position: absolute;
  top: 30%;
  left: -10%;
}
.cid-uFqGkoqMLT .content-wrapper .card-wrapper .image-wrapper .image-wrap img {
  height: 220px;
  width: 220px;
  display: inline-block;
  border-radius: 100% !important;
  object-fit: cover;
  border: 16px solid #9fdbf8;
  box-shadow: -16px 16px 0 #2c2625;
}
.cid-uFqGkoqMLT .mbr-tag {
  color: #2C2625;
}
.cid-uFqGkoqMLT .mbr-section-title {
  color: #2C2625;
}
.cid-uFqGkoqMLT .mbr-text {
  color: #2C2625;
}
.cid-uFq13RithL {
  padding-top: 6rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #ebd00c;
}
.cid-uFq13RithL .container-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  background-color: #000000;
  pointer-events: none;
}
.cid-uFq13RithL .container-bg .shadow-wrap {
  background-image: linear-gradient(#22a5e5 0, transparent 100%);
  height: 40px;
  width: 100%;
  pointer-events: none;
}
.cid-uFq13RithL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFq13RithL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFq13RithL .row {
  justify-content: center;
}
.cid-uFq13RithL .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uFq13RithL .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uFq13RithL .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uFq13RithL .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uFq13RithL .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uFq13RithL .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uFq13RithL .mbr-section-title {
  color: #000000;
}
.cid-uFq13RithL .mbr-text,
.cid-uFq13RithL .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uFq13RithL .mbr-section-title,
.cid-uFq13RithL .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uFq2mbssT8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFq2mbssT8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFq2mbssT8 .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-uFq2mbssT8 .container {
    padding: 0 16px;
  }
}
.cid-uFq2mbssT8 .card {
  justify-content: center;
}
.cid-uFq2mbssT8 .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #9fdbf8;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uFq2mbssT8 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFq2mbssT8 .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uFq2mbssT8 .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uFq2mbssT8 .mbr-section-title {
  color: #000000;
}
.cid-uFq2mbssT8 .mbr-text {
  color: #000000;
}
.cid-uFq2mbssT8 .mbr-desc {
  color: #000000;
}
.cid-uFnll2mUBi {
  background-color: #9fdbf8;
}
.cid-uFnll2mUBi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFnll2mUBi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFnll2mUBi .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .container {
    padding: 0 16px;
  }
}
.cid-uFnll2mUBi .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .row {
    margin: 0 10px;
  }
}
.cid-uFnll2mUBi .row .item {
  padding: 0;
}
.cid-uFnll2mUBi .row .item:first-child {
  padding-right: 10px;
  padding-right: 0;
  padding-left: 10px;
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .row .item:first-child {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .row .item:first-child {
    padding: 0;
  }
}
.cid-uFnll2mUBi .content-wrapper {
  height: 100%;
  border-radius: 20px;
  background-color: #9fdbf8;
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .content-wrapper {
    margin-bottom: 20px;
    height: auto;
  }
}
.cid-uFnll2mUBi .content-wrapper .title-wrapper {
  padding: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .content-wrapper .title-wrapper {
    padding: 20px 10px;
    margin-bottom: 20px;
  }
}
.cid-uFnll2mUBi .content-wrapper .title-wrapper .icon-wrapper {
  margin-bottom: 25px;
}
.cid-uFnll2mUBi .content-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 30px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #192227;
  background-color: #f9a600;
  border-radius: 50%;
}
.cid-uFnll2mUBi .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFnll2mUBi .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card {
  border-top: 1px solid #9fdbf8;
  border-radius: 0 !important;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card:nth-child(2) .panel-collapse .panel-body .panel-title span {
  color: #ade988;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card:nth-child(2) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #ade988;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card:nth-child(3) .panel-collapse .panel-body .panel-title span {
  color: #2c8ac0;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card:nth-child(3) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #2c8ac0;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card:nth-child(4) .panel-collapse .panel-body .panel-title span {
  color: #f06246;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card:nth-child(4) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #f06246;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card:nth-child(5) .panel-collapse .panel-body .panel-title span {
  color: #b08ce1;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card:nth-child(5) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #b08ce1;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .card-header {
  padding: 10px 30px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .content-wrapper .panel-group .card .card-header {
    padding: 10px;
  }
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  opacity: 1;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .card-header .panel-title.collapsed .mbr-panel-title {
  color: #9fdbf8;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: block;
  font-size: 30px;
  color: #9fdbf8;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title {
    margin-top: 20px;
  }
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title span {
  color: #f9a600;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper {
    margin-top: 20px;
  }
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap {
  display: inline-flex;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap .panel-desc {
  margin-bottom: 0;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  font-size: 24px;
  color: #f9a600;
  margin-left: 12px;
}
.cid-uFnll2mUBi .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uFnll2mUBi .image-wrapper {
  height: 100%;
}
.cid-uFnll2mUBi .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFnll2mUBi .image-wrapper img {
    height: 350px;
  }
}
.cid-uFnll2mUBi .mbr-section-title {
  color: #fdfcfc;
}
.cid-uFnll2mUBi .mbr-text {
  color: #F9A600;
}
.cid-uFnll2mUBi .panel-title-edit {
  color: #000000;
}
.cid-uFnll2mUBi .panel-title {
  color: #fdfcfc;
}
.cid-uFnll2mUBi .panel-desc {
  color: #4a5357;
}
.cid-uFnll2mUBi .panel-text {
  color: #fdfcfc;
}
.cid-uFnll2mUBi .mbr-section-title,
.cid-uFnll2mUBi .icon-wrapper {
  color: #000000;
}
.cid-uFq26kv1sh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uFq26kv1sh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFq26kv1sh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFq26kv1sh .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uFq26kv1sh .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uFq26kv1sh .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uFq26kv1sh .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uFq26kv1sh .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uFq26kv1sh .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uFq26kv1sh .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFq26kv1sh .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFq26kv1sh .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFq26kv1sh .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uFq26kv1sh .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uFq26kv1sh .mbr-section-title,
.cid-uFq26kv1sh .mbr-section-btn {
  color: #000000;
}
.cid-uFq2xjx82U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #9fdbf8;
}
.cid-uFq2xjx82U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFq2xjx82U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFq2xjx82U .content-wrapper {
  position: relative;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFq2xjx82U .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFq2xjx82U .content-wrapper {
    padding: 0;
  }
}
.cid-uFq2xjx82U .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFq2xjx82U .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFq2xjx82U .content-wrapper .google-map iframe {
  height: 700px;
  border: 2px solid #ffffff !important;
  box-shadow: -10px 10px 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uFq2xjx82U .content-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uFq2xjx82U .content-wrapper .google-map iframe {
    box-shadow: -5px 5px 0 #ffffff;
  }
}
.cid-uFq2xjx82U .mbr-section-title {
  color: #ffffff;
}
.cid-uFq2xjx82U .mbr-section-title,
.cid-uFq2xjx82U .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uFnx5llAET {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uFnx5llAET .footer-item {
  padding: 30px;
}
.cid-uFnx5llAET .mbr-section-subtitle,
.cid-uFnx5llAET .address-text {
  margin-bottom: 1.5rem;
}
.cid-uFnx5llAET .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uFnx5llAET .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uFnx5llAET .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFnx5llAET .row {
    text-align: center;
  }
  .cid-uFnx5llAET .social-row {
    justify-content: center;
  }
}
.cid-uFnx5llAET .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uFnx5llAET .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uFnx5llAET .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uFnx5llAET .mbr-text {
  color: #ffffff;
}
.cid-uFnx5llAET .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #222222;
}
.cid-uFnx5llAET .list a {
  color: #ffffff;
}
.cid-uFnx5llAET .list a:hover {
  background-image: none !important;
  color: #bc2424 !important;
}
.cid-uFnx5llAET .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uFnx5llAET .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uFnx5llAET .mbr-iconfont {
  color: #ffffff;
}
.cid-uFnx5llAET .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFnx5llAET .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpVf5Y0Pt {
  padding-top: 12rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-uFpVf5Y0Pt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpVf5Y0Pt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpVf5Y0Pt .image-wrapper img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
.cid-uFpVf5Y0Pt .row {
  flex-direction: row-reverse;
}
.cid-uFpVf5Y0Pt .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uFpVf5Y0Pt .row {
    flex-direction: column-reverse;
    gap: 90px;
  }
}
.cid-uFpVf5Y0Pt .mbr-section-title {
  color: #fdfde1;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uFpVf5Y0Pt .text-wrapper {
    text-align: center;
  }
}
.cid-uFpVf5Y0Pt .mbr-text,
.cid-uFpVf5Y0Pt .mbr-section-btn {
  color: #fdfde1;
}
.cid-uFpVf5Y0Pt .mbr-menu,
.cid-uFpVf5Y0Pt .mbr-section-btn {
  color: #fdfde1;
}
.cid-uFpVf5Y0Pt .mbr-desc,
.cid-uFpVf5Y0Pt .mbr-section-btn {
  color: #fdfde1;
}
.cid-uFp8KV3AMd {
  padding-top: 5rem;
  padding-bottom: 0rem;
  border-bottom: 2px solid #ffffff;
  background-color: #ffffff;
}
.cid-uFp8KV3AMd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFp8KV3AMd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFp8KV3AMd .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFp8KV3AMd .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFp8KV3AMd .content-wrapper {
    padding: 0;
  }
}
.cid-uFp8KV3AMd .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uFp8KV3AMd .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uFp8KV3AMd .mbr-section-title,
.cid-uFp8KV3AMd .title-wrapper {
  color: #ffffff;
}
.cid-uFp8KV3AMd .mbr-section-title,
.cid-uFp8KV3AMd .mbr-section-btn,
.cid-uFp8KV3AMd .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uFp8WXf95G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uFp8WXf95G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFp8WXf95G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFp8WXf95G .row {
  justify-content: center;
}
.cid-uFp8WXf95G .map-wrapper {
  position: relative;
}
.cid-uFp8WXf95G .map-wrapper::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 110%;
  height: 95%;
  border-radius: 100%;
  background-image: radial-gradient(#ebd00c, transparent);
  filter: blur(100px);
}
.cid-uFp8WXf95G .map-wrapper .google-map {
  position: relative;
  z-index: 1;
  border: 3px solid #ffe161;
  background-color: #ffe161;
}
.cid-uFp8WXf95G .map-wrapper .google-map iframe {
  height: 750px;
  filter: invert(1);
}
@media (max-width: 1200px) {
  .cid-uFp8WXf95G .map-wrapper .google-map iframe {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .cid-uFp8WXf95G .map-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uFosl6On30 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uFosl6On30 .footer-item {
  padding: 30px;
}
.cid-uFosl6On30 .mbr-section-subtitle,
.cid-uFosl6On30 .address-text {
  margin-bottom: 1.5rem;
}
.cid-uFosl6On30 .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uFosl6On30 .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uFosl6On30 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFosl6On30 .row {
    text-align: center;
  }
  .cid-uFosl6On30 .social-row {
    justify-content: center;
  }
}
.cid-uFosl6On30 .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uFosl6On30 .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uFosl6On30 .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uFosl6On30 .mbr-text {
  color: #ffffff;
}
.cid-uFosl6On30 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #222222;
}
.cid-uFosl6On30 .list a {
  color: #ffffff;
}
.cid-uFosl6On30 .list a:hover {
  background-image: none !important;
  color: #bc2424 !important;
}
.cid-uFosl6On30 .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uFosl6On30 .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uFosl6On30 .mbr-iconfont {
  color: #ffffff;
}
.cid-uFosl6On30 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFosl6On30 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpzkv0jfD .navbar-dropdown {
  position: relative !important;
}
.cid-uFpzkv0jfD .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uFpzkv0jfD .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uFpzkv0jfD .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-uFpzkv0jfD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFpzkv0jfD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFpzkv0jfD .dropdown-item:hover,
.cid-uFpzkv0jfD .dropdown-item:focus {
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFpzkv0jfD .dropdown-item:hover span {
  color: white;
}
.cid-uFpzkv0jfD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFpzkv0jfD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFpzkv0jfD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFpzkv0jfD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFpzkv0jfD .nav-link {
  position: relative;
}
.cid-uFpzkv0jfD .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uFpzkv0jfD .container {
    flex-wrap: nowrap;
  }
}
.cid-uFpzkv0jfD .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uFpzkv0jfD .iconfont-wrapper:hover {
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .dropdown-menu,
.cid-uFpzkv0jfD .navbar.opened {
  background: #9fdbf8 !important;
}
.cid-uFpzkv0jfD .nav-item:focus,
.cid-uFpzkv0jfD .nav-link:focus {
  outline: none;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFpzkv0jfD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFpzkv0jfD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFpzkv0jfD .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #9fdbf8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFpzkv0jfD .navbar.opened {
  transition: all 0.3s;
}
.cid-uFpzkv0jfD .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-uFpzkv0jfD .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uFpzkv0jfD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFpzkv0jfD .navbar.collapsed {
  justify-content: center;
}
.cid-uFpzkv0jfD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFpzkv0jfD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFpzkv0jfD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uFpzkv0jfD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFpzkv0jfD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFpzkv0jfD .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-uFpzkv0jfD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFpzkv0jfD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFpzkv0jfD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFpzkv0jfD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFpzkv0jfD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFpzkv0jfD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFpzkv0jfD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFpzkv0jfD .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-uFpzkv0jfD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFpzkv0jfD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFpzkv0jfD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFpzkv0jfD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uFpzkv0jfD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFpzkv0jfD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFpzkv0jfD .navbar.navbar-short {
  min-height: 96px;
}
.cid-uFpzkv0jfD .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uFpzkv0jfD .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uFpzkv0jfD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFpzkv0jfD .navbar-brand .navbar-caption:hover,
.cid-uFpzkv0jfD .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFpzkv0jfD .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uFpzkv0jfD .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .dropdown-item.active,
.cid-uFpzkv0jfD .dropdown-item:active {
  background-color: transparent;
}
.cid-uFpzkv0jfD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFpzkv0jfD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFpzkv0jfD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFpzkv0jfD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9fdbf8;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-uFpzkv0jfD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uFpzkv0jfD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uFpzkv0jfD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFpzkv0jfD ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uFpzkv0jfD ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uFpzkv0jfD .navbar-buttons {
  text-align: center;
}
.cid-uFpzkv0jfD .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-uFpzkv0jfD .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uFpzkv0jfD .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uFpzkv0jfD button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #9fdbf8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uFpzkv0jfD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFpzkv0jfD .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-uFpzkv0jfD .navbar {
    height: 70px;
  }
  .cid-uFpzkv0jfD .navbar.opened {
    height: auto;
  }
  .cid-uFpzkv0jfD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFpzkv0jfD .navbar-nav {
  margin: 0 auto;
}
.cid-uFpzkv0jfD .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uFpzkv0jfD .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-uFpzkv0jfD .nav-item .nav-link::after {
  color: #cbff5b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uFpzkv0jfD .nav-item .nav-link:hover {
  background-color: transparent;
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu .dropdown-item {
  color: #bc2424 !important;
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu .dropdown-item:hover {
  color: #cbff5b !important;
}
@media (max-width: 991px) {
  .cid-uFpzkv0jfD .navbar {
    justify-content: flex-start !important;
  }
  .cid-uFpzkv0jfD .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uFpzkv0jfD .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uFpzkv0jfD .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uFpzkv0jfD .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uFpzkv0jfD .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uFpzkv0jfD .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uFpzkv0jfD .content-wrap {
  min-height: 110px;
}
.cid-uFpVvPlwNh {
  padding-top: 12rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-uFpVvPlwNh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFpVvPlwNh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpVvPlwNh .image-wrapper img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
.cid-uFpVvPlwNh .row {
  flex-direction: row-reverse;
}
.cid-uFpVvPlwNh .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uFpVvPlwNh .row {
    flex-direction: column-reverse;
    gap: 90px;
  }
}
.cid-uFpVvPlwNh .mbr-section-title {
  color: #fdfde1;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uFpVvPlwNh .text-wrapper {
    text-align: center;
  }
}
.cid-uFpVvPlwNh .mbr-text,
.cid-uFpVvPlwNh .mbr-section-btn {
  color: #fdfde1;
}
.cid-uFpVvPlwNh .mbr-menu,
.cid-uFpVvPlwNh .mbr-section-btn {
  color: #fdfde1;
}
.cid-uFpVvPlwNh .mbr-desc,
.cid-uFpVvPlwNh .mbr-section-btn {
  color: #fdfde1;
}
.cid-uFp9eZa8iU {
  padding-top: 5rem;
  padding-bottom: 0rem;
  border-bottom: 2px solid #ffffff;
  background-color: #ffffff;
}
.cid-uFp9eZa8iU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFp9eZa8iU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFp9eZa8iU .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFp9eZa8iU .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFp9eZa8iU .content-wrapper {
    padding: 0;
  }
}
.cid-uFp9eZa8iU .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uFp9eZa8iU .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uFp9eZa8iU .mbr-section-title,
.cid-uFp9eZa8iU .title-wrapper {
  color: #ffffff;
}
.cid-uFp9eZa8iU .mbr-section-title,
.cid-uFp9eZa8iU .mbr-section-btn,
.cid-uFp9eZa8iU .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uFp9eZNkXe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uFp9eZNkXe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFp9eZNkXe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFp9eZNkXe .row {
  justify-content: center;
}
.cid-uFp9eZNkXe .map-wrapper {
  position: relative;
}
.cid-uFp9eZNkXe .map-wrapper::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 110%;
  height: 95%;
  border-radius: 100%;
  background-image: radial-gradient(#ebd00c, transparent);
  filter: blur(100px);
}
.cid-uFp9eZNkXe .map-wrapper .google-map {
  position: relative;
  z-index: 1;
  border: 3px solid #ffe161;
  background-color: #ffe161;
}
.cid-uFp9eZNkXe .map-wrapper .google-map iframe {
  height: 750px;
  filter: invert(1);
}
@media (max-width: 1200px) {
  .cid-uFp9eZNkXe .map-wrapper .google-map iframe {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .cid-uFp9eZNkXe .map-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uFp9f0zvom {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uFp9f0zvom .footer-item {
  padding: 30px;
}
.cid-uFp9f0zvom .mbr-section-subtitle,
.cid-uFp9f0zvom .address-text {
  margin-bottom: 1.5rem;
}
.cid-uFp9f0zvom .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uFp9f0zvom .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uFp9f0zvom .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFp9f0zvom .row {
    text-align: center;
  }
  .cid-uFp9f0zvom .social-row {
    justify-content: center;
  }
}
.cid-uFp9f0zvom .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uFp9f0zvom .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uFp9f0zvom .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uFp9f0zvom .mbr-text {
  color: #ffffff;
}
.cid-uFp9f0zvom .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #222222;
}
.cid-uFp9f0zvom .list a {
  color: #ffffff;
}
.cid-uFp9f0zvom .list a:hover {
  background-image: none !important;
  color: #bc2424 !important;
}
.cid-uFp9f0zvom .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uFp9f0zvom .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uFp9f0zvom .mbr-iconfont {
  color: #ffffff;
}
.cid-uFp9f0zvom .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFp9f0zvom .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFpzkv0jfD .navbar-dropdown {
  position: relative !important;
}
.cid-uFpzkv0jfD .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uFpzkv0jfD .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uFpzkv0jfD .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-uFpzkv0jfD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFpzkv0jfD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFpzkv0jfD .dropdown-item:hover,
.cid-uFpzkv0jfD .dropdown-item:focus {
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFpzkv0jfD .dropdown-item:hover span {
  color: white;
}
.cid-uFpzkv0jfD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFpzkv0jfD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFpzkv0jfD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFpzkv0jfD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFpzkv0jfD .nav-link {
  position: relative;
}
.cid-uFpzkv0jfD .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uFpzkv0jfD .container {
    flex-wrap: nowrap;
  }
}
.cid-uFpzkv0jfD .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uFpzkv0jfD .iconfont-wrapper:hover {
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .dropdown-menu,
.cid-uFpzkv0jfD .navbar.opened {
  background: #9fdbf8 !important;
}
.cid-uFpzkv0jfD .nav-item:focus,
.cid-uFpzkv0jfD .nav-link:focus {
  outline: none;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFpzkv0jfD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFpzkv0jfD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFpzkv0jfD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFpzkv0jfD .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #9fdbf8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFpzkv0jfD .navbar.opened {
  transition: all 0.3s;
}
.cid-uFpzkv0jfD .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-uFpzkv0jfD .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uFpzkv0jfD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFpzkv0jfD .navbar.collapsed {
  justify-content: center;
}
.cid-uFpzkv0jfD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFpzkv0jfD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFpzkv0jfD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uFpzkv0jfD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFpzkv0jfD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFpzkv0jfD .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-uFpzkv0jfD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFpzkv0jfD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFpzkv0jfD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFpzkv0jfD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFpzkv0jfD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFpzkv0jfD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFpzkv0jfD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFpzkv0jfD .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-uFpzkv0jfD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFpzkv0jfD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFpzkv0jfD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFpzkv0jfD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uFpzkv0jfD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFpzkv0jfD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFpzkv0jfD .navbar.navbar-short {
  min-height: 96px;
}
.cid-uFpzkv0jfD .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uFpzkv0jfD .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uFpzkv0jfD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFpzkv0jfD .navbar-brand .navbar-caption:hover,
.cid-uFpzkv0jfD .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFpzkv0jfD .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uFpzkv0jfD .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .dropdown-item.active,
.cid-uFpzkv0jfD .dropdown-item:active {
  background-color: transparent;
}
.cid-uFpzkv0jfD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFpzkv0jfD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFpzkv0jfD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFpzkv0jfD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9fdbf8;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-uFpzkv0jfD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uFpzkv0jfD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uFpzkv0jfD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFpzkv0jfD ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uFpzkv0jfD ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uFpzkv0jfD .navbar-buttons {
  text-align: center;
}
.cid-uFpzkv0jfD .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-uFpzkv0jfD .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uFpzkv0jfD .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uFpzkv0jfD button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #9fdbf8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFpzkv0jfD button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFpzkv0jfD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFpzkv0jfD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uFpzkv0jfD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFpzkv0jfD .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-uFpzkv0jfD .navbar {
    height: 70px;
  }
  .cid-uFpzkv0jfD .navbar.opened {
    height: auto;
  }
  .cid-uFpzkv0jfD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFpzkv0jfD .navbar-nav {
  margin: 0 auto;
}
.cid-uFpzkv0jfD .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uFpzkv0jfD .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-uFpzkv0jfD .nav-item .nav-link::after {
  color: #cbff5b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uFpzkv0jfD .nav-item .nav-link:hover {
  background-color: transparent;
  color: #cbff5b !important;
}
.cid-uFpzkv0jfD .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu .dropdown-item {
  color: #bc2424 !important;
}
.cid-uFpzkv0jfD .nav-item .dropdown-menu .dropdown-item:hover {
  color: #cbff5b !important;
}
@media (max-width: 991px) {
  .cid-uFpzkv0jfD .navbar {
    justify-content: flex-start !important;
  }
  .cid-uFpzkv0jfD .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uFpzkv0jfD .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uFpzkv0jfD .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uFpzkv0jfD .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uFpzkv0jfD .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uFpzkv0jfD .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uFpzkv0jfD .content-wrap {
  min-height: 110px;
}
.cid-uFquQsdABZ .navbar-dropdown {
  position: relative !important;
}
.cid-uFquQsdABZ .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uFquQsdABZ .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uFquQsdABZ .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-uFquQsdABZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFquQsdABZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFquQsdABZ .dropdown-item:hover,
.cid-uFquQsdABZ .dropdown-item:focus {
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFquQsdABZ .dropdown-item:hover span {
  color: white;
}
.cid-uFquQsdABZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFquQsdABZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFquQsdABZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFquQsdABZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFquQsdABZ .nav-link {
  position: relative;
}
.cid-uFquQsdABZ .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uFquQsdABZ .container {
    flex-wrap: nowrap;
  }
}
.cid-uFquQsdABZ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uFquQsdABZ .iconfont-wrapper:hover {
  color: #cbff5b !important;
}
.cid-uFquQsdABZ .dropdown-menu,
.cid-uFquQsdABZ .navbar.opened {
  background: #9fdbf8 !important;
}
.cid-uFquQsdABZ .nav-item:focus,
.cid-uFquQsdABZ .nav-link:focus {
  outline: none;
}
.cid-uFquQsdABZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFquQsdABZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uFquQsdABZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFquQsdABZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFquQsdABZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFquQsdABZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFquQsdABZ .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #9fdbf8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFquQsdABZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uFquQsdABZ .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-uFquQsdABZ .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uFquQsdABZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFquQsdABZ .navbar.collapsed {
  justify-content: center;
}
.cid-uFquQsdABZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFquQsdABZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFquQsdABZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uFquQsdABZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFquQsdABZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFquQsdABZ .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-uFquQsdABZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFquQsdABZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFquQsdABZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFquQsdABZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFquQsdABZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFquQsdABZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFquQsdABZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFquQsdABZ .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-uFquQsdABZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFquQsdABZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFquQsdABZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFquQsdABZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uFquQsdABZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFquQsdABZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFquQsdABZ .navbar.navbar-short {
  min-height: 96px;
}
.cid-uFquQsdABZ .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uFquQsdABZ .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uFquQsdABZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFquQsdABZ .navbar-brand .navbar-caption:hover,
.cid-uFquQsdABZ .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFquQsdABZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFquQsdABZ .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uFquQsdABZ .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFquQsdABZ .dropdown-item.active,
.cid-uFquQsdABZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uFquQsdABZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFquQsdABZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFquQsdABZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFquQsdABZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9fdbf8;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-uFquQsdABZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uFquQsdABZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uFquQsdABZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFquQsdABZ ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uFquQsdABZ ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uFquQsdABZ .navbar-buttons {
  text-align: center;
}
.cid-uFquQsdABZ .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-uFquQsdABZ .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uFquQsdABZ .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uFquQsdABZ button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #9fdbf8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFquQsdABZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFquQsdABZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uFquQsdABZ button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFquQsdABZ button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFquQsdABZ button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uFquQsdABZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFquQsdABZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFquQsdABZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFquQsdABZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFquQsdABZ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uFquQsdABZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFquQsdABZ .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-uFquQsdABZ .navbar {
    height: 70px;
  }
  .cid-uFquQsdABZ .navbar.opened {
    height: auto;
  }
  .cid-uFquQsdABZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFquQsdABZ .navbar-nav {
  margin: 0 auto;
}
.cid-uFquQsdABZ .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uFquQsdABZ .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-uFquQsdABZ .nav-item .nav-link::after {
  color: #cbff5b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uFquQsdABZ .nav-item .nav-link:hover {
  background-color: transparent;
  color: #cbff5b !important;
}
.cid-uFquQsdABZ .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uFquQsdABZ .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uFquQsdABZ .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uFquQsdABZ .nav-item .dropdown-menu .dropdown-item {
  color: #bc2424 !important;
}
.cid-uFquQsdABZ .nav-item .dropdown-menu .dropdown-item:hover {
  color: #cbff5b !important;
}
@media (max-width: 991px) {
  .cid-uFquQsdABZ .navbar {
    justify-content: flex-start !important;
  }
  .cid-uFquQsdABZ .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uFquQsdABZ .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uFquQsdABZ .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uFquQsdABZ .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uFquQsdABZ .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uFquQsdABZ .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uFquQsdABZ .content-wrap {
  min-height: 110px;
}
.cid-uFquQusHSD {
  padding-top: 12rem;
  padding-bottom: 0rem;
  position: relative;
  align-items: center;
  background-color: #151e11;
}
.cid-uFquQusHSD .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
@media (max-width: 1440px) {
  .cid-uFquQusHSD .image-wrap {
    padding: 16px;
  }
}
.cid-uFquQusHSD .image-wrap img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}
.cid-uFquQusHSD .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .cid-uFquQusHSD .image-overlay {
    padding: 16px;
  }
}
.cid-uFquQusHSD .image-overlay .image-over {
  background-color: #151e11;
  z-index: 2;
  opacity: 0.5;
  width: 100%;
  height: 70%;
}
.cid-uFquQusHSD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquQusHSD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquQusHSD .row {
  justify-content: center;
}
.cid-uFquQusHSD .mbr-section-title {
  position: relative;
  z-index: 2;
  margin: 160px 20px;
  color: #fff7ee;
  text-align: center;
}
@media (max-width: 1440px) {
  .cid-uFquQusHSD .mbr-section-title {
    margin: 60px 16px;
  }
}
@media (max-width: 992px) {
  .cid-uFquQusHSD .mbr-section-title {
    margin: 30px 16px;
  }
}
.cid-uFquQusHSD .card-wrapper {
  padding: 90px;
  position: relative;
  z-index: 2;
  background-color: #151e11;
}
@media (max-width: 992px) {
  .cid-uFquQusHSD .card-wrapper {
    padding: 30px 16px;
  }
}
.cid-uFquQusHSD .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFquQusHSD .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFquQusHSD .mbr-text,
.cid-uFquQusHSD .text-wrapper {
  color: #fff7ee;
  text-align: center;
}
.cid-uFquQusHSD .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uFquQusHSD .mbr-text,
.cid-uFquQusHSD .mbr-section-btn {
  text-align: center;
}
.cid-uFquQvWarJ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-uFquQvWarJ .container {
    max-width: 1162px;
  }
}
@media (max-width: 768px) {
  .cid-uFquQvWarJ .top {
    margin-top: 10rem;
  }
}
.cid-uFquQvWarJ .mbr-section-title {
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
.cid-uFquQvWarJ .mbr-text {
  font-size: 24px;
  line-height: 1.3;
  color: #000000;
}
.cid-uFquQvWarJ .index {
  z-index: 3;
}
.cid-uFquQvWarJ ul {
  list-style: none;
  margin: 0;
  padding-left: 40px;
}
.cid-uFquQvWarJ li {
  margin-bottom: 47px;
  position: relative;
}
.cid-uFquQvWarJ ul li::before {
  position: relative;
  content: "\2713";
  left: -40px;
  top: -5%;
  color: #000000;
  border: 2px solid #000000;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 .5rem;
}
.cid-uFquQvWarJ .wrap {
  right: 80%;
  top: 0;
  width: 400px;
  height: 200px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-uFquQvWarJ .wrap {
    top: -10%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .cid-uFquQvWarJ .wrap {
    top: 10%;
  }
}
.cid-uFquQvWarJ .wrap .anim {
  width: 195px;
  height: 195px;
  position: relative;
  object-fit: cover;
  border-radius: 100%;
  animation: 15s linear 0s normal none infinite running rot1;
  -webkit-animation: 15s linear 0s normal none infinite running rot1;
}
@media (min-width: 992px) {
  .cid-uFquQvWarJ .wrap {
    right: 5%;
    top: -10%;
  }
}
@media (min-width: 1400px) {
  .cid-uFquQvWarJ .wrap {
    right: -5%;
    top: -5%;
  }
}
@keyframes rot1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.cid-uFquQvWarJ .mbr-section-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: #000000;
  font-size: 25px;
}
.cid-uFquQvWarJ .text {
  font-size: 30px;
  color: #cbc0ff;
  font-weight: 600;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  text-align: end;
}
.cid-uFquQvWarJ .text1 {
  bottom: -75%;
  right: 10%;
  position: absolute;
  font-size: 140px;
  color: #f4d7d7;
  font-weight: 700;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
}
.cid-uFquQvWarJ .mbr-text UL {
  text-align: left;
}
.cid-uFquQxhIqY {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #9fdbf8;
}
.cid-uFquQxhIqY .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uFquQxhIqY .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uFquQxhIqY .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uFquQxhIqY .label-text {
    text-align: center !important;
  }
}
.cid-uFquQxhIqY .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uFquQxhIqY .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uFquQxhIqY .mbr-section-title,
.cid-uFquQxhIqY .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uFquQyAMIA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  background-image: linear-gradient(#000000 70%, #6ec7f2 110%);
}
.cid-uFquQyAMIA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquQyAMIA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquQyAMIA .row {
  justify-content: center;
}
.cid-uFquQyAMIA .card-wrapper {
  display: flex;
  background-color: #1f2329;
  justify-content: space-between;
  align-items: center;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uFquQyAMIA .card-wrapper {
    display: block;
    padding: 16px;
  }
}
.cid-uFquQyAMIA .card-wrapper .content-wrapper {
  width: 42%;
}
@media (max-width: 992px) {
  .cid-uFquQyAMIA .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uFquQyAMIA .card-wrapper .content-wrapper .tag-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFquQyAMIA .card-wrapper .content-wrapper .tag-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uFquQyAMIA .card-wrapper .content-wrapper .tag-wrapper .item-wrap {
  display: inline-flex;
  background-color: #222222;
  padding: 6px 10px;
}
.cid-uFquQyAMIA .card-wrapper .content-wrapper .mbr-date {
  margin-bottom: 22px;
}
.cid-uFquQyAMIA .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uFquQyAMIA .card-wrapper .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFquQyAMIA .card-wrapper .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 12px;
}
.cid-uFquQyAMIA .card-wrapper .content-wrapper .logo-wrapper .logo-wrap .mbr-name {
  margin-bottom: 0;
}
.cid-uFquQyAMIA .card-wrapper .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uFquQyAMIA .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uFquQyAMIA .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uFquQyAMIA .card-wrapper .image-wrapper img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFquQyAMIA .card-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uFquQyAMIA .item-wrap {
  color: #ffffff;
}
.cid-uFquQyAMIA .mbr-date {
  color: #ffffff;
}
.cid-uFquQyAMIA .mbr-section-title {
  color: #ffffff;
}
.cid-uFquQyAMIA .mbr-name {
  color: #ffffff;
}
.cid-uFquQzR7Ed {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-uFquQzR7Ed .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquQzR7Ed .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquQzR7Ed b,
.cid-uFquQzR7Ed strong {
  font-weight: 900;
}
.cid-uFquQzR7Ed .mbr-section-title {
  color: #17003b;
}
.cid-uFquQzR7Ed .mbr-section-subtitle {
  color: #17003b;
}
.cid-uFquQBFiP9 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #1b1818;
}
.cid-uFquQBFiP9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquQBFiP9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1400px) {
  .cid-uFquQBFiP9 .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-uFquQBFiP9 P {
  max-width: 1200px;
}
.cid-uFquQBFiP9 .mbr-section-btn,
.cid-uFquQBFiP9 .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uFquQBFiP9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFquQBFiP9 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uFquQBFiP9 .image-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uFquQBFiP9 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uFquQBFiP9 .mbr-section-title {
  color: #ffffff;
}
.cid-uFquQBFiP9 .mbr-text,
.cid-uFquQBFiP9 .mbr-section-btn {
  color: #ffffff;
}
.cid-uFquQBFiP9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFquQCY0Tv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uFquQCY0Tv .row {
  justify-content: center;
}
.cid-uFquQCY0Tv img,
.cid-uFquQCY0Tv .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uFquQCY0Tv .item:focus,
.cid-uFquQCY0Tv span:focus {
  outline: none;
}
.cid-uFquQCY0Tv .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uFquQCY0Tv .col-items {
    flex-wrap: wrap;
  }
}
.cid-uFquQCY0Tv .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-uFquQCY0Tv .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uFquQCY0Tv .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-uFquQCY0Tv .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  overflow: hidden;
  transition: 1s all;
  min-height: 463px;
}
.cid-uFquQCY0Tv .item-wrapper .btn {
  padding: 10px 12px;
  min-width: 62px;
}
.cid-uFquQCY0Tv .item-wrapper .btn span {
  color: #ffffff;
  margin-right: 8px;
}
.cid-uFquQCY0Tv .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-uFquQCY0Tv .item-wrapper .btn-primary:hover span {
  color: #bc2424 !important;
}
.cid-uFquQCY0Tv .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
@media (min-width: 768px) {
  .cid-uFquQCY0Tv .item-wrapper:hover .item-content {
    bottom: 0;
  }
  .cid-uFquQCY0Tv .item-wrapper:hover .item-img img {
    transform: scale(1.2) translateY(-8%);
  }
}
.cid-uFquQCY0Tv .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-uFquQCY0Tv .item-img img {
  width: 100%;
  transform-style: preserve-3d;
  transition: 1.5s;
}
@media (min-width: 768px) {
  .cid-uFquQCY0Tv .item-img img {
    transform: scale(1.2) translateY(8%);
  }
}
.cid-uFquQCY0Tv .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  pointer-events: none;
}
.cid-uFquQCY0Tv .item-content {
  position: relative;
  bottom: -100%;
  z-index: 3;
  width: 100%;
  padding: 35px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .cid-uFquQCY0Tv .item-content {
    bottom: 0;
    text-align: center;
  }
}
.cid-uFquQCY0Tv .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-uFquQCY0Tv .label-text {
    text-align: center !important;
  }
}
.cid-uFquQCY0Tv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFquQCY0Tv .mbr-text {
  color: #ffffff;
}
.cid-uFquQCY0Tv .item-title {
  color: #ffffff;
}
.cid-uFquQCY0Tv .item-subtitle {
  color: #ffffff;
}
.cid-uFquQCY0Tv .icon-wrapper {
  margin-bottom: 1rem;
}
.cid-uFquQCY0Tv .icon-wrapper .mbr-iconfont {
  font-size: 33px;
  color: #ffffff;
}
.cid-uFquQCY0Tv .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uFquQCY0Tv .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uFquQCY0Tv .mbr-section-head {
    text-align: center !important;
  }
}
.cid-uFquQCY0Tv .mbr-section-subtitle {
  text-align: center;
}
.cid-uFqzRqdOIJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #2c2625;
}
.cid-uFqzRqdOIJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqzRqdOIJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqzRqdOIJ .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFqzRqdOIJ .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFqzRqdOIJ .content-wrapper {
    padding: 0;
  }
}
.cid-uFqzRqdOIJ .content-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #9fdbf8;
  padding: 108px;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 0 #ffffff;
}
@media (max-width: 1440px) {
  .cid-uFqzRqdOIJ .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFqzRqdOIJ .content-wrapper .card-wrapper {
    padding: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uFqzRqdOIJ .content-wrapper .card-wrapper {
    box-shadow: -5px 5px 0 0 #ffffff;
  }
}
.cid-uFqzRqdOIJ .content-wrapper .card-wrapper .card-wrap {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uFqzRqdOIJ .content-wrapper .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uFqzRqdOIJ .content-wrapper .card-wrapper .card-wrap .tag-wrapper {
  margin-bottom: 20px;
}
.cid-uFqzRqdOIJ .content-wrapper .card-wrapper .card-wrap .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #2c2625;
}
.cid-uFqzRqdOIJ .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uFqzRqdOIJ .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFqzRqdOIJ .content-wrapper .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 32px;
}
.cid-uFqzRqdOIJ .content-wrapper .card-wrapper .image-wrapper {
  position: relative;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uFqzRqdOIJ .content-wrapper .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uFqzRqdOIJ .content-wrapper .card-wrapper .image-wrapper .image-wrap-main img {
  object-fit: cover;
  height: 570px;
  border: 2px solid #2c2625;
  box-shadow: -10px 10px 0 0 #2c2625;
}
@media (max-width: 992px) {
  .cid-uFqzRqdOIJ .content-wrapper .card-wrapper .image-wrapper .image-wrap-main img {
    box-shadow: -5px 5px 0 0 #2c2625;
    height: 350px;
  }
}
.cid-uFqzRqdOIJ .content-wrapper .card-wrapper .image-wrapper .image-wrap {
  position: absolute;
  top: 30%;
  left: -10%;
}
.cid-uFqzRqdOIJ .content-wrapper .card-wrapper .image-wrapper .image-wrap img {
  height: 220px;
  width: 220px;
  display: inline-block;
  border-radius: 100% !important;
  object-fit: cover;
  border: 16px solid #9fdbf8;
  box-shadow: -16px 16px 0 #2c2625;
}
.cid-uFqzRqdOIJ .mbr-tag {
  color: #2C2625;
}
.cid-uFqzRqdOIJ .mbr-section-title {
  color: #2C2625;
}
.cid-uFqzRqdOIJ .mbr-text {
  color: #2C2625;
}
.cid-uFquQGdVPe {
  padding-top: 6rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #ebd00c;
}
.cid-uFquQGdVPe .container-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  background-color: #000000;
  pointer-events: none;
}
.cid-uFquQGdVPe .container-bg .shadow-wrap {
  background-image: linear-gradient(#22a5e5 0, transparent 100%);
  height: 40px;
  width: 100%;
  pointer-events: none;
}
.cid-uFquQGdVPe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquQGdVPe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquQGdVPe .row {
  justify-content: center;
}
.cid-uFquQGdVPe .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uFquQGdVPe .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uFquQGdVPe .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uFquQGdVPe .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uFquQGdVPe .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uFquQGdVPe .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uFquQGdVPe .mbr-section-title {
  color: #000000;
}
.cid-uFquQGdVPe .mbr-text,
.cid-uFquQGdVPe .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uFquQGdVPe .mbr-section-title,
.cid-uFquQGdVPe .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uFquQHDf1f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFquQHDf1f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquQHDf1f .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-uFquQHDf1f .container {
    padding: 0 16px;
  }
}
.cid-uFquQHDf1f .card {
  justify-content: center;
}
.cid-uFquQHDf1f .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #9fdbf8;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uFquQHDf1f .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFquQHDf1f .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uFquQHDf1f .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uFquQHDf1f .mbr-section-title {
  color: #000000;
}
.cid-uFquQHDf1f .mbr-text {
  color: #000000;
}
.cid-uFquQHDf1f .mbr-desc {
  color: #000000;
}
.cid-uFqBHkDArE {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #000000;
}
.cid-uFqBHkDArE .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uFqBHkDArE .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFqBHkDArE .video-block {
    width: 100% !important;
  }
}
.cid-uFqBHkDArE .mbr-section-title {
  color: #fafafa;
}
.cid-uFquQJegtR {
  background-color: #9fdbf8;
}
.cid-uFquQJegtR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquQJegtR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquQJegtR .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .container {
    padding: 0 16px;
  }
}
.cid-uFquQJegtR .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .row {
    margin: 0 10px;
  }
}
.cid-uFquQJegtR .row .item {
  padding: 0;
}
.cid-uFquQJegtR .row .item:first-child {
  padding-right: 10px;
  padding-right: 0;
  padding-left: 10px;
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .row .item:first-child {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .row .item:first-child {
    padding: 0;
  }
}
.cid-uFquQJegtR .content-wrapper {
  height: 100%;
  border-radius: 20px;
  background-color: #9fdbf8;
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .content-wrapper {
    margin-bottom: 20px;
    height: auto;
  }
}
.cid-uFquQJegtR .content-wrapper .title-wrapper {
  padding: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .content-wrapper .title-wrapper {
    padding: 20px 10px;
    margin-bottom: 20px;
  }
}
.cid-uFquQJegtR .content-wrapper .title-wrapper .icon-wrapper {
  margin-bottom: 25px;
}
.cid-uFquQJegtR .content-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 30px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #192227;
  background-color: #f9a600;
  border-radius: 50%;
}
.cid-uFquQJegtR .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFquQJegtR .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card {
  border-top: 1px solid #9fdbf8;
  border-radius: 0 !important;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card:nth-child(2) .panel-collapse .panel-body .panel-title span {
  color: #ade988;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card:nth-child(2) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #ade988;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card:nth-child(3) .panel-collapse .panel-body .panel-title span {
  color: #2c8ac0;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card:nth-child(3) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #2c8ac0;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card:nth-child(4) .panel-collapse .panel-body .panel-title span {
  color: #f06246;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card:nth-child(4) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #f06246;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card:nth-child(5) .panel-collapse .panel-body .panel-title span {
  color: #b08ce1;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card:nth-child(5) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #b08ce1;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .card-header {
  padding: 10px 30px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .content-wrapper .panel-group .card .card-header {
    padding: 10px;
  }
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  opacity: 1;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .card-header .panel-title.collapsed .mbr-panel-title {
  color: #9fdbf8;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: block;
  font-size: 30px;
  color: #9fdbf8;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title {
    margin-top: 20px;
  }
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title span {
  color: #f9a600;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper {
    margin-top: 20px;
  }
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap {
  display: inline-flex;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap .panel-desc {
  margin-bottom: 0;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  font-size: 24px;
  color: #f9a600;
  margin-left: 12px;
}
.cid-uFquQJegtR .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uFquQJegtR .image-wrapper {
  height: 100%;
}
.cid-uFquQJegtR .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFquQJegtR .image-wrapper img {
    height: 350px;
  }
}
.cid-uFquQJegtR .mbr-section-title {
  color: #fdfcfc;
}
.cid-uFquQJegtR .mbr-text {
  color: #F9A600;
}
.cid-uFquQJegtR .panel-title-edit {
  color: #000000;
}
.cid-uFquQJegtR .panel-title {
  color: #fdfcfc;
}
.cid-uFquQJegtR .panel-desc {
  color: #4a5357;
}
.cid-uFquQJegtR .panel-text {
  color: #fdfcfc;
}
.cid-uFquQJegtR .mbr-section-title,
.cid-uFquQJegtR .icon-wrapper {
  color: #000000;
}
.cid-uFuHTYTTcq {
  background-color: #000000;
  padding-top: 7rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-uFuHTYTTcq .row {
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (min-width: 992px) {
  .cid-uFuHTYTTcq .content-wrapper {
    max-width: 600px;
    height: 560px;
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uFuHTYTTcq .wrapper {
    padding-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .cid-uFuHTYTTcq .wrapper {
    padding: 0 28px;
  }
}
.cid-uFuHTYTTcq .text {
  position: relative;
}
.cid-uFuHTYTTcq .card-header {
  padding: 15px 0 !important;
  border-bottom: none;
  margin-bottom: 0px !important;
  background-color: transparent;
  border-top: 1px solid rgba(61, 61, 61, 0.3);
}
@media (min-width: 768px) {
  .cid-uFuHTYTTcq .card-header {
    padding: 15px 0 15px 0 !important;
  }
}
.cid-uFuHTYTTcq .panel-body {
  padding-bottom: 60px;
  display: flex;
  align-items: flex-end;
}
.cid-uFuHTYTTcq span {
  transform: rotate(45deg);
  transition: all 0.5s;
  font-size: 20px;
}
.cid-uFuHTYTTcq .collapsed span {
  transform: rotate(0deg);
}
@media (min-width: 992px) {
  .cid-uFuHTYTTcq .content-block {
    padding-left: 60px;
  }
}
.cid-uFuHTYTTcq .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uFuHTYTTcq .panel-group {
  width: 100%;
}
.cid-uFuHTYTTcq .sign {
  font-family: 'Moririse2' !important;
}
.cid-uFuHTYTTcq .card {
  border-radius: 0px;
}
.cid-uFuHTYTTcq .card .card-header {
  border-radius: 0px;
  padding: 0;
}
.cid-uFuHTYTTcq .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uFuHTYTTcq .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uFuHTYTTcq .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uFuHTYTTcq .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.cid-uFuHTYTTcq .link-title {
  border-bottom: 1px solid rgba(61, 61, 61, 0.3);
  padding-bottom: 33px;
}
.cid-uFuHTYTTcq .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uFuHTYTTcq .mbr-text {
  margin-bottom: 84px;
}
.cid-uFuHTYTTcq .header-text,
.cid-uFuHTYTTcq .sign {
  color: #47b5ed;
}
.cid-uFuHTYTTcq .panel-text {
  color: #fcc015;
  text-align: left;
}
.cid-uFuHTYTTcq .title {
  color: #ffffff;
}
.cid-uFquQMJDwL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uFquQMJDwL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquQMJDwL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquQMJDwL .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uFquQMJDwL .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uFquQMJDwL .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uFquQMJDwL .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uFquQMJDwL .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uFquQMJDwL .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uFquQMJDwL .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFquQMJDwL .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFquQMJDwL .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFquQMJDwL .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uFquQMJDwL .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uFquQMJDwL .mbr-section-title,
.cid-uFquQMJDwL .mbr-section-btn {
  color: #000000;
}
.cid-uFqRsRUp7G {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFqRsRUp7G .title-text {
  margin-bottom: 70px;
}
.cid-uFqRsRUp7G .title-text .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uFqRsRUp7G .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uFqRsRUp7G .title-text .mbr-section-title {
  color: #130947;
}
.cid-uFqRsRUp7G .title-text .mbr-section-title span {
  font-weight: 900;
}
.cid-uFqRsRUp7G .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uFqRsRUp7G .mbr-iconfont {
  font-family: 'Moririse2' !important;
  display: inline-flex;
  -webkit-transform-origin: ;
  transform-origin: ;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #222222;
}
.cid-uFqRsRUp7G .mbr-iconfont:before {
  -webkit-transform: scaleY(0) !important;
  transform: scaleY(0) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqRsRUp7G .collapsed .mbr-iconfont {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cid-uFqRsRUp7G .collapsed .mbr-iconfont:before {
  -webkit-transform: scaleY(1) !important;
  transform: scaleY(1) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqRsRUp7G .accordion-content {
  flex-basis: 100%;
}
.cid-uFqRsRUp7G .panel-group {
  width: 100%;
}
.cid-uFqRsRUp7G .panel-text,
.cid-uFqRsRUp7G .header-text,
.cid-uFqRsRUp7G .mbr-section-subtitle {
  color: #222222;
}
.cid-uFqRsRUp7G .card {
  margin-bottom: 30px;
  margin-top: 30px;
  border: none;
  border-radius: 0 !important;
}
.cid-uFqRsRUp7G .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title {
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #6ec7f2;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none !important;
  border-radius: 0 !important;
  line-height: normal;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title h4 {
  padding: 17px 42px 17px 35px;
  margin-bottom: 0;
  width: 100%;
  line-height: 1.5;
  font-weight: 400 !important;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  line-height: 1.6 !important;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 29px;
  -webkit-transform: none;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title .toggle-icon:before,
.cid-uFqRsRUp7G .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  -webkit-transform: none;
  transform: none;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title[aria-expanded='true'] {
  background-color: #e2e2e2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqRsRUp7G .card .card-header a.panel-title[aria-expanded='true'] .header-text,
.cid-uFqRsRUp7G .card .card-header a.panel-title[aria-expanded='true'] .sign {
  color: #000000 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqRsRUp7G .card .panel-body {
  background: #ffffff;
  padding: 30px 55px 35px 40px !important;
}
.cid-uFqRsRUp7G .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-uFqRsRUp7G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqRsRUp7G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqRsRUp7G .title-text .mbr-section-title {
  color: #050f0f;
}
.cid-uFqRsRUp7G .header-text {
  color: #000000;
}
.cid-uFquQPGLEK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #9fdbf8;
}
.cid-uFquQPGLEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquQPGLEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquQPGLEK .content-wrapper {
  position: relative;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFquQPGLEK .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFquQPGLEK .content-wrapper {
    padding: 0;
  }
}
.cid-uFquQPGLEK .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFquQPGLEK .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFquQPGLEK .content-wrapper .google-map iframe {
  height: 700px;
  border: 2px solid #ffffff !important;
  box-shadow: -10px 10px 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uFquQPGLEK .content-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uFquQPGLEK .content-wrapper .google-map iframe {
    box-shadow: -5px 5px 0 #ffffff;
  }
}
.cid-uFquQPGLEK .mbr-section-title {
  color: #ffffff;
}
.cid-uFquQPGLEK .mbr-section-title,
.cid-uFquQPGLEK .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uFquQSUlwP {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uFquQSUlwP .footer-item {
  padding: 30px;
}
.cid-uFquQSUlwP .mbr-section-subtitle,
.cid-uFquQSUlwP .address-text {
  margin-bottom: 1.5rem;
}
.cid-uFquQSUlwP .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uFquQSUlwP .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uFquQSUlwP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFquQSUlwP .row {
    text-align: center;
  }
  .cid-uFquQSUlwP .social-row {
    justify-content: center;
  }
}
.cid-uFquQSUlwP .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uFquQSUlwP .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uFquQSUlwP .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uFquQSUlwP .mbr-text {
  color: #ffffff;
}
.cid-uFquQSUlwP .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #222222;
}
.cid-uFquQSUlwP .list a {
  color: #ffffff;
}
.cid-uFquQSUlwP .list a:hover {
  background-image: none !important;
  color: #bc2424 !important;
}
.cid-uFquQSUlwP .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uFquQSUlwP .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uFquQSUlwP .mbr-iconfont {
  color: #ffffff;
}
.cid-uFquQSUlwP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquQSUlwP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquRZTkUd .navbar-dropdown {
  position: relative !important;
}
.cid-uFquRZTkUd .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uFquRZTkUd .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uFquRZTkUd .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-uFquRZTkUd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFquRZTkUd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFquRZTkUd .dropdown-item:hover,
.cid-uFquRZTkUd .dropdown-item:focus {
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFquRZTkUd .dropdown-item:hover span {
  color: white;
}
.cid-uFquRZTkUd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFquRZTkUd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFquRZTkUd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFquRZTkUd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFquRZTkUd .nav-link {
  position: relative;
}
.cid-uFquRZTkUd .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uFquRZTkUd .container {
    flex-wrap: nowrap;
  }
}
.cid-uFquRZTkUd .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uFquRZTkUd .iconfont-wrapper:hover {
  color: #cbff5b !important;
}
.cid-uFquRZTkUd .dropdown-menu,
.cid-uFquRZTkUd .navbar.opened {
  background: #9fdbf8 !important;
}
.cid-uFquRZTkUd .nav-item:focus,
.cid-uFquRZTkUd .nav-link:focus {
  outline: none;
}
.cid-uFquRZTkUd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFquRZTkUd .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uFquRZTkUd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFquRZTkUd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFquRZTkUd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFquRZTkUd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFquRZTkUd .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #9fdbf8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFquRZTkUd .navbar.opened {
  transition: all 0.3s;
}
.cid-uFquRZTkUd .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-uFquRZTkUd .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uFquRZTkUd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFquRZTkUd .navbar.collapsed {
  justify-content: center;
}
.cid-uFquRZTkUd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFquRZTkUd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFquRZTkUd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uFquRZTkUd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFquRZTkUd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFquRZTkUd .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-uFquRZTkUd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFquRZTkUd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFquRZTkUd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFquRZTkUd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFquRZTkUd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFquRZTkUd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFquRZTkUd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFquRZTkUd .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-uFquRZTkUd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFquRZTkUd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFquRZTkUd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFquRZTkUd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uFquRZTkUd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFquRZTkUd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFquRZTkUd .navbar.navbar-short {
  min-height: 96px;
}
.cid-uFquRZTkUd .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uFquRZTkUd .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uFquRZTkUd .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFquRZTkUd .navbar-brand .navbar-caption:hover,
.cid-uFquRZTkUd .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFquRZTkUd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFquRZTkUd .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uFquRZTkUd .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFquRZTkUd .dropdown-item.active,
.cid-uFquRZTkUd .dropdown-item:active {
  background-color: transparent;
}
.cid-uFquRZTkUd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFquRZTkUd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFquRZTkUd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFquRZTkUd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9fdbf8;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-uFquRZTkUd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uFquRZTkUd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uFquRZTkUd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFquRZTkUd ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uFquRZTkUd ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uFquRZTkUd .navbar-buttons {
  text-align: center;
}
.cid-uFquRZTkUd .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-uFquRZTkUd .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uFquRZTkUd .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uFquRZTkUd button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #9fdbf8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFquRZTkUd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFquRZTkUd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uFquRZTkUd button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFquRZTkUd button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFquRZTkUd button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uFquRZTkUd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFquRZTkUd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFquRZTkUd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFquRZTkUd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFquRZTkUd .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uFquRZTkUd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFquRZTkUd .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-uFquRZTkUd .navbar {
    height: 70px;
  }
  .cid-uFquRZTkUd .navbar.opened {
    height: auto;
  }
  .cid-uFquRZTkUd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFquRZTkUd .navbar-nav {
  margin: 0 auto;
}
.cid-uFquRZTkUd .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uFquRZTkUd .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-uFquRZTkUd .nav-item .nav-link::after {
  color: #cbff5b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uFquRZTkUd .nav-item .nav-link:hover {
  background-color: transparent;
  color: #cbff5b !important;
}
.cid-uFquRZTkUd .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uFquRZTkUd .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uFquRZTkUd .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uFquRZTkUd .nav-item .dropdown-menu .dropdown-item {
  color: #bc2424 !important;
}
.cid-uFquRZTkUd .nav-item .dropdown-menu .dropdown-item:hover {
  color: #cbff5b !important;
}
@media (max-width: 991px) {
  .cid-uFquRZTkUd .navbar {
    justify-content: flex-start !important;
  }
  .cid-uFquRZTkUd .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uFquRZTkUd .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uFquRZTkUd .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uFquRZTkUd .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uFquRZTkUd .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uFquRZTkUd .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uFquRZTkUd .content-wrap {
  min-height: 110px;
}
.cid-uFquS1Rh0T {
  padding-top: 12rem;
  padding-bottom: 0rem;
  position: relative;
  align-items: center;
  background-color: #151e11;
}
.cid-uFquS1Rh0T .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
@media (max-width: 1440px) {
  .cid-uFquS1Rh0T .image-wrap {
    padding: 16px;
  }
}
.cid-uFquS1Rh0T .image-wrap img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}
.cid-uFquS1Rh0T .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .cid-uFquS1Rh0T .image-overlay {
    padding: 16px;
  }
}
.cid-uFquS1Rh0T .image-overlay .image-over {
  background-color: #151e11;
  z-index: 2;
  opacity: 0.5;
  width: 100%;
  height: 70%;
}
.cid-uFquS1Rh0T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquS1Rh0T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquS1Rh0T .row {
  justify-content: center;
}
.cid-uFquS1Rh0T .mbr-section-title {
  position: relative;
  z-index: 2;
  margin: 160px 20px;
  color: #fff7ee;
  text-align: center;
}
@media (max-width: 1440px) {
  .cid-uFquS1Rh0T .mbr-section-title {
    margin: 60px 16px;
  }
}
@media (max-width: 992px) {
  .cid-uFquS1Rh0T .mbr-section-title {
    margin: 30px 16px;
  }
}
.cid-uFquS1Rh0T .card-wrapper {
  padding: 90px;
  position: relative;
  z-index: 2;
  background-color: #151e11;
}
@media (max-width: 992px) {
  .cid-uFquS1Rh0T .card-wrapper {
    padding: 30px 16px;
  }
}
.cid-uFquS1Rh0T .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFquS1Rh0T .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFquS1Rh0T .mbr-text,
.cid-uFquS1Rh0T .text-wrapper {
  color: #fff7ee;
  text-align: center;
}
.cid-uFquS1Rh0T .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uFquS1Rh0T .mbr-text,
.cid-uFquS1Rh0T .mbr-section-btn {
  text-align: center;
}
.cid-uFquS3fFEL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-uFquS3fFEL .container {
    max-width: 1162px;
  }
}
@media (max-width: 768px) {
  .cid-uFquS3fFEL .top {
    margin-top: 10rem;
  }
}
.cid-uFquS3fFEL .mbr-section-title {
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
.cid-uFquS3fFEL .mbr-text {
  font-size: 24px;
  line-height: 1.3;
  color: #000000;
}
.cid-uFquS3fFEL .index {
  z-index: 3;
}
.cid-uFquS3fFEL ul {
  list-style: none;
  margin: 0;
  padding-left: 40px;
}
.cid-uFquS3fFEL li {
  margin-bottom: 47px;
  position: relative;
}
.cid-uFquS3fFEL ul li::before {
  position: relative;
  content: "\2713";
  left: -40px;
  top: -5%;
  color: #000000;
  border: 2px solid #000000;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 .5rem;
}
.cid-uFquS3fFEL .wrap {
  right: 80%;
  top: 0;
  width: 400px;
  height: 200px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-uFquS3fFEL .wrap {
    top: -10%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .cid-uFquS3fFEL .wrap {
    top: 10%;
  }
}
.cid-uFquS3fFEL .wrap .anim {
  width: 195px;
  height: 195px;
  position: relative;
  object-fit: cover;
  border-radius: 100%;
  animation: 15s linear 0s normal none infinite running rot1;
  -webkit-animation: 15s linear 0s normal none infinite running rot1;
}
@media (min-width: 992px) {
  .cid-uFquS3fFEL .wrap {
    right: 5%;
    top: -10%;
  }
}
@media (min-width: 1400px) {
  .cid-uFquS3fFEL .wrap {
    right: -5%;
    top: -5%;
  }
}
@keyframes rot1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.cid-uFquS3fFEL .mbr-section-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: #000000;
  font-size: 25px;
}
.cid-uFquS3fFEL .text {
  font-size: 30px;
  color: #cbc0ff;
  font-weight: 600;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  text-align: end;
}
.cid-uFquS3fFEL .text1 {
  bottom: -75%;
  right: 10%;
  position: absolute;
  font-size: 140px;
  color: #f4d7d7;
  font-weight: 700;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
}
.cid-uFquS3fFEL .mbr-text UL {
  text-align: left;
}
.cid-uFquS4zMWc {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #9fdbf8;
}
.cid-uFquS4zMWc .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uFquS4zMWc .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uFquS4zMWc .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uFquS4zMWc .label-text {
    text-align: center !important;
  }
}
.cid-uFquS4zMWc .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uFquS4zMWc .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uFquS4zMWc .mbr-section-title,
.cid-uFquS4zMWc .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uFquS5XZjn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  background-image: linear-gradient(#000000 70%, #6ec7f2 110%);
}
.cid-uFquS5XZjn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquS5XZjn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquS5XZjn .row {
  justify-content: center;
}
.cid-uFquS5XZjn .card-wrapper {
  display: flex;
  background-color: #1f2329;
  justify-content: space-between;
  align-items: center;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uFquS5XZjn .card-wrapper {
    display: block;
    padding: 16px;
  }
}
.cid-uFquS5XZjn .card-wrapper .content-wrapper {
  width: 42%;
}
@media (max-width: 992px) {
  .cid-uFquS5XZjn .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uFquS5XZjn .card-wrapper .content-wrapper .tag-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFquS5XZjn .card-wrapper .content-wrapper .tag-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uFquS5XZjn .card-wrapper .content-wrapper .tag-wrapper .item-wrap {
  display: inline-flex;
  background-color: #222222;
  padding: 6px 10px;
}
.cid-uFquS5XZjn .card-wrapper .content-wrapper .mbr-date {
  margin-bottom: 22px;
}
.cid-uFquS5XZjn .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uFquS5XZjn .card-wrapper .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFquS5XZjn .card-wrapper .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 12px;
}
.cid-uFquS5XZjn .card-wrapper .content-wrapper .logo-wrapper .logo-wrap .mbr-name {
  margin-bottom: 0;
}
.cid-uFquS5XZjn .card-wrapper .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uFquS5XZjn .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uFquS5XZjn .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uFquS5XZjn .card-wrapper .image-wrapper img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFquS5XZjn .card-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uFquS5XZjn .item-wrap {
  color: #ffffff;
}
.cid-uFquS5XZjn .mbr-date {
  color: #ffffff;
}
.cid-uFquS5XZjn .mbr-section-title {
  color: #ffffff;
}
.cid-uFquS5XZjn .mbr-name {
  color: #ffffff;
}
.cid-uFquS7eANn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-uFquS7eANn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquS7eANn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquS7eANn b,
.cid-uFquS7eANn strong {
  font-weight: 900;
}
.cid-uFquS7eANn .mbr-section-title {
  color: #17003b;
}
.cid-uFquS7eANn .mbr-section-subtitle {
  color: #17003b;
}
.cid-uFquS8Pxy6 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #1b1818;
}
.cid-uFquS8Pxy6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquS8Pxy6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1400px) {
  .cid-uFquS8Pxy6 .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-uFquS8Pxy6 P {
  max-width: 1200px;
}
.cid-uFquS8Pxy6 .mbr-section-btn,
.cid-uFquS8Pxy6 .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uFquS8Pxy6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFquS8Pxy6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uFquS8Pxy6 .image-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uFquS8Pxy6 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uFquS8Pxy6 .mbr-section-title {
  color: #ffffff;
}
.cid-uFquS8Pxy6 .mbr-text,
.cid-uFquS8Pxy6 .mbr-section-btn {
  color: #ffffff;
}
.cid-uFquS8Pxy6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFquSa9rEE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uFquSa9rEE .row {
  justify-content: center;
}
.cid-uFquSa9rEE img,
.cid-uFquSa9rEE .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uFquSa9rEE .item:focus,
.cid-uFquSa9rEE span:focus {
  outline: none;
}
.cid-uFquSa9rEE .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uFquSa9rEE .col-items {
    flex-wrap: wrap;
  }
}
.cid-uFquSa9rEE .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-uFquSa9rEE .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uFquSa9rEE .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-uFquSa9rEE .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  overflow: hidden;
  transition: 1s all;
  min-height: 463px;
}
.cid-uFquSa9rEE .item-wrapper .btn {
  padding: 10px 12px;
  min-width: 62px;
}
.cid-uFquSa9rEE .item-wrapper .btn span {
  color: #ffffff;
  margin-right: 8px;
}
.cid-uFquSa9rEE .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-uFquSa9rEE .item-wrapper .btn-primary:hover span {
  color: #bc2424 !important;
}
.cid-uFquSa9rEE .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
@media (min-width: 768px) {
  .cid-uFquSa9rEE .item-wrapper:hover .item-content {
    bottom: 0;
  }
  .cid-uFquSa9rEE .item-wrapper:hover .item-img img {
    transform: scale(1.2) translateY(-8%);
  }
}
.cid-uFquSa9rEE .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-uFquSa9rEE .item-img img {
  width: 100%;
  transform-style: preserve-3d;
  transition: 1.5s;
}
@media (min-width: 768px) {
  .cid-uFquSa9rEE .item-img img {
    transform: scale(1.2) translateY(8%);
  }
}
.cid-uFquSa9rEE .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  pointer-events: none;
}
.cid-uFquSa9rEE .item-content {
  position: relative;
  bottom: -100%;
  z-index: 3;
  width: 100%;
  padding: 35px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .cid-uFquSa9rEE .item-content {
    bottom: 0;
    text-align: center;
  }
}
.cid-uFquSa9rEE .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-uFquSa9rEE .label-text {
    text-align: center !important;
  }
}
.cid-uFquSa9rEE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFquSa9rEE .mbr-text {
  color: #ffffff;
}
.cid-uFquSa9rEE .item-title {
  color: #ffffff;
}
.cid-uFquSa9rEE .item-subtitle {
  color: #ffffff;
}
.cid-uFquSa9rEE .icon-wrapper {
  margin-bottom: 1rem;
}
.cid-uFquSa9rEE .icon-wrapper .mbr-iconfont {
  font-size: 33px;
  color: #ffffff;
}
.cid-uFquSa9rEE .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uFquSa9rEE .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uFquSa9rEE .mbr-section-head {
    text-align: center !important;
  }
}
.cid-uFquSa9rEE .mbr-section-subtitle {
  text-align: center;
}
.cid-uFquSbKgFn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #2c2625;
}
.cid-uFquSbKgFn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquSbKgFn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquSbKgFn .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFquSbKgFn .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFquSbKgFn .content-wrapper {
    padding: 0;
  }
}
.cid-uFquSbKgFn .content-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #9fdbf8;
  padding: 108px;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 0 #ffffff;
}
@media (max-width: 1440px) {
  .cid-uFquSbKgFn .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFquSbKgFn .content-wrapper .card-wrapper {
    padding: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uFquSbKgFn .content-wrapper .card-wrapper {
    box-shadow: -5px 5px 0 0 #ffffff;
  }
}
.cid-uFquSbKgFn .content-wrapper .card-wrapper .card-wrap {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uFquSbKgFn .content-wrapper .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uFquSbKgFn .content-wrapper .card-wrapper .card-wrap .tag-wrapper {
  margin-bottom: 20px;
}
.cid-uFquSbKgFn .content-wrapper .card-wrapper .card-wrap .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #2c2625;
}
.cid-uFquSbKgFn .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uFquSbKgFn .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFquSbKgFn .content-wrapper .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 32px;
}
.cid-uFquSbKgFn .content-wrapper .card-wrapper .image-wrapper {
  position: relative;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uFquSbKgFn .content-wrapper .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uFquSbKgFn .content-wrapper .card-wrapper .image-wrapper .image-wrap-main img {
  object-fit: cover;
  height: 570px;
  border: 2px solid #2c2625;
  box-shadow: -10px 10px 0 0 #2c2625;
}
@media (max-width: 992px) {
  .cid-uFquSbKgFn .content-wrapper .card-wrapper .image-wrapper .image-wrap-main img {
    box-shadow: -5px 5px 0 0 #2c2625;
    height: 350px;
  }
}
.cid-uFquSbKgFn .content-wrapper .card-wrapper .image-wrapper .image-wrap {
  position: absolute;
  top: 30%;
  left: -10%;
}
.cid-uFquSbKgFn .content-wrapper .card-wrapper .image-wrapper .image-wrap img {
  height: 220px;
  width: 220px;
  display: inline-block;
  border-radius: 100% !important;
  object-fit: cover;
  border: 16px solid #9fdbf8;
  box-shadow: -16px 16px 0 #2c2625;
}
.cid-uFquSbKgFn .mbr-tag {
  color: #2C2625;
}
.cid-uFquSbKgFn .mbr-section-title {
  color: #2C2625;
}
.cid-uFquSbKgFn .mbr-text {
  color: #2C2625;
}
.cid-uFquSdev8R {
  padding-top: 6rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #ebd00c;
}
.cid-uFquSdev8R .container-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  background-color: #000000;
  pointer-events: none;
}
.cid-uFquSdev8R .container-bg .shadow-wrap {
  background-image: linear-gradient(#22a5e5 0, transparent 100%);
  height: 40px;
  width: 100%;
  pointer-events: none;
}
.cid-uFquSdev8R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquSdev8R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquSdev8R .row {
  justify-content: center;
}
.cid-uFquSdev8R .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uFquSdev8R .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uFquSdev8R .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uFquSdev8R .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uFquSdev8R .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uFquSdev8R .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uFquSdev8R .mbr-section-title {
  color: #000000;
}
.cid-uFquSdev8R .mbr-text,
.cid-uFquSdev8R .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uFquSdev8R .mbr-section-title,
.cid-uFquSdev8R .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uFquSezCsT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFquSezCsT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquSezCsT .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-uFquSezCsT .container {
    padding: 0 16px;
  }
}
.cid-uFquSezCsT .card {
  justify-content: center;
}
.cid-uFquSezCsT .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #9fdbf8;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uFquSezCsT .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFquSezCsT .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uFquSezCsT .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uFquSezCsT .mbr-section-title {
  color: #000000;
}
.cid-uFquSezCsT .mbr-text {
  color: #000000;
}
.cid-uFquSezCsT .mbr-desc {
  color: #000000;
}
.cid-uFuI07n6bo {
  background-color: #000000;
  padding-top: 7rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-uFuI07n6bo .row {
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (min-width: 992px) {
  .cid-uFuI07n6bo .content-wrapper {
    max-width: 600px;
    height: 560px;
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uFuI07n6bo .wrapper {
    padding-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .cid-uFuI07n6bo .wrapper {
    padding: 0 28px;
  }
}
.cid-uFuI07n6bo .text {
  position: relative;
}
.cid-uFuI07n6bo .card-header {
  padding: 15px 0 !important;
  border-bottom: none;
  margin-bottom: 0px !important;
  background-color: transparent;
  border-top: 1px solid rgba(61, 61, 61, 0.3);
}
@media (min-width: 768px) {
  .cid-uFuI07n6bo .card-header {
    padding: 15px 0 15px 0 !important;
  }
}
.cid-uFuI07n6bo .panel-body {
  padding-bottom: 60px;
  display: flex;
  align-items: flex-end;
}
.cid-uFuI07n6bo span {
  transform: rotate(45deg);
  transition: all 0.5s;
  font-size: 20px;
}
.cid-uFuI07n6bo .collapsed span {
  transform: rotate(0deg);
}
@media (min-width: 992px) {
  .cid-uFuI07n6bo .content-block {
    padding-left: 60px;
  }
}
.cid-uFuI07n6bo .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uFuI07n6bo .panel-group {
  width: 100%;
}
.cid-uFuI07n6bo .sign {
  font-family: 'Moririse2' !important;
}
.cid-uFuI07n6bo .card {
  border-radius: 0px;
}
.cid-uFuI07n6bo .card .card-header {
  border-radius: 0px;
  padding: 0;
}
.cid-uFuI07n6bo .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uFuI07n6bo .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uFuI07n6bo .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uFuI07n6bo .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.cid-uFuI07n6bo .link-title {
  border-bottom: 1px solid rgba(61, 61, 61, 0.3);
  padding-bottom: 33px;
}
.cid-uFuI07n6bo .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uFuI07n6bo .mbr-text {
  margin-bottom: 84px;
}
.cid-uFuI07n6bo .header-text,
.cid-uFuI07n6bo .sign {
  color: #47b5ed;
}
.cid-uFuI07n6bo .panel-text {
  color: #fcc015;
  text-align: left;
}
.cid-uFuI07n6bo .title {
  color: #ffffff;
}
.cid-uFquSfPn8j {
  background-color: #9fdbf8;
}
.cid-uFquSfPn8j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquSfPn8j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquSfPn8j .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .container {
    padding: 0 16px;
  }
}
.cid-uFquSfPn8j .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .row {
    margin: 0 10px;
  }
}
.cid-uFquSfPn8j .row .item {
  padding: 0;
}
.cid-uFquSfPn8j .row .item:first-child {
  padding-right: 10px;
  padding-right: 0;
  padding-left: 10px;
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .row .item:first-child {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .row .item:first-child {
    padding: 0;
  }
}
.cid-uFquSfPn8j .content-wrapper {
  height: 100%;
  border-radius: 20px;
  background-color: #9fdbf8;
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .content-wrapper {
    margin-bottom: 20px;
    height: auto;
  }
}
.cid-uFquSfPn8j .content-wrapper .title-wrapper {
  padding: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .content-wrapper .title-wrapper {
    padding: 20px 10px;
    margin-bottom: 20px;
  }
}
.cid-uFquSfPn8j .content-wrapper .title-wrapper .icon-wrapper {
  margin-bottom: 25px;
}
.cid-uFquSfPn8j .content-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 30px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #192227;
  background-color: #f9a600;
  border-radius: 50%;
}
.cid-uFquSfPn8j .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFquSfPn8j .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card {
  border-top: 1px solid #9fdbf8;
  border-radius: 0 !important;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card:nth-child(2) .panel-collapse .panel-body .panel-title span {
  color: #ade988;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card:nth-child(2) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #ade988;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card:nth-child(3) .panel-collapse .panel-body .panel-title span {
  color: #2c8ac0;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card:nth-child(3) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #2c8ac0;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card:nth-child(4) .panel-collapse .panel-body .panel-title span {
  color: #f06246;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card:nth-child(4) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #f06246;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card:nth-child(5) .panel-collapse .panel-body .panel-title span {
  color: #b08ce1;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card:nth-child(5) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #b08ce1;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .card-header {
  padding: 10px 30px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .content-wrapper .panel-group .card .card-header {
    padding: 10px;
  }
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  opacity: 1;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .card-header .panel-title.collapsed .mbr-panel-title {
  color: #9fdbf8;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: block;
  font-size: 30px;
  color: #9fdbf8;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title {
    margin-top: 20px;
  }
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title span {
  color: #f9a600;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper {
    margin-top: 20px;
  }
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap {
  display: inline-flex;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap .panel-desc {
  margin-bottom: 0;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  font-size: 24px;
  color: #f9a600;
  margin-left: 12px;
}
.cid-uFquSfPn8j .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uFquSfPn8j .image-wrapper {
  height: 100%;
}
.cid-uFquSfPn8j .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFquSfPn8j .image-wrapper img {
    height: 350px;
  }
}
.cid-uFquSfPn8j .mbr-section-title {
  color: #fdfcfc;
}
.cid-uFquSfPn8j .mbr-text {
  color: #F9A600;
}
.cid-uFquSfPn8j .panel-title-edit {
  color: #000000;
}
.cid-uFquSfPn8j .panel-title {
  color: #fdfcfc;
}
.cid-uFquSfPn8j .panel-desc {
  color: #4a5357;
}
.cid-uFquSfPn8j .panel-text {
  color: #fdfcfc;
}
.cid-uFquSfPn8j .mbr-section-title,
.cid-uFquSfPn8j .icon-wrapper {
  color: #000000;
}
.cid-uFquShL9KQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uFquShL9KQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquShL9KQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquShL9KQ .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uFquShL9KQ .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uFquShL9KQ .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uFquShL9KQ .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uFquShL9KQ .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uFquShL9KQ .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uFquShL9KQ .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFquShL9KQ .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFquShL9KQ .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFquShL9KQ .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uFquShL9KQ .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uFquShL9KQ .mbr-section-title,
.cid-uFquShL9KQ .mbr-section-btn {
  color: #000000;
}
.cid-uFqS8FjVOn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFqS8FjVOn .title-text {
  margin-bottom: 70px;
}
.cid-uFqS8FjVOn .title-text .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uFqS8FjVOn .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uFqS8FjVOn .title-text .mbr-section-title {
  color: #130947;
}
.cid-uFqS8FjVOn .title-text .mbr-section-title span {
  font-weight: 900;
}
.cid-uFqS8FjVOn .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uFqS8FjVOn .mbr-iconfont {
  font-family: 'Moririse2' !important;
  display: inline-flex;
  -webkit-transform-origin: ;
  transform-origin: ;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #222222;
}
.cid-uFqS8FjVOn .mbr-iconfont:before {
  -webkit-transform: scaleY(0) !important;
  transform: scaleY(0) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqS8FjVOn .collapsed .mbr-iconfont {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cid-uFqS8FjVOn .collapsed .mbr-iconfont:before {
  -webkit-transform: scaleY(1) !important;
  transform: scaleY(1) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqS8FjVOn .accordion-content {
  flex-basis: 100%;
}
.cid-uFqS8FjVOn .panel-group {
  width: 100%;
}
.cid-uFqS8FjVOn .panel-text,
.cid-uFqS8FjVOn .header-text,
.cid-uFqS8FjVOn .mbr-section-subtitle {
  color: #222222;
}
.cid-uFqS8FjVOn .card {
  margin-bottom: 30px;
  margin-top: 30px;
  border: none;
  border-radius: 0 !important;
}
.cid-uFqS8FjVOn .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title {
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #6ec7f2;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none !important;
  border-radius: 0 !important;
  line-height: normal;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title h4 {
  padding: 17px 42px 17px 35px;
  margin-bottom: 0;
  width: 100%;
  line-height: 1.5;
  font-weight: 400 !important;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  line-height: 1.6 !important;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 29px;
  -webkit-transform: none;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title .toggle-icon:before,
.cid-uFqS8FjVOn .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  -webkit-transform: none;
  transform: none;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title[aria-expanded='true'] {
  background-color: #e2e2e2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqS8FjVOn .card .card-header a.panel-title[aria-expanded='true'] .header-text,
.cid-uFqS8FjVOn .card .card-header a.panel-title[aria-expanded='true'] .sign {
  color: #000000 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqS8FjVOn .card .panel-body {
  background: #ffffff;
  padding: 30px 55px 35px 40px !important;
}
.cid-uFqS8FjVOn .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-uFqS8FjVOn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqS8FjVOn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqS8FjVOn .title-text .mbr-section-title {
  color: #050f0f;
}
.cid-uFqS8FjVOn .header-text {
  color: #000000;
}
.cid-uFquSiXwZ0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #9fdbf8;
}
.cid-uFquSiXwZ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquSiXwZ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquSiXwZ0 .content-wrapper {
  position: relative;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFquSiXwZ0 .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFquSiXwZ0 .content-wrapper {
    padding: 0;
  }
}
.cid-uFquSiXwZ0 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFquSiXwZ0 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFquSiXwZ0 .content-wrapper .google-map iframe {
  height: 700px;
  border: 2px solid #ffffff !important;
  box-shadow: -10px 10px 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uFquSiXwZ0 .content-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uFquSiXwZ0 .content-wrapper .google-map iframe {
    box-shadow: -5px 5px 0 #ffffff;
  }
}
.cid-uFquSiXwZ0 .mbr-section-title {
  color: #ffffff;
}
.cid-uFquSiXwZ0 .mbr-section-title,
.cid-uFquSiXwZ0 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uFquSkwd2o {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uFquSkwd2o .footer-item {
  padding: 30px;
}
.cid-uFquSkwd2o .mbr-section-subtitle,
.cid-uFquSkwd2o .address-text {
  margin-bottom: 1.5rem;
}
.cid-uFquSkwd2o .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uFquSkwd2o .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uFquSkwd2o .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFquSkwd2o .row {
    text-align: center;
  }
  .cid-uFquSkwd2o .social-row {
    justify-content: center;
  }
}
.cid-uFquSkwd2o .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uFquSkwd2o .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uFquSkwd2o .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uFquSkwd2o .mbr-text {
  color: #ffffff;
}
.cid-uFquSkwd2o .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #222222;
}
.cid-uFquSkwd2o .list a {
  color: #ffffff;
}
.cid-uFquSkwd2o .list a:hover {
  background-image: none !important;
  color: #bc2424 !important;
}
.cid-uFquSkwd2o .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uFquSkwd2o .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uFquSkwd2o .mbr-iconfont {
  color: #ffffff;
}
.cid-uFquSkwd2o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquSkwd2o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquSXNtvf .navbar-dropdown {
  position: relative !important;
}
.cid-uFquSXNtvf .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uFquSXNtvf .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uFquSXNtvf .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-uFquSXNtvf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFquSXNtvf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFquSXNtvf .dropdown-item:hover,
.cid-uFquSXNtvf .dropdown-item:focus {
  background: #9fdbf8 !important;
  color: #bc2424 !important;
}
.cid-uFquSXNtvf .dropdown-item:hover span {
  color: white;
}
.cid-uFquSXNtvf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFquSXNtvf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFquSXNtvf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFquSXNtvf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFquSXNtvf .nav-link {
  position: relative;
}
.cid-uFquSXNtvf .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uFquSXNtvf .container {
    flex-wrap: nowrap;
  }
}
.cid-uFquSXNtvf .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uFquSXNtvf .iconfont-wrapper:hover {
  color: #cbff5b !important;
}
.cid-uFquSXNtvf .dropdown-menu,
.cid-uFquSXNtvf .navbar.opened {
  background: #9fdbf8 !important;
}
.cid-uFquSXNtvf .nav-item:focus,
.cid-uFquSXNtvf .nav-link:focus {
  outline: none;
}
.cid-uFquSXNtvf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFquSXNtvf .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uFquSXNtvf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFquSXNtvf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFquSXNtvf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFquSXNtvf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFquSXNtvf .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #9fdbf8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFquSXNtvf .navbar.opened {
  transition: all 0.3s;
}
.cid-uFquSXNtvf .navbar .dropdown-item {
  padding: 0.5rem 3.2rem 0.5rem 1.8rem;
  border-radius: 0.6rem;
}
.cid-uFquSXNtvf .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uFquSXNtvf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFquSXNtvf .navbar.collapsed {
  justify-content: center;
}
.cid-uFquSXNtvf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFquSXNtvf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFquSXNtvf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uFquSXNtvf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFquSXNtvf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFquSXNtvf .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-uFquSXNtvf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFquSXNtvf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFquSXNtvf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFquSXNtvf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFquSXNtvf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFquSXNtvf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFquSXNtvf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFquSXNtvf .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-uFquSXNtvf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFquSXNtvf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFquSXNtvf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFquSXNtvf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uFquSXNtvf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFquSXNtvf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFquSXNtvf .navbar.navbar-short {
  min-height: 96px;
}
.cid-uFquSXNtvf .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uFquSXNtvf .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uFquSXNtvf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uFquSXNtvf .navbar-brand .navbar-caption:hover,
.cid-uFquSXNtvf .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFquSXNtvf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFquSXNtvf .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uFquSXNtvf .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #cbff5b !important;
}
.cid-uFquSXNtvf .dropdown-item.active,
.cid-uFquSXNtvf .dropdown-item:active {
  background-color: transparent;
}
.cid-uFquSXNtvf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFquSXNtvf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFquSXNtvf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFquSXNtvf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9fdbf8;
  top: 3rem;
  border-radius: 0.6rem;
}
@media (max-width: 992px) {
  .cid-uFquSXNtvf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uFquSXNtvf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uFquSXNtvf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFquSXNtvf ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uFquSXNtvf ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uFquSXNtvf .navbar-buttons {
  text-align: center;
}
.cid-uFquSXNtvf .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 11px 32px;
  min-height: auto;
}
.cid-uFquSXNtvf .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uFquSXNtvf .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uFquSXNtvf button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #9fdbf8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uFquSXNtvf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFquSXNtvf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uFquSXNtvf button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFquSXNtvf button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uFquSXNtvf button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uFquSXNtvf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFquSXNtvf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFquSXNtvf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFquSXNtvf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFquSXNtvf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uFquSXNtvf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFquSXNtvf .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-uFquSXNtvf .navbar {
    height: 70px;
  }
  .cid-uFquSXNtvf .navbar.opened {
    height: auto;
  }
  .cid-uFquSXNtvf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFquSXNtvf .navbar-nav {
  margin: 0 auto;
}
.cid-uFquSXNtvf .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uFquSXNtvf .nav-item .nav-link {
  padding: 5px 32px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-uFquSXNtvf .nav-item .nav-link::after {
  color: #cbff5b !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uFquSXNtvf .nav-item .nav-link:hover {
  background-color: transparent;
  color: #cbff5b !important;
}
.cid-uFquSXNtvf .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uFquSXNtvf .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uFquSXNtvf .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
.cid-uFquSXNtvf .nav-item .dropdown-menu .dropdown-item {
  color: #bc2424 !important;
}
.cid-uFquSXNtvf .nav-item .dropdown-menu .dropdown-item:hover {
  color: #cbff5b !important;
}
@media (max-width: 991px) {
  .cid-uFquSXNtvf .navbar {
    justify-content: flex-start !important;
  }
  .cid-uFquSXNtvf .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uFquSXNtvf .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uFquSXNtvf .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uFquSXNtvf .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uFquSXNtvf .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uFquSXNtvf .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
  }
}
.cid-uFquSXNtvf .content-wrap {
  min-height: 110px;
}
.cid-uFquSZSjIy {
  padding-top: 12rem;
  padding-bottom: 0rem;
  position: relative;
  align-items: center;
  background-color: #151e11;
}
.cid-uFquSZSjIy .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
@media (max-width: 1440px) {
  .cid-uFquSZSjIy .image-wrap {
    padding: 16px;
  }
}
.cid-uFquSZSjIy .image-wrap img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}
.cid-uFquSZSjIy .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .cid-uFquSZSjIy .image-overlay {
    padding: 16px;
  }
}
.cid-uFquSZSjIy .image-overlay .image-over {
  background-color: #151e11;
  z-index: 2;
  opacity: 0.5;
  width: 100%;
  height: 70%;
}
.cid-uFquSZSjIy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquSZSjIy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquSZSjIy .row {
  justify-content: center;
}
.cid-uFquSZSjIy .mbr-section-title {
  position: relative;
  z-index: 2;
  margin: 160px 20px;
  color: #fff7ee;
  text-align: center;
}
@media (max-width: 1440px) {
  .cid-uFquSZSjIy .mbr-section-title {
    margin: 60px 16px;
  }
}
@media (max-width: 992px) {
  .cid-uFquSZSjIy .mbr-section-title {
    margin: 30px 16px;
  }
}
.cid-uFquSZSjIy .card-wrapper {
  padding: 90px;
  position: relative;
  z-index: 2;
  background-color: #151e11;
}
@media (max-width: 992px) {
  .cid-uFquSZSjIy .card-wrapper {
    padding: 30px 16px;
  }
}
.cid-uFquSZSjIy .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFquSZSjIy .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFquSZSjIy .mbr-text,
.cid-uFquSZSjIy .text-wrapper {
  color: #fff7ee;
  text-align: center;
}
.cid-uFquSZSjIy .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uFquSZSjIy .mbr-text,
.cid-uFquSZSjIy .mbr-section-btn {
  text-align: center;
}
.cid-uFquT19zs3 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-uFquT19zs3 .container {
    max-width: 1162px;
  }
}
@media (max-width: 768px) {
  .cid-uFquT19zs3 .top {
    margin-top: 10rem;
  }
}
.cid-uFquT19zs3 .mbr-section-title {
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
.cid-uFquT19zs3 .mbr-text {
  font-size: 24px;
  line-height: 1.3;
  color: #000000;
}
.cid-uFquT19zs3 .index {
  z-index: 3;
}
.cid-uFquT19zs3 ul {
  list-style: none;
  margin: 0;
  padding-left: 40px;
}
.cid-uFquT19zs3 li {
  margin-bottom: 47px;
  position: relative;
}
.cid-uFquT19zs3 ul li::before {
  position: relative;
  content: "\2713";
  left: -40px;
  top: -5%;
  color: #000000;
  border: 2px solid #000000;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 .5rem;
}
.cid-uFquT19zs3 .wrap {
  right: 80%;
  top: 0;
  width: 400px;
  height: 200px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-uFquT19zs3 .wrap {
    top: -10%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .cid-uFquT19zs3 .wrap {
    top: 10%;
  }
}
.cid-uFquT19zs3 .wrap .anim {
  width: 195px;
  height: 195px;
  position: relative;
  object-fit: cover;
  border-radius: 100%;
  animation: 15s linear 0s normal none infinite running rot1;
  -webkit-animation: 15s linear 0s normal none infinite running rot1;
}
@media (min-width: 992px) {
  .cid-uFquT19zs3 .wrap {
    right: 5%;
    top: -10%;
  }
}
@media (min-width: 1400px) {
  .cid-uFquT19zs3 .wrap {
    right: -5%;
    top: -5%;
  }
}
@keyframes rot1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.cid-uFquT19zs3 .mbr-section-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: #000000;
  font-size: 25px;
}
.cid-uFquT19zs3 .text {
  font-size: 30px;
  color: #cbc0ff;
  font-weight: 600;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  text-align: end;
}
.cid-uFquT19zs3 .text1 {
  bottom: -75%;
  right: 10%;
  position: absolute;
  font-size: 140px;
  color: #f4d7d7;
  font-weight: 700;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
}
.cid-uFquT19zs3 .mbr-text UL {
  text-align: left;
}
.cid-uFquT2lCFD {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #9fdbf8;
}
.cid-uFquT2lCFD .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uFquT2lCFD .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uFquT2lCFD .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uFquT2lCFD .label-text {
    text-align: center !important;
  }
}
.cid-uFquT2lCFD .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uFquT2lCFD .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uFquT2lCFD .mbr-section-title,
.cid-uFquT2lCFD .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uFquT3Dz8P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  background-image: linear-gradient(#000000 70%, #6ec7f2 110%);
}
.cid-uFquT3Dz8P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquT3Dz8P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquT3Dz8P .row {
  justify-content: center;
}
.cid-uFquT3Dz8P .card-wrapper {
  display: flex;
  background-color: #1f2329;
  justify-content: space-between;
  align-items: center;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uFquT3Dz8P .card-wrapper {
    display: block;
    padding: 16px;
  }
}
.cid-uFquT3Dz8P .card-wrapper .content-wrapper {
  width: 42%;
}
@media (max-width: 992px) {
  .cid-uFquT3Dz8P .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uFquT3Dz8P .card-wrapper .content-wrapper .tag-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFquT3Dz8P .card-wrapper .content-wrapper .tag-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uFquT3Dz8P .card-wrapper .content-wrapper .tag-wrapper .item-wrap {
  display: inline-flex;
  background-color: #222222;
  padding: 6px 10px;
}
.cid-uFquT3Dz8P .card-wrapper .content-wrapper .mbr-date {
  margin-bottom: 22px;
}
.cid-uFquT3Dz8P .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uFquT3Dz8P .card-wrapper .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uFquT3Dz8P .card-wrapper .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 12px;
}
.cid-uFquT3Dz8P .card-wrapper .content-wrapper .logo-wrapper .logo-wrap .mbr-name {
  margin-bottom: 0;
}
.cid-uFquT3Dz8P .card-wrapper .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uFquT3Dz8P .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uFquT3Dz8P .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uFquT3Dz8P .card-wrapper .image-wrapper img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFquT3Dz8P .card-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uFquT3Dz8P .item-wrap {
  color: #ffffff;
}
.cid-uFquT3Dz8P .mbr-date {
  color: #ffffff;
}
.cid-uFquT3Dz8P .mbr-section-title {
  color: #ffffff;
}
.cid-uFquT3Dz8P .mbr-name {
  color: #ffffff;
}
.cid-uFquT4Vbny {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-uFquT4Vbny .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquT4Vbny .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquT4Vbny b,
.cid-uFquT4Vbny strong {
  font-weight: 900;
}
.cid-uFquT4Vbny .mbr-section-title {
  color: #17003b;
}
.cid-uFquT4Vbny .mbr-section-subtitle {
  color: #17003b;
}
.cid-uFquT6oz0V {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #1b1818;
}
.cid-uFquT6oz0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquT6oz0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1400px) {
  .cid-uFquT6oz0V .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-uFquT6oz0V P {
  max-width: 1200px;
}
.cid-uFquT6oz0V .mbr-section-btn,
.cid-uFquT6oz0V .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uFquT6oz0V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFquT6oz0V .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uFquT6oz0V .image-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uFquT6oz0V .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uFquT6oz0V .mbr-section-title {
  color: #ffffff;
}
.cid-uFquT6oz0V .mbr-text,
.cid-uFquT6oz0V .mbr-section-btn {
  color: #ffffff;
}
.cid-uFquT6oz0V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFquT7QLGg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uFquT7QLGg .row {
  justify-content: center;
}
.cid-uFquT7QLGg img,
.cid-uFquT7QLGg .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uFquT7QLGg .item:focus,
.cid-uFquT7QLGg span:focus {
  outline: none;
}
.cid-uFquT7QLGg .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uFquT7QLGg .col-items {
    flex-wrap: wrap;
  }
}
.cid-uFquT7QLGg .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-uFquT7QLGg .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uFquT7QLGg .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-uFquT7QLGg .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  overflow: hidden;
  transition: 1s all;
  min-height: 463px;
}
.cid-uFquT7QLGg .item-wrapper .btn {
  padding: 10px 12px;
  min-width: 62px;
}
.cid-uFquT7QLGg .item-wrapper .btn span {
  color: #ffffff;
  margin-right: 8px;
}
.cid-uFquT7QLGg .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-uFquT7QLGg .item-wrapper .btn-primary:hover span {
  color: #bc2424 !important;
}
.cid-uFquT7QLGg .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
@media (min-width: 768px) {
  .cid-uFquT7QLGg .item-wrapper:hover .item-content {
    bottom: 0;
  }
  .cid-uFquT7QLGg .item-wrapper:hover .item-img img {
    transform: scale(1.2) translateY(-8%);
  }
}
.cid-uFquT7QLGg .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-uFquT7QLGg .item-img img {
  width: 100%;
  transform-style: preserve-3d;
  transition: 1.5s;
}
@media (min-width: 768px) {
  .cid-uFquT7QLGg .item-img img {
    transform: scale(1.2) translateY(8%);
  }
}
.cid-uFquT7QLGg .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  pointer-events: none;
}
.cid-uFquT7QLGg .item-content {
  position: relative;
  bottom: -100%;
  z-index: 3;
  width: 100%;
  padding: 35px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .cid-uFquT7QLGg .item-content {
    bottom: 0;
    text-align: center;
  }
}
.cid-uFquT7QLGg .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-uFquT7QLGg .label-text {
    text-align: center !important;
  }
}
.cid-uFquT7QLGg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFquT7QLGg .mbr-text {
  color: #ffffff;
}
.cid-uFquT7QLGg .item-title {
  color: #ffffff;
}
.cid-uFquT7QLGg .item-subtitle {
  color: #ffffff;
}
.cid-uFquT7QLGg .icon-wrapper {
  margin-bottom: 1rem;
}
.cid-uFquT7QLGg .icon-wrapper .mbr-iconfont {
  font-size: 33px;
  color: #ffffff;
}
.cid-uFquT7QLGg .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uFquT7QLGg .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uFquT7QLGg .mbr-section-head {
    text-align: center !important;
  }
}
.cid-uFquT7QLGg .mbr-section-subtitle {
  text-align: center;
}
.cid-uFquT9m2Ds {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #2c2625;
}
.cid-uFquT9m2Ds .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquT9m2Ds .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquT9m2Ds .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFquT9m2Ds .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFquT9m2Ds .content-wrapper {
    padding: 0;
  }
}
.cid-uFquT9m2Ds .content-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #9fdbf8;
  padding: 108px;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 0 #ffffff;
}
@media (max-width: 1440px) {
  .cid-uFquT9m2Ds .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFquT9m2Ds .content-wrapper .card-wrapper {
    padding: 20px;
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uFquT9m2Ds .content-wrapper .card-wrapper {
    box-shadow: -5px 5px 0 0 #ffffff;
  }
}
.cid-uFquT9m2Ds .content-wrapper .card-wrapper .card-wrap {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uFquT9m2Ds .content-wrapper .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uFquT9m2Ds .content-wrapper .card-wrapper .card-wrap .tag-wrapper {
  margin-bottom: 20px;
}
.cid-uFquT9m2Ds .content-wrapper .card-wrapper .card-wrap .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #2c2625;
}
.cid-uFquT9m2Ds .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uFquT9m2Ds .content-wrapper .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFquT9m2Ds .content-wrapper .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 32px;
}
.cid-uFquT9m2Ds .content-wrapper .card-wrapper .image-wrapper {
  position: relative;
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uFquT9m2Ds .content-wrapper .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uFquT9m2Ds .content-wrapper .card-wrapper .image-wrapper .image-wrap-main img {
  object-fit: cover;
  height: 570px;
  border: 2px solid #2c2625;
  box-shadow: -10px 10px 0 0 #2c2625;
}
@media (max-width: 992px) {
  .cid-uFquT9m2Ds .content-wrapper .card-wrapper .image-wrapper .image-wrap-main img {
    box-shadow: -5px 5px 0 0 #2c2625;
    height: 350px;
  }
}
.cid-uFquT9m2Ds .content-wrapper .card-wrapper .image-wrapper .image-wrap {
  position: absolute;
  top: 30%;
  left: -10%;
}
.cid-uFquT9m2Ds .content-wrapper .card-wrapper .image-wrapper .image-wrap img {
  height: 220px;
  width: 220px;
  display: inline-block;
  border-radius: 100% !important;
  object-fit: cover;
  border: 16px solid #9fdbf8;
  box-shadow: -16px 16px 0 #2c2625;
}
.cid-uFquT9m2Ds .mbr-tag {
  color: #2C2625;
}
.cid-uFquT9m2Ds .mbr-section-title {
  color: #2C2625;
}
.cid-uFquT9m2Ds .mbr-text {
  color: #2C2625;
}
.cid-uFquTaNhXT {
  padding-top: 6rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #ebd00c;
}
.cid-uFquTaNhXT .container-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  background-color: #000000;
  pointer-events: none;
}
.cid-uFquTaNhXT .container-bg .shadow-wrap {
  background-image: linear-gradient(#22a5e5 0, transparent 100%);
  height: 40px;
  width: 100%;
  pointer-events: none;
}
.cid-uFquTaNhXT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquTaNhXT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquTaNhXT .row {
  justify-content: center;
}
.cid-uFquTaNhXT .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uFquTaNhXT .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uFquTaNhXT .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uFquTaNhXT .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uFquTaNhXT .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uFquTaNhXT .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uFquTaNhXT .mbr-section-title {
  color: #000000;
}
.cid-uFquTaNhXT .mbr-text,
.cid-uFquTaNhXT .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uFquTaNhXT .mbr-section-title,
.cid-uFquTaNhXT .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uFquTc1NAa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFquTc1NAa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquTc1NAa .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-uFquTc1NAa .container {
    padding: 0 16px;
  }
}
.cid-uFquTc1NAa .card {
  justify-content: center;
}
.cid-uFquTc1NAa .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #9fdbf8;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uFquTc1NAa .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFquTc1NAa .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uFquTc1NAa .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uFquTc1NAa .mbr-section-title {
  color: #000000;
}
.cid-uFquTc1NAa .mbr-text {
  color: #000000;
}
.cid-uFquTc1NAa .mbr-desc {
  color: #000000;
}
.cid-uFuI6yEmCB {
  background-color: #000000;
  padding-top: 7rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-uFuI6yEmCB .row {
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (min-width: 992px) {
  .cid-uFuI6yEmCB .content-wrapper {
    max-width: 600px;
    height: 560px;
    background-color: transparent;
    background-image: url("../../../assets/images/dots1.svg");
    background-repeat: repeat;
    background-size: 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uFuI6yEmCB .wrapper {
    padding-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .cid-uFuI6yEmCB .wrapper {
    padding: 0 28px;
  }
}
.cid-uFuI6yEmCB .text {
  position: relative;
}
.cid-uFuI6yEmCB .card-header {
  padding: 15px 0 !important;
  border-bottom: none;
  margin-bottom: 0px !important;
  background-color: transparent;
  border-top: 1px solid rgba(61, 61, 61, 0.3);
}
@media (min-width: 768px) {
  .cid-uFuI6yEmCB .card-header {
    padding: 15px 0 15px 0 !important;
  }
}
.cid-uFuI6yEmCB .panel-body {
  padding-bottom: 60px;
  display: flex;
  align-items: flex-end;
}
.cid-uFuI6yEmCB span {
  transform: rotate(45deg);
  transition: all 0.5s;
  font-size: 20px;
}
.cid-uFuI6yEmCB .collapsed span {
  transform: rotate(0deg);
}
@media (min-width: 992px) {
  .cid-uFuI6yEmCB .content-block {
    padding-left: 60px;
  }
}
.cid-uFuI6yEmCB .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uFuI6yEmCB .panel-group {
  width: 100%;
}
.cid-uFuI6yEmCB .sign {
  font-family: 'Moririse2' !important;
}
.cid-uFuI6yEmCB .card {
  border-radius: 0px;
}
.cid-uFuI6yEmCB .card .card-header {
  border-radius: 0px;
  padding: 0;
}
.cid-uFuI6yEmCB .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uFuI6yEmCB .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uFuI6yEmCB .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-uFuI6yEmCB .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.cid-uFuI6yEmCB .link-title {
  border-bottom: 1px solid rgba(61, 61, 61, 0.3);
  padding-bottom: 33px;
}
.cid-uFuI6yEmCB .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-uFuI6yEmCB .mbr-text {
  margin-bottom: 84px;
}
.cid-uFuI6yEmCB .header-text,
.cid-uFuI6yEmCB .sign {
  color: #47b5ed;
}
.cid-uFuI6yEmCB .panel-text {
  color: #fcc015;
  text-align: left;
}
.cid-uFuI6yEmCB .title {
  color: #ffffff;
}
.cid-uFquTdkEz3 {
  background-color: #9fdbf8;
}
.cid-uFquTdkEz3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquTdkEz3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquTdkEz3 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .container {
    padding: 0 16px;
  }
}
.cid-uFquTdkEz3 .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .row {
    margin: 0 10px;
  }
}
.cid-uFquTdkEz3 .row .item {
  padding: 0;
}
.cid-uFquTdkEz3 .row .item:first-child {
  padding-right: 10px;
  padding-right: 0;
  padding-left: 10px;
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .row .item:first-child {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .row .item:first-child {
    padding: 0;
  }
}
.cid-uFquTdkEz3 .content-wrapper {
  height: 100%;
  border-radius: 20px;
  background-color: #9fdbf8;
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .content-wrapper {
    margin-bottom: 20px;
    height: auto;
  }
}
.cid-uFquTdkEz3 .content-wrapper .title-wrapper {
  padding: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .content-wrapper .title-wrapper {
    padding: 20px 10px;
    margin-bottom: 20px;
  }
}
.cid-uFquTdkEz3 .content-wrapper .title-wrapper .icon-wrapper {
  margin-bottom: 25px;
}
.cid-uFquTdkEz3 .content-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 30px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #192227;
  background-color: #f9a600;
  border-radius: 50%;
}
.cid-uFquTdkEz3 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uFquTdkEz3 .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card {
  border-top: 1px solid #9fdbf8;
  border-radius: 0 !important;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card:nth-child(2) .panel-collapse .panel-body .panel-title span {
  color: #ade988;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card:nth-child(2) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #ade988;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card:nth-child(3) .panel-collapse .panel-body .panel-title span {
  color: #2c8ac0;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card:nth-child(3) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #2c8ac0;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card:nth-child(4) .panel-collapse .panel-body .panel-title span {
  color: #f06246;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card:nth-child(4) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #f06246;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card:nth-child(5) .panel-collapse .panel-body .panel-title span {
  color: #b08ce1;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card:nth-child(5) .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  color: #b08ce1;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .card-header {
  padding: 10px 30px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .content-wrapper .panel-group .card .card-header {
    padding: 10px;
  }
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  opacity: 1;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .card-header .panel-title.collapsed .mbr-panel-title {
  color: #9fdbf8;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: block;
  font-size: 30px;
  color: #9fdbf8;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 40px 30px;
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title {
    margin-top: 20px;
  }
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-title span {
  color: #f9a600;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper {
    margin-top: 20px;
  }
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap {
  display: inline-flex;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap .panel-desc {
  margin-bottom: 0;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body .desc-wrapper .desc-wrap .mbr-iconfont {
  font-size: 24px;
  color: #f9a600;
  margin-left: 12px;
}
.cid-uFquTdkEz3 .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uFquTdkEz3 .image-wrapper {
  height: 100%;
}
.cid-uFquTdkEz3 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFquTdkEz3 .image-wrapper img {
    height: 350px;
  }
}
.cid-uFquTdkEz3 .mbr-section-title {
  color: #fdfcfc;
}
.cid-uFquTdkEz3 .mbr-text {
  color: #F9A600;
}
.cid-uFquTdkEz3 .panel-title-edit {
  color: #000000;
}
.cid-uFquTdkEz3 .panel-title {
  color: #fdfcfc;
}
.cid-uFquTdkEz3 .panel-desc {
  color: #4a5357;
}
.cid-uFquTdkEz3 .panel-text {
  color: #fdfcfc;
}
.cid-uFquTdkEz3 .mbr-section-title,
.cid-uFquTdkEz3 .icon-wrapper {
  color: #000000;
}
.cid-uFquTfbOSL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uFquTfbOSL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquTfbOSL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquTfbOSL .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uFquTfbOSL .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uFquTfbOSL .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uFquTfbOSL .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uFquTfbOSL .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uFquTfbOSL .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uFquTfbOSL .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFquTfbOSL .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFquTfbOSL .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFquTfbOSL .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uFquTfbOSL .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uFquTfbOSL .mbr-section-title,
.cid-uFquTfbOSL .mbr-section-btn {
  color: #000000;
}
.cid-uFqSxl7vwX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFqSxl7vwX .title-text {
  margin-bottom: 70px;
}
.cid-uFqSxl7vwX .title-text .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uFqSxl7vwX .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uFqSxl7vwX .title-text .mbr-section-title {
  color: #130947;
}
.cid-uFqSxl7vwX .title-text .mbr-section-title span {
  font-weight: 900;
}
.cid-uFqSxl7vwX .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uFqSxl7vwX .mbr-iconfont {
  font-family: 'Moririse2' !important;
  display: inline-flex;
  -webkit-transform-origin: ;
  transform-origin: ;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #222222;
}
.cid-uFqSxl7vwX .mbr-iconfont:before {
  -webkit-transform: scaleY(0) !important;
  transform: scaleY(0) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqSxl7vwX .collapsed .mbr-iconfont {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cid-uFqSxl7vwX .collapsed .mbr-iconfont:before {
  -webkit-transform: scaleY(1) !important;
  transform: scaleY(1) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqSxl7vwX .accordion-content {
  flex-basis: 100%;
}
.cid-uFqSxl7vwX .panel-group {
  width: 100%;
}
.cid-uFqSxl7vwX .panel-text,
.cid-uFqSxl7vwX .header-text,
.cid-uFqSxl7vwX .mbr-section-subtitle {
  color: #222222;
}
.cid-uFqSxl7vwX .card {
  margin-bottom: 30px;
  margin-top: 30px;
  border: none;
  border-radius: 0 !important;
}
.cid-uFqSxl7vwX .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title {
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #6ec7f2;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none !important;
  border-radius: 0 !important;
  line-height: normal;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title h4 {
  padding: 17px 42px 17px 35px;
  margin-bottom: 0;
  width: 100%;
  line-height: 1.5;
  font-weight: 400 !important;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  line-height: 1.6 !important;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 29px;
  -webkit-transform: none;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title .toggle-icon:before,
.cid-uFqSxl7vwX .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  -webkit-transform: none;
  transform: none;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title[aria-expanded='true'] {
  background-color: #e2e2e2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqSxl7vwX .card .card-header a.panel-title[aria-expanded='true'] .header-text,
.cid-uFqSxl7vwX .card .card-header a.panel-title[aria-expanded='true'] .sign {
  color: #000000 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uFqSxl7vwX .card .panel-body {
  background: #ffffff;
  padding: 30px 55px 35px 40px !important;
}
.cid-uFqSxl7vwX .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-uFqSxl7vwX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqSxl7vwX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqSxl7vwX .title-text .mbr-section-title {
  color: #050f0f;
}
.cid-uFqSxl7vwX .header-text {
  color: #000000;
}
.cid-uFquTgyxnM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #9fdbf8;
}
.cid-uFquTgyxnM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquTgyxnM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFquTgyxnM .content-wrapper {
  position: relative;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFquTgyxnM .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFquTgyxnM .content-wrapper {
    padding: 0;
  }
}
.cid-uFquTgyxnM .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFquTgyxnM .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFquTgyxnM .content-wrapper .google-map iframe {
  height: 700px;
  border: 2px solid #ffffff !important;
  box-shadow: -10px 10px 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uFquTgyxnM .content-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uFquTgyxnM .content-wrapper .google-map iframe {
    box-shadow: -5px 5px 0 #ffffff;
  }
}
.cid-uFquTgyxnM .mbr-section-title {
  color: #ffffff;
}
.cid-uFquTgyxnM .mbr-section-title,
.cid-uFquTgyxnM .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uFquTi7o3y {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uFquTi7o3y .footer-item {
  padding: 30px;
}
.cid-uFquTi7o3y .mbr-section-subtitle,
.cid-uFquTi7o3y .address-text {
  margin-bottom: 1.5rem;
}
.cid-uFquTi7o3y .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uFquTi7o3y .social-row {
    padding-top: 1.5rem;
  }
}
.cid-uFquTi7o3y .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFquTi7o3y .row {
    text-align: center;
  }
  .cid-uFquTi7o3y .social-row {
    justify-content: center;
  }
}
.cid-uFquTi7o3y .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uFquTi7o3y .footer-content {
    flex-wrap: wrap;
  }
}
.cid-uFquTi7o3y .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-uFquTi7o3y .mbr-text {
  color: #ffffff;
}
.cid-uFquTi7o3y .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #222222;
}
.cid-uFquTi7o3y .list a {
  color: #ffffff;
}
.cid-uFquTi7o3y .list a:hover {
  background-image: none !important;
  color: #bc2424 !important;
}
.cid-uFquTi7o3y .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-uFquTi7o3y .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-uFquTi7o3y .mbr-iconfont {
  color: #ffffff;
}
.cid-uFquTi7o3y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFquTi7o3y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
