body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #0616c2 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0616c2 !important;
  border-color: #0616c2 !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: #030c6e !important;
  border-color: #030c6e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #030c6e !important;
  border-color: #030c6e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0616c2;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #030c6e !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: #0616c2 !important;
  border-color: #0616c2 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0616c2 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #030b5f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0616c2;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #000000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0616c2;
  border-color: #0616c2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0616c2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4e5dfa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #0616c2 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #0616c2;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0616c2;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0616c2;
}
.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: #0616c2;
  border-bottom-color: #0616c2;
}
.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: #0616c2 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230616c2' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-upAgS4lPuK {
  z-index: 1000;
  width: 100%;
}
.cid-upAgS4lPuK nav.navbar {
  position: fixed;
}
.cid-upAgS4lPuK .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-upAgS4lPuK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1e21 !important;
}
.cid-upAgS4lPuK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upAgS4lPuK .dropdown-item:hover,
.cid-upAgS4lPuK .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-upAgS4lPuK .dropdown-item:hover span {
  color: white;
}
.cid-upAgS4lPuK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upAgS4lPuK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upAgS4lPuK .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upAgS4lPuK .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upAgS4lPuK .nav-link {
  position: relative;
}
.cid-upAgS4lPuK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-upAgS4lPuK .container {
    flex-wrap: nowrap;
  }
}
.cid-upAgS4lPuK .nav-item:focus,
.cid-upAgS4lPuK .nav-link:focus {
  outline: none;
}
.cid-upAgS4lPuK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upAgS4lPuK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upAgS4lPuK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upAgS4lPuK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upAgS4lPuK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upAgS4lPuK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upAgS4lPuK .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 10px 20px !important;
  border: none !important;
}
.cid-upAgS4lPuK .navbar.opened {
  transition: all 0.3s;
}
.cid-upAgS4lPuK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upAgS4lPuK .navbar .navbar-logo img {
  width: auto;
}
.cid-upAgS4lPuK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upAgS4lPuK .navbar.collapsed {
  justify-content: center;
}
.cid-upAgS4lPuK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upAgS4lPuK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upAgS4lPuK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-upAgS4lPuK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upAgS4lPuK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upAgS4lPuK .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-upAgS4lPuK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upAgS4lPuK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upAgS4lPuK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upAgS4lPuK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upAgS4lPuK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upAgS4lPuK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upAgS4lPuK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upAgS4lPuK .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-upAgS4lPuK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upAgS4lPuK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upAgS4lPuK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upAgS4lPuK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upAgS4lPuK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upAgS4lPuK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upAgS4lPuK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upAgS4lPuK .navbar-brand {
  min-height: 46px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
}
.cid-upAgS4lPuK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-upAgS4lPuK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upAgS4lPuK .navbar-brand .navbar-logo {
  position: relative;
  margin-right: 0.6rem !important;
  padding-right: 0.6rem !important;
}
.cid-upAgS4lPuK .navbar-brand .navbar-logo:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  opacity: 0.8;
  background-color: #e3ebf3;
}
.cid-upAgS4lPuK .dropdown-item.active,
.cid-upAgS4lPuK .dropdown-item:active {
  background-color: transparent;
}
.cid-upAgS4lPuK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upAgS4lPuK .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upAgS4lPuK .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upAgS4lPuK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1e21;
}
.cid-upAgS4lPuK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upAgS4lPuK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upAgS4lPuK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upAgS4lPuK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upAgS4lPuK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upAgS4lPuK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e3ebf3;
}
.cid-upAgS4lPuK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upAgS4lPuK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upAgS4lPuK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upAgS4lPuK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upAgS4lPuK .navbar-toggler-close {
  position: absolute!important;
  right: 90px!important;
  top: 90px!important;
  height: 32px!important;
  width: 32px!important;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .cid-upAgS4lPuK .navbar-toggler-close {
    top: 50px!important;
    right: 50px!important;
    height: 26px!important;
    width: 26px!important;
  }
}
@media (max-width: 767px) {
  .cid-upAgS4lPuK .navbar-toggler-close {
    top: 50px!important;
    right: 20px!important;
    height: 16px!important;
    width: 16px!important;
  }
}
.cid-upAgS4lPuK .navbar-toggler-close span {
  width: 100% !important;
  height: 2px!important;
  top: 50%!important;
}
.cid-upAgS4lPuK .navbar-toggler-close span:nth-child(1) {
  display: none;
}
.cid-upAgS4lPuK .navbar-toggler-close span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
}
.cid-upAgS4lPuK .navbar-toggler-close span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.cid-upAgS4lPuK .navbar-toggler-close span:nth-child(4) {
  display: none;
}
.cid-upAgS4lPuK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upAgS4lPuK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upAgS4lPuK .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-upAgS4lPuK .navbar {
    height: 70px;
  }
  .cid-upAgS4lPuK .navbar.opened {
    height: auto;
  }
  .cid-upAgS4lPuK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upAgS4lPuK .container-fluid {
  padding: 5px 32px !important;
  border-radius: 100px;
  column-gap: 12px;
  background: #1a1e21;
}
.cid-upAgS4lPuK .navbar-collapse {
  margin-left: auto;
}
.cid-upAgS4lPuK .navbar-nav {
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.cid-upAgS4lPuK .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-upAgS4lPuK .navbar-nav .nav-link {
  margin: 0 !important;
  border-radius: 90px;
  padding: 10px 15px !important;
  transition: all .4s;
}
.cid-upAgS4lPuK .mbr-section-btn .btn {
  position: relative;
  min-width: 160px;
  min-height: 46px;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  transition: all .3s;
}
@media (max-width: 991px) {
  .cid-upAgS4lPuK .navbar {
    padding: 0 !important;
  }
  .cid-upAgS4lPuK .container-fluid {
    padding: 5px 20px !important;
    border-radius: 0;
    flex-wrap: nowrap;
  }
  .cid-upAgS4lPuK .navbar-brand {
    max-width: 50%;
    padding-right: 0 !important;
  }
  .cid-upAgS4lPuK .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 100vw;
    max-height: 100vh !important;
    height: 100vh !important;
    margin-left: 0;
    padding: 50px;
    background-image: url("../../../assets/images/background1.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .cid-upAgS4lPuK .navbar-collapse.show {
    opacity: 1;
  }
  .cid-upAgS4lPuK .navbar-nav {
    justify-content: flex-start;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .cid-upAgS4lPuK .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-upAgS4lPuK .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: calc(6vh * 0.38) !important;
    border-radius: 0;
    font-size: 6vh !important;
    line-height: 1 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-upAgS4lPuK .container-fluid {
    padding: 5px 12px !important;
    column-gap: 6px;
  }
  .cid-upAgS4lPuK .navbar-collapse {
    padding: 50px 20px;
  }
  .cid-upAgS4lPuK .navbar-nav .nav-item .nav-link {
    margin-bottom: 12px !important;
    font-size: 32px !important;
  }
  .cid-upAgS4lPuK .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 46px;
    padding: 10px;
  }
}
.cid-upAhEYfFbY {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-color: #1b1818;
  overflow: hidden;
}
.cid-upAhEYfFbY .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAhEYfFbY .container-fluid,
.cid-upAhEYfFbY .container {
  margin-top: -400px;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-upAhEYfFbY .container-fluid,
  .cid-upAhEYfFbY .container {
    padding: 0 1.5rem;
  }
}
.cid-upAhEYfFbY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAhEYfFbY a {
  font-weight: bold;
}
.cid-upAhEYfFbY .image-wrapper {
  transform: translateY(400px);
  padding: 0 2rem;
}
.cid-upAhEYfFbY .image-wrapper img {
  border-radius: 4rem !important;
  height: 800px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-upAhEYfFbY .image-wrapper img {
    height: 400px;
    border-radius: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-upAhEYfFbY .image-wrapper {
    padding: 0;
    transform: translateY(320px);
  }
}
.cid-upAhEYfFbY .row {
  justify-content: space-between;
  background: linear-gradient(to top, #0616c2, #ff6666);
  border-radius: 4rem;
  padding: 2rem;
  padding-top: 450px !important;
}
@media (min-width: 992px) {
  .cid-upAhEYfFbY .row {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-upAhEYfFbY .row {
    padding: 1.5rem 0rem;
    border-radius: 2rem;
    padding-top: 330px !important;
  }
}
@media (max-width: 1400px) {
  .cid-upAhEYfFbY .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-upAhEYfFbY .mbr-section-btn,
.cid-upAhEYfFbY .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-upAhEYfFbY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upAhEYfFbY .mbr-section-title {
  color: #fafafa;
}
.cid-upAhEYfFbY .mbr-text,
.cid-upAhEYfFbY .mbr-section-btn {
  color: #fafafa;
}
.cid-upAhEYfFbY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upAhEYfFbY .mbr-section-subtitle2 {
  color: #ffffff;
}
.cid-upARZ3714H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upARZ3714H .mbr-fallback-image.disabled {
  display: none;
}
.cid-upARZ3714H .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-upARZ3714H .container {
    padding: 0 30px;
  }
}
.cid-upARZ3714H .row {
  justify-content: center;
}
.cid-upARZ3714H .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upARZ3714H .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upARZ3714H .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upARZ3714H .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-upARZ3714H .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-upARZ3714H .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-upARZ3714H .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upARZ3714H .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #000000;
}
.cid-upARZ3714H .mbr-section-title {
  color: #000000;
}
.cid-upARZ3714H .mbr-text {
  color: #144031;
}
.cid-upAihnnL54 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-upAihnnL54 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upAihnnL54 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAihnnL54 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAihnnL54 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upAihnnL54 .content-wrap .card {
  justify-content: space-between;
}
.cid-upAihnnL54 .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upAihnnL54 .content-wrapper {
    padding: 0;
  }
}
.cid-upAihnnL54 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upAihnnL54 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-upAihnnL54 .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upAihnnL54 .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upAihnnL54 .mbr-desc,
.cid-upAihnnL54 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upAihnnL54 .mbr-section-title,
.cid-upAihnnL54 .mbr-section-btn {
  color: #000000;
}
.cid-upAGtLcEOY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffe161;
}
.cid-upAGtLcEOY .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upAGtLcEOY .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAGtLcEOY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAGtLcEOY .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upAGtLcEOY .content-wrap .card {
  justify-content: space-between;
}
.cid-upAGtLcEOY .content-wrapper {
  padding: 0 28px 0 120px;
}
@media (max-width: 1640px) {
  .cid-upAGtLcEOY .content-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAGtLcEOY .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-upAGtLcEOY .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upAGtLcEOY .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-upAGtLcEOY .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upAGtLcEOY .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-upAGtLcEOY .image-wrap {
  padding: 0 120px 0 28px;
}
@media (max-width: 1640px) {
  .cid-upAGtLcEOY .image-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAGtLcEOY .image-wrap {
    padding: 0;
  }
}
.cid-upAGtLcEOY .image-wrap img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upAGtLcEOY .image-wrap img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-upAGtLcEOY .mbr-section-title {
  color: #150764;
}
.cid-upAGtLcEOY .mbr-text {
  color: #000000;
}
.cid-upAGtLcEOY .mbr-section-title,
.cid-upAGtLcEOY .mbr-section-btn {
  color: #000000;
}
.cid-upAiotcool {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-upAiotcool .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upAiotcool .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAiotcool .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAiotcool .content-wrap {
  margin: 0;
}
.cid-upAiotcool .content-wrap .card {
  padding: 0;
}
.cid-upAiotcool .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #ffe161;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upAiotcool .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upAiotcool .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upAiotcool .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upAiotcool .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upAiotcool .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upAiotcool .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upAiotcool .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAiotcool .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upAiotcool .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upAiotcool .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upAiotcool .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upAiotcool .mbr-section-title {
  color: #150764;
}
.cid-upAiotcool .mbr-text {
  color: #150764;
}
.cid-upAiotcool .mbr-section-title,
.cid-upAiotcool .mbr-section-btn {
  color: #000000;
}
.cid-upAiotcool .mbr-text,
.cid-upAiotcool .text-wrap {
  color: #000000;
}
.cid-upAGYqvn43 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upAGYqvn43 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAGYqvn43 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAGYqvn43 .row {
  justify-content: center;
}
.cid-upAGYqvn43 .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upAGYqvn43 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upAGYqvn43 .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upAGYqvn43 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upAGYqvn43 .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upAGYqvn43 .item {
    margin-bottom: 35px;
  }
}
.cid-upAGYqvn43 .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upAGYqvn43 .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upAGYqvn43 .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-upAGYqvn43 .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upAGYqvn43 .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upAGYqvn43 .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-upAGYqvn43 .mbr-section-title {
  color: #000000;
}
.cid-upAGYqvn43 .mbr-text {
  color: #000000;
}
.cid-upAGYqvn43 .item-title {
  color: #000000;
}
.cid-upAGYqvn43 .item-text {
  color: #000000;
}
.cid-upAIQnv57F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upAJtO4DWG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upAJtO4DWG .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAJtO4DWG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAJtO4DWG .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-upAJtO4DWG .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-upAJtO4DWG .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upAJtO4DWG .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upAJtO4DWG .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upAJtO4DWG .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upAJtO4DWG .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upAJtO4DWG .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-upAJtO4DWG .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-upAJtO4DWG .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-upAJtO4DWG .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-upAJtO4DWG .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-upAJtO4DWG .mbr-section-title {
  color: #050f0f;
}
.cid-upAJtO4DWG .mbr-text {
  color: #050f0f;
}
.cid-upAKQ3Aq9t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upAKQ3Aq9t .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAKQ3Aq9t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAKQ3Aq9t .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-upAKQ3Aq9t .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-upAKQ3Aq9t .container {
    padding: 0 26px;
  }
}
.cid-upAKQ3Aq9t .row {
  justify-content: center;
}
.cid-upAKQ3Aq9t .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #ffe161;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-upAKQ3Aq9t .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-upAKQ3Aq9t .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-upAKQ3Aq9t .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-upAKQ3Aq9t .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-upAKQ3Aq9t .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-upAKQ3Aq9t .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-upAKQ3Aq9t .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upAKQ3Aq9t .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-upAKQ3Aq9t .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-upAKQ3Aq9t .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-upAKQ3Aq9t .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-upAKQ3Aq9t .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-upAKQ3Aq9t .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-upAKQ3Aq9t .mbr-section-title {
  color: #000000;
}
.cid-upAKQ3Aq9t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upAKQ3Aq9t .mbr-desc {
  color: #ffffff;
}
.cid-upAKQ3Aq9t .mbr-text {
  color: #000000;
}
.cid-upAKQ3Aq9t .mbr-link {
  color: #ffffff;
}
.cid-upAP9f6j3M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upAP9f6j3M .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAP9f6j3M .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-upAP9f6j3M .container {
    padding: 0 30px;
  }
}
.cid-upAP9f6j3M .row {
  justify-content: center;
}
.cid-upAP9f6j3M .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upAP9f6j3M .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upAP9f6j3M .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-upAP9f6j3M .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-upAP9f6j3M .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upAP9f6j3M .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-upAP9f6j3M .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-upAN18eCRf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upAN18eCRf .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAN18eCRf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAN18eCRf .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upAN18eCRf .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upAN18eCRf .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upAN18eCRf .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upAN18eCRf .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upAN18eCRf .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #ffe161;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper:hover,
.cid-upAN18eCRf .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upAN18eCRf .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upAN18eCRf .item-title {
  color: #050f0f;
}
.cid-upAN18eCRf .item-text {
  color: #050f0f;
}
.cid-upAN18eCRf .list {
  color: #050f0f;
}
.cid-upAKUzuLU2 {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffe161;
}
.cid-upAKUzuLU2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAKUzuLU2 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-upAKUzuLU2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAKUzuLU2 h1 {
  max-width: 800px;
}
.cid-upAKUzuLU2 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-upAKUzuLU2 .btn:hover {
  transform: scale(1.1);
  background: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #0616c2 !important;
}
.cid-upAKUzuLU2 .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-upAKUzuLU2 .btn div {
  overflow: hidden;
}
.cid-upAKUzuLU2 .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-upAKUzuLU2 {
    align-items: center;
  }
  .cid-upAKUzuLU2 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-upAKUzuLU2 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-upAKUzuLU2 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-upAKUzuLU2 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-upAKUzuLU2 .content-wrap {
    width: 100%;
  }
}
.cid-upAKUzuLU2 .mbr-section-subtitle,
.cid-upAKUzuLU2 .line {
  color: #291f1e;
}
.cid-upAKUzuLU2 .mbr-text,
.cid-upAKUzuLU2 .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-upAKUzuLU2 .mbr-section-title {
  color: #291f1e;
}
.cid-upALH4eW69 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-upALH4eW69 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upALH4eW69 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upALH4eW69 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upALH4eW69 .content-wrap {
  justify-content: center;
}
.cid-upALH4eW69 .card-wrapper {
  background-color: #ffe161;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upALH4eW69 .card-wrapper {
    display: block;
  }
}
.cid-upALH4eW69 .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upALH4eW69 .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upALH4eW69 .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upALH4eW69 .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upALH4eW69 .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upALH4eW69 .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #4188ff;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upALH4eW69 .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upALH4eW69 .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upALH4eW69 .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #bbbbbb;
}
@media (max-width: 1940px) {
  .cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #4188ff;
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upALH4eW69 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upALH4eW69 .mbr-section-title {
  color: #000000;
}
.cid-upALH4eW69 .panel-title-edit {
  color: #150764;
}
.cid-upALH4eW69 .panel-text {
  color: #150764;
}
.cid-upALH4eW69 .panel-title-edit,
.cid-upALH4eW69 .icon-wrapper {
  color: #000000;
}
.cid-upAKZfWWXZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
  position: relative;
  overflow: hidden;
}
.cid-upAKZfWWXZ::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #fafafa -10%, transparent 70%);
}
.cid-upAKZfWWXZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAKZfWWXZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-upAKZfWWXZ .container {
    padding: 0 16px;
  }
}
.cid-upAKZfWWXZ .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-upAKZfWWXZ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-upAKZfWWXZ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upAKZfWWXZ .mbr-section-title {
  color: #000000;
}
.cid-upAKZfWWXZ .mbr-text {
  color: #000000;
}
.cid-upAjEeMrmw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upAjEeMrmw .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAjEeMrmw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAjEeMrmw .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upAjEeMrmw .content-wrapper {
    padding: 0;
  }
}
.cid-upAjEeMrmw .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upAjEeMrmw .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upAjEeMrmw .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upAjEeMrmw .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upAjEeMrmw .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upAjEeMrmw .mbr-section-title {
  color: #050f0f;
}
.cid-upAjxif2Ho {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-upAjxif2Ho .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAjxif2Ho .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upAjxif2Ho .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upAjxif2Ho .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upAjxif2Ho a {
  font-weight: 600;
}
.cid-upAjxif2Ho a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upAjxif2Ho .col-lg-3,
  .cid-upAjxif2Ho .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upAjxif2Ho .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upAjxif2Ho .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upAjxif2Ho h5 {
  margin: 0;
}
.cid-upAjxif2Ho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upAjxif2Ho .iconfont-wrapper {
  position: relative;
}
.cid-upAjxif2Ho .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upAjxif2Ho .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upAjxif2Ho .sociconfont-wrapper {
  display: flex;
}
.cid-upAjxif2Ho .card-title,
.cid-upAjxif2Ho .iconfont-wrapper {
  color: #000000;
}
.cid-upAjxif2Ho .card-text {
  color: #000000;
}
.cid-upAjxif2Ho .mbr-section-title {
  color: #000000;
}
.cid-upAjxif2Ho .main-title,
.cid-upAjxif2Ho .iconfont-wrapper {
  text-align: left;
}
.cid-upAR4uwR3u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-upAgV7emK8 {
  z-index: 1000;
  width: 100%;
}
.cid-upAgV7emK8 nav.navbar {
  position: fixed;
}
.cid-upAgV7emK8 .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-upAgV7emK8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1e21 !important;
}
.cid-upAgV7emK8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upAgV7emK8 .dropdown-item:hover,
.cid-upAgV7emK8 .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-upAgV7emK8 .dropdown-item:hover span {
  color: white;
}
.cid-upAgV7emK8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upAgV7emK8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upAgV7emK8 .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upAgV7emK8 .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upAgV7emK8 .nav-link {
  position: relative;
}
.cid-upAgV7emK8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-upAgV7emK8 .container {
    flex-wrap: nowrap;
  }
}
.cid-upAgV7emK8 .nav-item:focus,
.cid-upAgV7emK8 .nav-link:focus {
  outline: none;
}
.cid-upAgV7emK8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upAgV7emK8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upAgV7emK8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upAgV7emK8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upAgV7emK8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upAgV7emK8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upAgV7emK8 .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 10px 20px !important;
  border: none !important;
}
.cid-upAgV7emK8 .navbar.opened {
  transition: all 0.3s;
}
.cid-upAgV7emK8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upAgV7emK8 .navbar .navbar-logo img {
  width: auto;
}
.cid-upAgV7emK8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upAgV7emK8 .navbar.collapsed {
  justify-content: center;
}
.cid-upAgV7emK8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upAgV7emK8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upAgV7emK8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-upAgV7emK8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upAgV7emK8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upAgV7emK8 .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-upAgV7emK8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upAgV7emK8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upAgV7emK8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upAgV7emK8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upAgV7emK8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upAgV7emK8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upAgV7emK8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upAgV7emK8 .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-upAgV7emK8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upAgV7emK8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upAgV7emK8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upAgV7emK8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upAgV7emK8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upAgV7emK8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upAgV7emK8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upAgV7emK8 .navbar-brand {
  min-height: 46px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
}
.cid-upAgV7emK8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-upAgV7emK8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upAgV7emK8 .navbar-brand .navbar-logo {
  position: relative;
  margin-right: 0.6rem !important;
  padding-right: 0.6rem !important;
}
.cid-upAgV7emK8 .navbar-brand .navbar-logo:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  opacity: 0.8;
  background-color: #e3ebf3;
}
.cid-upAgV7emK8 .dropdown-item.active,
.cid-upAgV7emK8 .dropdown-item:active {
  background-color: transparent;
}
.cid-upAgV7emK8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upAgV7emK8 .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upAgV7emK8 .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upAgV7emK8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1e21;
}
.cid-upAgV7emK8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upAgV7emK8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upAgV7emK8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upAgV7emK8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upAgV7emK8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upAgV7emK8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e3ebf3;
}
.cid-upAgV7emK8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upAgV7emK8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upAgV7emK8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upAgV7emK8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upAgV7emK8 .navbar-toggler-close {
  position: absolute!important;
  right: 90px!important;
  top: 90px!important;
  height: 32px!important;
  width: 32px!important;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .cid-upAgV7emK8 .navbar-toggler-close {
    top: 50px!important;
    right: 50px!important;
    height: 26px!important;
    width: 26px!important;
  }
}
@media (max-width: 767px) {
  .cid-upAgV7emK8 .navbar-toggler-close {
    top: 50px!important;
    right: 20px!important;
    height: 16px!important;
    width: 16px!important;
  }
}
.cid-upAgV7emK8 .navbar-toggler-close span {
  width: 100% !important;
  height: 2px!important;
  top: 50%!important;
}
.cid-upAgV7emK8 .navbar-toggler-close span:nth-child(1) {
  display: none;
}
.cid-upAgV7emK8 .navbar-toggler-close span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
}
.cid-upAgV7emK8 .navbar-toggler-close span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.cid-upAgV7emK8 .navbar-toggler-close span:nth-child(4) {
  display: none;
}
.cid-upAgV7emK8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upAgV7emK8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upAgV7emK8 .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-upAgV7emK8 .navbar {
    height: 70px;
  }
  .cid-upAgV7emK8 .navbar.opened {
    height: auto;
  }
  .cid-upAgV7emK8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upAgV7emK8 .container-fluid {
  padding: 5px 32px !important;
  border-radius: 100px;
  column-gap: 12px;
  background: #1a1e21;
}
.cid-upAgV7emK8 .navbar-collapse {
  margin-left: auto;
}
.cid-upAgV7emK8 .navbar-nav {
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.cid-upAgV7emK8 .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-upAgV7emK8 .navbar-nav .nav-link {
  margin: 0 !important;
  border-radius: 90px;
  padding: 10px 15px !important;
  transition: all .4s;
}
.cid-upAgV7emK8 .mbr-section-btn .btn {
  position: relative;
  min-width: 160px;
  min-height: 46px;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  transition: all .3s;
}
@media (max-width: 991px) {
  .cid-upAgV7emK8 .navbar {
    padding: 0 !important;
  }
  .cid-upAgV7emK8 .container-fluid {
    padding: 5px 20px !important;
    border-radius: 0;
    flex-wrap: nowrap;
  }
  .cid-upAgV7emK8 .navbar-brand {
    max-width: 50%;
    padding-right: 0 !important;
  }
  .cid-upAgV7emK8 .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 100vw;
    max-height: 100vh !important;
    height: 100vh !important;
    margin-left: 0;
    padding: 50px;
    background-image: url("../../../assets/images/background1.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .cid-upAgV7emK8 .navbar-collapse.show {
    opacity: 1;
  }
  .cid-upAgV7emK8 .navbar-nav {
    justify-content: flex-start;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .cid-upAgV7emK8 .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-upAgV7emK8 .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: calc(6vh * 0.38) !important;
    border-radius: 0;
    font-size: 6vh !important;
    line-height: 1 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-upAgV7emK8 .container-fluid {
    padding: 5px 12px !important;
    column-gap: 6px;
  }
  .cid-upAgV7emK8 .navbar-collapse {
    padding: 50px 20px;
  }
  .cid-upAgV7emK8 .navbar-nav .nav-item .nav-link {
    margin-bottom: 12px !important;
    font-size: 32px !important;
  }
  .cid-upAgV7emK8 .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 46px;
    padding: 10px;
  }
}
.cid-upD7jKqkhW {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upD7jKqkhW .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD7jKqkhW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD7jKqkhW .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upD7jKqkhW .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upD7jKqkhW .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upD7jKqkhW .card-wrapper {
    padding: 4rem;
  }
}
.cid-upD7xbhdev {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1200-cbf93be80558b14ca8dd781229fd4da3-1200x799.png");
}
.cid-upD7xbhdev .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD7xbhdev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD7xbhdev .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upD7xbhdev .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upD7xbhdev .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upD7xbhdev .card-wrapper {
    padding: 4rem;
  }
}
.cid-upD8RDvkZv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upD8RDvkZv .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD8RDvkZv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD8RDvkZv .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upD8RDvkZv .content-wrapper {
    padding: 0;
  }
}
.cid-upD8RDvkZv .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upD8RDvkZv .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upD8RDvkZv .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upD8RDvkZv .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upD8RDvkZv .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upD8RDvkZv .mbr-section-title {
  color: #050f0f;
}
.cid-upD8S9Lvsu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-upD8S9Lvsu .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD8S9Lvsu .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upD8S9Lvsu .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upD8S9Lvsu .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upD8S9Lvsu a {
  font-weight: 600;
}
.cid-upD8S9Lvsu a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upD8S9Lvsu .col-lg-3,
  .cid-upD8S9Lvsu .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upD8S9Lvsu .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upD8S9Lvsu .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upD8S9Lvsu h5 {
  margin: 0;
}
.cid-upD8S9Lvsu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD8S9Lvsu .iconfont-wrapper {
  position: relative;
}
.cid-upD8S9Lvsu .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upD8S9Lvsu .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upD8S9Lvsu .sociconfont-wrapper {
  display: flex;
}
.cid-upD8S9Lvsu .card-title,
.cid-upD8S9Lvsu .iconfont-wrapper {
  color: #000000;
}
.cid-upD8S9Lvsu .card-text {
  color: #000000;
}
.cid-upD8S9Lvsu .mbr-section-title {
  color: #000000;
}
.cid-upD8S9Lvsu .main-title,
.cid-upD8S9Lvsu .iconfont-wrapper {
  text-align: left;
}
.cid-upAR4uwR3u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-upD91zS360 {
  z-index: 1000;
  width: 100%;
}
.cid-upD91zS360 nav.navbar {
  position: fixed;
}
.cid-upD91zS360 .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-upD91zS360 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1e21 !important;
}
.cid-upD91zS360 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upD91zS360 .dropdown-item:hover,
.cid-upD91zS360 .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-upD91zS360 .dropdown-item:hover span {
  color: white;
}
.cid-upD91zS360 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upD91zS360 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upD91zS360 .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upD91zS360 .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upD91zS360 .nav-link {
  position: relative;
}
.cid-upD91zS360 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-upD91zS360 .container {
    flex-wrap: nowrap;
  }
}
.cid-upD91zS360 .nav-item:focus,
.cid-upD91zS360 .nav-link:focus {
  outline: none;
}
.cid-upD91zS360 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upD91zS360 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upD91zS360 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upD91zS360 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upD91zS360 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upD91zS360 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upD91zS360 .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 10px 20px !important;
  border: none !important;
}
.cid-upD91zS360 .navbar.opened {
  transition: all 0.3s;
}
.cid-upD91zS360 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upD91zS360 .navbar .navbar-logo img {
  width: auto;
}
.cid-upD91zS360 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upD91zS360 .navbar.collapsed {
  justify-content: center;
}
.cid-upD91zS360 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upD91zS360 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upD91zS360 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-upD91zS360 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upD91zS360 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upD91zS360 .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-upD91zS360 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upD91zS360 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upD91zS360 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upD91zS360 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upD91zS360 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upD91zS360 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upD91zS360 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upD91zS360 .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-upD91zS360 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upD91zS360 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upD91zS360 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upD91zS360 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upD91zS360 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upD91zS360 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upD91zS360 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upD91zS360 .navbar-brand {
  min-height: 46px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
}
.cid-upD91zS360 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-upD91zS360 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upD91zS360 .navbar-brand .navbar-logo {
  position: relative;
  margin-right: 0.6rem !important;
  padding-right: 0.6rem !important;
}
.cid-upD91zS360 .navbar-brand .navbar-logo:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  opacity: 0.8;
  background-color: #e3ebf3;
}
.cid-upD91zS360 .dropdown-item.active,
.cid-upD91zS360 .dropdown-item:active {
  background-color: transparent;
}
.cid-upD91zS360 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upD91zS360 .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upD91zS360 .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upD91zS360 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1e21;
}
.cid-upD91zS360 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upD91zS360 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upD91zS360 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upD91zS360 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upD91zS360 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upD91zS360 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e3ebf3;
}
.cid-upD91zS360 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upD91zS360 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upD91zS360 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upD91zS360 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upD91zS360 .navbar-toggler-close {
  position: absolute!important;
  right: 90px!important;
  top: 90px!important;
  height: 32px!important;
  width: 32px!important;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .cid-upD91zS360 .navbar-toggler-close {
    top: 50px!important;
    right: 50px!important;
    height: 26px!important;
    width: 26px!important;
  }
}
@media (max-width: 767px) {
  .cid-upD91zS360 .navbar-toggler-close {
    top: 50px!important;
    right: 20px!important;
    height: 16px!important;
    width: 16px!important;
  }
}
.cid-upD91zS360 .navbar-toggler-close span {
  width: 100% !important;
  height: 2px!important;
  top: 50%!important;
}
.cid-upD91zS360 .navbar-toggler-close span:nth-child(1) {
  display: none;
}
.cid-upD91zS360 .navbar-toggler-close span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
}
.cid-upD91zS360 .navbar-toggler-close span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.cid-upD91zS360 .navbar-toggler-close span:nth-child(4) {
  display: none;
}
.cid-upD91zS360 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upD91zS360 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upD91zS360 .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-upD91zS360 .navbar {
    height: 70px;
  }
  .cid-upD91zS360 .navbar.opened {
    height: auto;
  }
  .cid-upD91zS360 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upD91zS360 .container-fluid {
  padding: 5px 32px !important;
  border-radius: 100px;
  column-gap: 12px;
  background: #1a1e21;
}
.cid-upD91zS360 .navbar-collapse {
  margin-left: auto;
}
.cid-upD91zS360 .navbar-nav {
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.cid-upD91zS360 .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-upD91zS360 .navbar-nav .nav-link {
  margin: 0 !important;
  border-radius: 90px;
  padding: 10px 15px !important;
  transition: all .4s;
}
.cid-upD91zS360 .mbr-section-btn .btn {
  position: relative;
  min-width: 160px;
  min-height: 46px;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  transition: all .3s;
}
@media (max-width: 991px) {
  .cid-upD91zS360 .navbar {
    padding: 0 !important;
  }
  .cid-upD91zS360 .container-fluid {
    padding: 5px 20px !important;
    border-radius: 0;
    flex-wrap: nowrap;
  }
  .cid-upD91zS360 .navbar-brand {
    max-width: 50%;
    padding-right: 0 !important;
  }
  .cid-upD91zS360 .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 100vw;
    max-height: 100vh !important;
    height: 100vh !important;
    margin-left: 0;
    padding: 50px;
    background-image: url("../../../assets/images/background1.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .cid-upD91zS360 .navbar-collapse.show {
    opacity: 1;
  }
  .cid-upD91zS360 .navbar-nav {
    justify-content: flex-start;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .cid-upD91zS360 .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-upD91zS360 .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: calc(6vh * 0.38) !important;
    border-radius: 0;
    font-size: 6vh !important;
    line-height: 1 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-upD91zS360 .container-fluid {
    padding: 5px 12px !important;
    column-gap: 6px;
  }
  .cid-upD91zS360 .navbar-collapse {
    padding: 50px 20px;
  }
  .cid-upD91zS360 .navbar-nav .nav-item .nav-link {
    margin-bottom: 12px !important;
    font-size: 32px !important;
  }
  .cid-upD91zS360 .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 46px;
    padding: 10px;
  }
}
.cid-upD91Aegea {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1684764729239-1280x640.jpg");
}
.cid-upD91Aegea .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD91Aegea .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD91Aegea .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upD91Aegea .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upD91Aegea .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upD91Aegea .card-wrapper {
    padding: 4rem;
  }
}
.cid-upD91AvA1q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upD91AvA1q .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD91AvA1q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD91AvA1q .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upD91AvA1q .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upD91AvA1q .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upD91AvA1q .card-wrapper {
    padding: 4rem;
  }
}
.cid-upD91AOgKj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upD91AOgKj .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD91AOgKj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD91AOgKj .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upD91AOgKj .content-wrapper {
    padding: 0;
  }
}
.cid-upD91AOgKj .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upD91AOgKj .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upD91AOgKj .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upD91AOgKj .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upD91AOgKj .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upD91AOgKj .mbr-section-title {
  color: #050f0f;
}
.cid-upD91BcnMj {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-upD91BcnMj .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD91BcnMj .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upD91BcnMj .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upD91BcnMj .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upD91BcnMj a {
  font-weight: 600;
}
.cid-upD91BcnMj a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upD91BcnMj .col-lg-3,
  .cid-upD91BcnMj .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upD91BcnMj .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upD91BcnMj .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upD91BcnMj h5 {
  margin: 0;
}
.cid-upD91BcnMj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD91BcnMj .iconfont-wrapper {
  position: relative;
}
.cid-upD91BcnMj .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upD91BcnMj .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upD91BcnMj .sociconfont-wrapper {
  display: flex;
}
.cid-upD91BcnMj .card-title,
.cid-upD91BcnMj .iconfont-wrapper {
  color: #000000;
}
.cid-upD91BcnMj .card-text {
  color: #000000;
}
.cid-upD91BcnMj .mbr-section-title {
  color: #000000;
}
.cid-upD91BcnMj .main-title,
.cid-upD91BcnMj .iconfont-wrapper {
  text-align: left;
}
.cid-upD91BMQSx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-upD79tsWxM {
  z-index: 1000;
  width: 100%;
}
.cid-upD79tsWxM nav.navbar {
  position: fixed;
}
.cid-upD79tsWxM .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-upD79tsWxM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1e21 !important;
}
.cid-upD79tsWxM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upD79tsWxM .dropdown-item:hover,
.cid-upD79tsWxM .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-upD79tsWxM .dropdown-item:hover span {
  color: white;
}
.cid-upD79tsWxM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upD79tsWxM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upD79tsWxM .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upD79tsWxM .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upD79tsWxM .nav-link {
  position: relative;
}
.cid-upD79tsWxM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-upD79tsWxM .container {
    flex-wrap: nowrap;
  }
}
.cid-upD79tsWxM .nav-item:focus,
.cid-upD79tsWxM .nav-link:focus {
  outline: none;
}
.cid-upD79tsWxM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upD79tsWxM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upD79tsWxM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upD79tsWxM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upD79tsWxM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upD79tsWxM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upD79tsWxM .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 10px 20px !important;
  border: none !important;
}
.cid-upD79tsWxM .navbar.opened {
  transition: all 0.3s;
}
.cid-upD79tsWxM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upD79tsWxM .navbar .navbar-logo img {
  width: auto;
}
.cid-upD79tsWxM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upD79tsWxM .navbar.collapsed {
  justify-content: center;
}
.cid-upD79tsWxM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upD79tsWxM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upD79tsWxM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-upD79tsWxM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upD79tsWxM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upD79tsWxM .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-upD79tsWxM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upD79tsWxM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upD79tsWxM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upD79tsWxM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upD79tsWxM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upD79tsWxM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upD79tsWxM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upD79tsWxM .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-upD79tsWxM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upD79tsWxM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upD79tsWxM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upD79tsWxM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upD79tsWxM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upD79tsWxM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upD79tsWxM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upD79tsWxM .navbar-brand {
  min-height: 46px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
}
.cid-upD79tsWxM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-upD79tsWxM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upD79tsWxM .navbar-brand .navbar-logo {
  position: relative;
  margin-right: 0.6rem !important;
  padding-right: 0.6rem !important;
}
.cid-upD79tsWxM .navbar-brand .navbar-logo:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  opacity: 0.8;
  background-color: #e3ebf3;
}
.cid-upD79tsWxM .dropdown-item.active,
.cid-upD79tsWxM .dropdown-item:active {
  background-color: transparent;
}
.cid-upD79tsWxM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upD79tsWxM .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upD79tsWxM .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upD79tsWxM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1e21;
}
.cid-upD79tsWxM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upD79tsWxM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upD79tsWxM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upD79tsWxM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upD79tsWxM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upD79tsWxM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e3ebf3;
}
.cid-upD79tsWxM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upD79tsWxM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upD79tsWxM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upD79tsWxM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upD79tsWxM .navbar-toggler-close {
  position: absolute!important;
  right: 90px!important;
  top: 90px!important;
  height: 32px!important;
  width: 32px!important;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .cid-upD79tsWxM .navbar-toggler-close {
    top: 50px!important;
    right: 50px!important;
    height: 26px!important;
    width: 26px!important;
  }
}
@media (max-width: 767px) {
  .cid-upD79tsWxM .navbar-toggler-close {
    top: 50px!important;
    right: 20px!important;
    height: 16px!important;
    width: 16px!important;
  }
}
.cid-upD79tsWxM .navbar-toggler-close span {
  width: 100% !important;
  height: 2px!important;
  top: 50%!important;
}
.cid-upD79tsWxM .navbar-toggler-close span:nth-child(1) {
  display: none;
}
.cid-upD79tsWxM .navbar-toggler-close span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
}
.cid-upD79tsWxM .navbar-toggler-close span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.cid-upD79tsWxM .navbar-toggler-close span:nth-child(4) {
  display: none;
}
.cid-upD79tsWxM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upD79tsWxM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upD79tsWxM .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-upD79tsWxM .navbar {
    height: 70px;
  }
  .cid-upD79tsWxM .navbar.opened {
    height: auto;
  }
  .cid-upD79tsWxM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upD79tsWxM .container-fluid {
  padding: 5px 32px !important;
  border-radius: 100px;
  column-gap: 12px;
  background: #1a1e21;
}
.cid-upD79tsWxM .navbar-collapse {
  margin-left: auto;
}
.cid-upD79tsWxM .navbar-nav {
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.cid-upD79tsWxM .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-upD79tsWxM .navbar-nav .nav-link {
  margin: 0 !important;
  border-radius: 90px;
  padding: 10px 15px !important;
  transition: all .4s;
}
.cid-upD79tsWxM .mbr-section-btn .btn {
  position: relative;
  min-width: 160px;
  min-height: 46px;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  transition: all .3s;
}
@media (max-width: 991px) {
  .cid-upD79tsWxM .navbar {
    padding: 0 !important;
  }
  .cid-upD79tsWxM .container-fluid {
    padding: 5px 20px !important;
    border-radius: 0;
    flex-wrap: nowrap;
  }
  .cid-upD79tsWxM .navbar-brand {
    max-width: 50%;
    padding-right: 0 !important;
  }
  .cid-upD79tsWxM .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 100vw;
    max-height: 100vh !important;
    height: 100vh !important;
    margin-left: 0;
    padding: 50px;
    background-image: url("../../../assets/images/background1.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .cid-upD79tsWxM .navbar-collapse.show {
    opacity: 1;
  }
  .cid-upD79tsWxM .navbar-nav {
    justify-content: flex-start;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .cid-upD79tsWxM .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-upD79tsWxM .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: calc(6vh * 0.38) !important;
    border-radius: 0;
    font-size: 6vh !important;
    line-height: 1 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-upD79tsWxM .container-fluid {
    padding: 5px 12px !important;
    column-gap: 6px;
  }
  .cid-upD79tsWxM .navbar-collapse {
    padding: 50px 20px;
  }
  .cid-upD79tsWxM .navbar-nav .nav-item .nav-link {
    margin-bottom: 12px !important;
    font-size: 32px !important;
  }
  .cid-upD79tsWxM .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 46px;
    padding: 10px;
  }
}
.cid-upD79tXinN {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-color: #1b1818;
  overflow: hidden;
}
.cid-upD79tXinN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79tXinN .container-fluid,
.cid-upD79tXinN .container {
  margin-top: -400px;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-upD79tXinN .container-fluid,
  .cid-upD79tXinN .container {
    padding: 0 1.5rem;
  }
}
.cid-upD79tXinN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79tXinN a {
  font-weight: bold;
}
.cid-upD79tXinN .image-wrapper {
  transform: translateY(400px);
  padding: 0 2rem;
}
.cid-upD79tXinN .image-wrapper img {
  border-radius: 4rem !important;
  height: 800px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-upD79tXinN .image-wrapper img {
    height: 400px;
    border-radius: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-upD79tXinN .image-wrapper {
    padding: 0;
    transform: translateY(320px);
  }
}
.cid-upD79tXinN .row {
  justify-content: space-between;
  background: linear-gradient(to top, #0616c2, #ff6666);
  border-radius: 4rem;
  padding: 2rem;
  padding-top: 450px !important;
}
@media (min-width: 992px) {
  .cid-upD79tXinN .row {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-upD79tXinN .row {
    padding: 1.5rem 0rem;
    border-radius: 2rem;
    padding-top: 330px !important;
  }
}
@media (max-width: 1400px) {
  .cid-upD79tXinN .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-upD79tXinN .mbr-section-btn,
.cid-upD79tXinN .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-upD79tXinN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upD79tXinN .mbr-section-title {
  color: #fafafa;
}
.cid-upD79tXinN .mbr-text,
.cid-upD79tXinN .mbr-section-btn {
  color: #fafafa;
}
.cid-upD79tXinN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upD79tXinN .mbr-section-subtitle2 {
  color: #ffffff;
}
.cid-upD79uuWLB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upD79uuWLB .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79uuWLB .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-upD79uuWLB .container {
    padding: 0 30px;
  }
}
.cid-upD79uuWLB .row {
  justify-content: center;
}
.cid-upD79uuWLB .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upD79uuWLB .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upD79uuWLB .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upD79uuWLB .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-upD79uuWLB .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-upD79uuWLB .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-upD79uuWLB .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upD79uuWLB .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #000000;
}
.cid-upD79uuWLB .mbr-section-title {
  color: #000000;
}
.cid-upD79uuWLB .mbr-text {
  color: #144031;
}
.cid-upD79uSH6r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-upD79uSH6r .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upD79uSH6r .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79uSH6r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79uSH6r .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upD79uSH6r .content-wrap .card {
  justify-content: space-between;
}
.cid-upD79uSH6r .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upD79uSH6r .content-wrapper {
    padding: 0;
  }
}
.cid-upD79uSH6r .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upD79uSH6r .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-upD79uSH6r .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upD79uSH6r .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upD79uSH6r .mbr-desc,
.cid-upD79uSH6r .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upD79uSH6r .mbr-section-title,
.cid-upD79uSH6r .mbr-section-btn {
  color: #000000;
}
.cid-upD79vgX2c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffe161;
}
.cid-upD79vgX2c .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upD79vgX2c .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79vgX2c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79vgX2c .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upD79vgX2c .content-wrap .card {
  justify-content: space-between;
}
.cid-upD79vgX2c .content-wrapper {
  padding: 0 28px 0 120px;
}
@media (max-width: 1640px) {
  .cid-upD79vgX2c .content-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-upD79vgX2c .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-upD79vgX2c .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upD79vgX2c .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-upD79vgX2c .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upD79vgX2c .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-upD79vgX2c .image-wrap {
  padding: 0 120px 0 28px;
}
@media (max-width: 1640px) {
  .cid-upD79vgX2c .image-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-upD79vgX2c .image-wrap {
    padding: 0;
  }
}
.cid-upD79vgX2c .image-wrap img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upD79vgX2c .image-wrap img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-upD79vgX2c .mbr-section-title {
  color: #150764;
}
.cid-upD79vgX2c .mbr-text {
  color: #000000;
}
.cid-upD79vgX2c .mbr-section-title,
.cid-upD79vgX2c .mbr-section-btn {
  color: #000000;
}
.cid-upD79vGDoq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-upD79vGDoq .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upD79vGDoq .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79vGDoq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79vGDoq .content-wrap {
  margin: 0;
}
.cid-upD79vGDoq .content-wrap .card {
  padding: 0;
}
.cid-upD79vGDoq .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #ffe161;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upD79vGDoq .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upD79vGDoq .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upD79vGDoq .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upD79vGDoq .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upD79vGDoq .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upD79vGDoq .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upD79vGDoq .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upD79vGDoq .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upD79vGDoq .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upD79vGDoq .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upD79vGDoq .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upD79vGDoq .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upD79vGDoq .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upD79vGDoq .mbr-section-title {
  color: #150764;
}
.cid-upD79vGDoq .mbr-text {
  color: #150764;
}
.cid-upD79vGDoq .mbr-section-title,
.cid-upD79vGDoq .mbr-section-btn {
  color: #000000;
}
.cid-upD79vGDoq .mbr-text,
.cid-upD79vGDoq .text-wrap {
  color: #000000;
}
.cid-upD79wcolE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upD79wcolE .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79wcolE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79wcolE .row {
  justify-content: center;
}
.cid-upD79wcolE .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upD79wcolE .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upD79wcolE .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upD79wcolE .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upD79wcolE .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upD79wcolE .item {
    margin-bottom: 35px;
  }
}
.cid-upD79wcolE .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upD79wcolE .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upD79wcolE .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-upD79wcolE .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upD79wcolE .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upD79wcolE .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-upD79wcolE .mbr-section-title {
  color: #000000;
}
.cid-upD79wcolE .mbr-text {
  color: #000000;
}
.cid-upD79wcolE .item-title {
  color: #000000;
}
.cid-upD79wcolE .item-text {
  color: #000000;
}
.cid-upD79wOsaT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upD79xbnCd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upD79xbnCd .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79xbnCd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79xbnCd .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-upD79xbnCd .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-upD79xbnCd .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upD79xbnCd .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upD79xbnCd .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upD79xbnCd .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upD79xbnCd .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upD79xbnCd .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-upD79xbnCd .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-upD79xbnCd .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-upD79xbnCd .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-upD79xbnCd .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-upD79xbnCd .mbr-section-title {
  color: #050f0f;
}
.cid-upD79xbnCd .mbr-text {
  color: #050f0f;
}
.cid-upD79xCHd3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upD79xCHd3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79xCHd3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79xCHd3 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-upD79xCHd3 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-upD79xCHd3 .container {
    padding: 0 26px;
  }
}
.cid-upD79xCHd3 .row {
  justify-content: center;
}
.cid-upD79xCHd3 .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #ffe161;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-upD79xCHd3 .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-upD79xCHd3 .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-upD79xCHd3 .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-upD79xCHd3 .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-upD79xCHd3 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-upD79xCHd3 .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-upD79xCHd3 .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upD79xCHd3 .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-upD79xCHd3 .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-upD79xCHd3 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-upD79xCHd3 .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-upD79xCHd3 .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-upD79xCHd3 .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-upD79xCHd3 .mbr-section-title {
  color: #000000;
}
.cid-upD79xCHd3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upD79xCHd3 .mbr-desc {
  color: #ffffff;
}
.cid-upD79xCHd3 .mbr-text {
  color: #000000;
}
.cid-upD79xCHd3 .mbr-link {
  color: #ffffff;
}
.cid-upD79y3kzs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upD79y3kzs .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79y3kzs .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-upD79y3kzs .container {
    padding: 0 30px;
  }
}
.cid-upD79y3kzs .row {
  justify-content: center;
}
.cid-upD79y3kzs .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upD79y3kzs .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upD79y3kzs .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-upD79y3kzs .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-upD79y3kzs .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upD79y3kzs .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-upD79y3kzs .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-upD79ywUwG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upD79ywUwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79ywUwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79ywUwG .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upD79ywUwG .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upD79ywUwG .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upD79ywUwG .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upD79ywUwG .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upD79ywUwG .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-upD79ywUwG .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upD79ywUwG .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #ffe161;
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper:hover,
.cid-upD79ywUwG .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upD79ywUwG .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upD79ywUwG .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upD79ywUwG .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upD79ywUwG .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upD79ywUwG .item-title {
  color: #050f0f;
}
.cid-upD79ywUwG .item-text {
  color: #050f0f;
}
.cid-upD79ywUwG .list {
  color: #050f0f;
}
.cid-upD79z40W0 {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffe161;
}
.cid-upD79z40W0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79z40W0 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-upD79z40W0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79z40W0 h1 {
  max-width: 800px;
}
.cid-upD79z40W0 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-upD79z40W0 .btn:hover {
  transform: scale(1.1);
  background: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #0616c2 !important;
}
.cid-upD79z40W0 .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-upD79z40W0 .btn div {
  overflow: hidden;
}
.cid-upD79z40W0 .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-upD79z40W0 {
    align-items: center;
  }
  .cid-upD79z40W0 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-upD79z40W0 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-upD79z40W0 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-upD79z40W0 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-upD79z40W0 .content-wrap {
    width: 100%;
  }
}
.cid-upD79z40W0 .mbr-section-subtitle,
.cid-upD79z40W0 .line {
  color: #291f1e;
}
.cid-upD79z40W0 .mbr-text,
.cid-upD79z40W0 .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-upD79z40W0 .mbr-section-title {
  color: #291f1e;
}
.cid-upD79zyalQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-upD79zyalQ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upD79zyalQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79zyalQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79zyalQ .content-wrap {
  justify-content: center;
}
.cid-upD79zyalQ .card-wrapper {
  background-color: #ffe161;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upD79zyalQ .card-wrapper {
    display: block;
  }
}
.cid-upD79zyalQ .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upD79zyalQ .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upD79zyalQ .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upD79zyalQ .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upD79zyalQ .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upD79zyalQ .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #4188ff;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upD79zyalQ .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upD79zyalQ .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upD79zyalQ .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #bbbbbb;
}
@media (max-width: 1940px) {
  .cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #4188ff;
}
.cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upD79zyalQ .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upD79zyalQ .mbr-section-title {
  color: #000000;
}
.cid-upD79zyalQ .panel-title-edit {
  color: #150764;
}
.cid-upD79zyalQ .panel-text {
  color: #150764;
}
.cid-upD79zyalQ .panel-title-edit,
.cid-upD79zyalQ .icon-wrapper {
  color: #000000;
}
.cid-upD79AgL6x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
  position: relative;
  overflow: hidden;
}
.cid-upD79AgL6x::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #fafafa -10%, transparent 70%);
}
.cid-upD79AgL6x .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79AgL6x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-upD79AgL6x .container {
    padding: 0 16px;
  }
}
.cid-upD79AgL6x .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-upD79AgL6x .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-upD79AgL6x .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upD79AgL6x .mbr-section-title {
  color: #000000;
}
.cid-upD79AgL6x .mbr-text {
  color: #000000;
}
.cid-upEYWT4MmB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upEYWT4MmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-upEYWT4MmB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upEYWT4MmB .items-wrapper {
  justify-content: space-between;
  margin: 0 -5px;
}
.cid-upEYWT4MmB .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upEYWT4MmB .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upEYWT4MmB .panel-group .card {
  position: relative;
  padding: 32px;
  margin-top: 8px;
  background-color: #ffe161;
}
@media (max-width: 992px) {
  .cid-upEYWT4MmB .panel-group .card {
    padding: 24px;
    margin-top: 16px;
  }
}
.cid-upEYWT4MmB .panel-group .card:first-child {
  margin-top: 0;
}
.cid-upEYWT4MmB .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upEYWT4MmB .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upEYWT4MmB .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upEYWT4MmB .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-upEYWT4MmB .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-upEYWT4MmB .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-upEYWT4MmB .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-upEYWT4MmB .panel-group .card .card-header .panel-title:hover .icon-wrapper,
.cid-upEYWT4MmB .panel-group .card .card-header .panel-title:focus .icon-wrapper {
  opacity: .3;
}
.cid-upEYWT4MmB .panel-group .card .panel-collapse .panel-body {
  margin: 32px 0 0 0;
}
@media (max-width: 992px) {
  .cid-upEYWT4MmB .panel-group .card .panel-collapse .panel-body {
    margin: 24px 0 0 0;
  }
}
.cid-upEYWT4MmB .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upEYWT4MmB .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-upEYWT4MmB .card {
  justify-content: space-between;
}
.cid-upEYWT4MmB .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-upEYWT4MmB .panel-title-edit {
  color: #000000;
}
.cid-upEYWT4MmB .panel-text {
  color: #f24d4a;
}
.cid-upEYWT4MmB .panel-text,
.cid-upEYWT4MmB .panel-body {
  color: #1c34cf;
}
.cid-upD79AJHHM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upD79AJHHM .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79AJHHM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79AJHHM .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upD79AJHHM .content-wrapper {
    padding: 0;
  }
}
.cid-upD79AJHHM .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upD79AJHHM .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upD79AJHHM .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upD79AJHHM .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upD79AJHHM .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upD79AJHHM .mbr-section-title {
  color: #050f0f;
}
.cid-upD79Bh8RH {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-upD79Bh8RH .mbr-fallback-image.disabled {
  display: none;
}
.cid-upD79Bh8RH .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upD79Bh8RH .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upD79Bh8RH .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upD79Bh8RH a {
  font-weight: 600;
}
.cid-upD79Bh8RH a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upD79Bh8RH .col-lg-3,
  .cid-upD79Bh8RH .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upD79Bh8RH .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upD79Bh8RH .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upD79Bh8RH h5 {
  margin: 0;
}
.cid-upD79Bh8RH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upD79Bh8RH .iconfont-wrapper {
  position: relative;
}
.cid-upD79Bh8RH .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upD79Bh8RH .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upD79Bh8RH .sociconfont-wrapper {
  display: flex;
}
.cid-upD79Bh8RH .card-title,
.cid-upD79Bh8RH .iconfont-wrapper {
  color: #000000;
}
.cid-upD79Bh8RH .card-text {
  color: #000000;
}
.cid-upD79Bh8RH .mbr-section-title {
  color: #000000;
}
.cid-upD79Bh8RH .main-title,
.cid-upD79Bh8RH .iconfont-wrapper {
  text-align: left;
}
.cid-upD79BYNB0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-upDbTxtvM1 {
  z-index: 1000;
  width: 100%;
}
.cid-upDbTxtvM1 nav.navbar {
  position: fixed;
}
.cid-upDbTxtvM1 .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-upDbTxtvM1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1e21 !important;
}
.cid-upDbTxtvM1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upDbTxtvM1 .dropdown-item:hover,
.cid-upDbTxtvM1 .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-upDbTxtvM1 .dropdown-item:hover span {
  color: white;
}
.cid-upDbTxtvM1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upDbTxtvM1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upDbTxtvM1 .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upDbTxtvM1 .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upDbTxtvM1 .nav-link {
  position: relative;
}
.cid-upDbTxtvM1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-upDbTxtvM1 .container {
    flex-wrap: nowrap;
  }
}
.cid-upDbTxtvM1 .nav-item:focus,
.cid-upDbTxtvM1 .nav-link:focus {
  outline: none;
}
.cid-upDbTxtvM1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upDbTxtvM1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upDbTxtvM1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upDbTxtvM1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upDbTxtvM1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upDbTxtvM1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upDbTxtvM1 .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 10px 20px !important;
  border: none !important;
}
.cid-upDbTxtvM1 .navbar.opened {
  transition: all 0.3s;
}
.cid-upDbTxtvM1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upDbTxtvM1 .navbar .navbar-logo img {
  width: auto;
}
.cid-upDbTxtvM1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upDbTxtvM1 .navbar.collapsed {
  justify-content: center;
}
.cid-upDbTxtvM1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upDbTxtvM1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upDbTxtvM1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-upDbTxtvM1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upDbTxtvM1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upDbTxtvM1 .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-upDbTxtvM1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upDbTxtvM1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upDbTxtvM1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upDbTxtvM1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upDbTxtvM1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upDbTxtvM1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upDbTxtvM1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upDbTxtvM1 .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-upDbTxtvM1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upDbTxtvM1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upDbTxtvM1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upDbTxtvM1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upDbTxtvM1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upDbTxtvM1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upDbTxtvM1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upDbTxtvM1 .navbar-brand {
  min-height: 46px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
}
.cid-upDbTxtvM1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-upDbTxtvM1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upDbTxtvM1 .navbar-brand .navbar-logo {
  position: relative;
  margin-right: 0.6rem !important;
  padding-right: 0.6rem !important;
}
.cid-upDbTxtvM1 .navbar-brand .navbar-logo:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  opacity: 0.8;
  background-color: #e3ebf3;
}
.cid-upDbTxtvM1 .dropdown-item.active,
.cid-upDbTxtvM1 .dropdown-item:active {
  background-color: transparent;
}
.cid-upDbTxtvM1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upDbTxtvM1 .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upDbTxtvM1 .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upDbTxtvM1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1e21;
}
.cid-upDbTxtvM1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upDbTxtvM1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upDbTxtvM1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upDbTxtvM1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upDbTxtvM1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upDbTxtvM1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e3ebf3;
}
.cid-upDbTxtvM1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upDbTxtvM1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upDbTxtvM1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upDbTxtvM1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upDbTxtvM1 .navbar-toggler-close {
  position: absolute!important;
  right: 90px!important;
  top: 90px!important;
  height: 32px!important;
  width: 32px!important;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .cid-upDbTxtvM1 .navbar-toggler-close {
    top: 50px!important;
    right: 50px!important;
    height: 26px!important;
    width: 26px!important;
  }
}
@media (max-width: 767px) {
  .cid-upDbTxtvM1 .navbar-toggler-close {
    top: 50px!important;
    right: 20px!important;
    height: 16px!important;
    width: 16px!important;
  }
}
.cid-upDbTxtvM1 .navbar-toggler-close span {
  width: 100% !important;
  height: 2px!important;
  top: 50%!important;
}
.cid-upDbTxtvM1 .navbar-toggler-close span:nth-child(1) {
  display: none;
}
.cid-upDbTxtvM1 .navbar-toggler-close span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
}
.cid-upDbTxtvM1 .navbar-toggler-close span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.cid-upDbTxtvM1 .navbar-toggler-close span:nth-child(4) {
  display: none;
}
.cid-upDbTxtvM1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upDbTxtvM1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upDbTxtvM1 .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-upDbTxtvM1 .navbar {
    height: 70px;
  }
  .cid-upDbTxtvM1 .navbar.opened {
    height: auto;
  }
  .cid-upDbTxtvM1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upDbTxtvM1 .container-fluid {
  padding: 5px 32px !important;
  border-radius: 100px;
  column-gap: 12px;
  background: #1a1e21;
}
.cid-upDbTxtvM1 .navbar-collapse {
  margin-left: auto;
}
.cid-upDbTxtvM1 .navbar-nav {
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.cid-upDbTxtvM1 .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-upDbTxtvM1 .navbar-nav .nav-link {
  margin: 0 !important;
  border-radius: 90px;
  padding: 10px 15px !important;
  transition: all .4s;
}
.cid-upDbTxtvM1 .mbr-section-btn .btn {
  position: relative;
  min-width: 160px;
  min-height: 46px;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  transition: all .3s;
}
@media (max-width: 991px) {
  .cid-upDbTxtvM1 .navbar {
    padding: 0 !important;
  }
  .cid-upDbTxtvM1 .container-fluid {
    padding: 5px 20px !important;
    border-radius: 0;
    flex-wrap: nowrap;
  }
  .cid-upDbTxtvM1 .navbar-brand {
    max-width: 50%;
    padding-right: 0 !important;
  }
  .cid-upDbTxtvM1 .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 100vw;
    max-height: 100vh !important;
    height: 100vh !important;
    margin-left: 0;
    padding: 50px;
    background-image: url("../../../assets/images/background1.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .cid-upDbTxtvM1 .navbar-collapse.show {
    opacity: 1;
  }
  .cid-upDbTxtvM1 .navbar-nav {
    justify-content: flex-start;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .cid-upDbTxtvM1 .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-upDbTxtvM1 .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: calc(6vh * 0.38) !important;
    border-radius: 0;
    font-size: 6vh !important;
    line-height: 1 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-upDbTxtvM1 .container-fluid {
    padding: 5px 12px !important;
    column-gap: 6px;
  }
  .cid-upDbTxtvM1 .navbar-collapse {
    padding: 50px 20px;
  }
  .cid-upDbTxtvM1 .navbar-nav .nav-item .nav-link {
    margin-bottom: 12px !important;
    font-size: 32px !important;
  }
  .cid-upDbTxtvM1 .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 46px;
    padding: 10px;
  }
}
.cid-upDbTxQtoS {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-color: #1b1818;
  overflow: hidden;
}
.cid-upDbTxQtoS .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTxQtoS .container-fluid,
.cid-upDbTxQtoS .container {
  margin-top: -400px;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-upDbTxQtoS .container-fluid,
  .cid-upDbTxQtoS .container {
    padding: 0 1.5rem;
  }
}
.cid-upDbTxQtoS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTxQtoS a {
  font-weight: bold;
}
.cid-upDbTxQtoS .image-wrapper {
  transform: translateY(400px);
  padding: 0 2rem;
}
.cid-upDbTxQtoS .image-wrapper img {
  border-radius: 4rem !important;
  height: 800px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-upDbTxQtoS .image-wrapper img {
    height: 400px;
    border-radius: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-upDbTxQtoS .image-wrapper {
    padding: 0;
    transform: translateY(320px);
  }
}
.cid-upDbTxQtoS .row {
  justify-content: space-between;
  background: linear-gradient(to top, #0616c2, #ff6666);
  border-radius: 4rem;
  padding: 2rem;
  padding-top: 450px !important;
}
@media (min-width: 992px) {
  .cid-upDbTxQtoS .row {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-upDbTxQtoS .row {
    padding: 1.5rem 0rem;
    border-radius: 2rem;
    padding-top: 330px !important;
  }
}
@media (max-width: 1400px) {
  .cid-upDbTxQtoS .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-upDbTxQtoS .mbr-section-btn,
.cid-upDbTxQtoS .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-upDbTxQtoS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upDbTxQtoS .mbr-section-title {
  color: #fafafa;
}
.cid-upDbTxQtoS .mbr-text,
.cid-upDbTxQtoS .mbr-section-btn {
  color: #fafafa;
}
.cid-upDbTxQtoS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upDbTxQtoS .mbr-section-subtitle2 {
  color: #ffffff;
}
.cid-upDbTyi7lZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upDbTyi7lZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTyi7lZ .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-upDbTyi7lZ .container {
    padding: 0 30px;
  }
}
.cid-upDbTyi7lZ .row {
  justify-content: center;
}
.cid-upDbTyi7lZ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upDbTyi7lZ .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upDbTyi7lZ .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upDbTyi7lZ .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-upDbTyi7lZ .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-upDbTyi7lZ .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-upDbTyi7lZ .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upDbTyi7lZ .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #000000;
}
.cid-upDbTyi7lZ .mbr-section-title {
  color: #000000;
}
.cid-upDbTyi7lZ .mbr-text {
  color: #144031;
}
.cid-upDbTyi7lZ .list,
.cid-upDbTyi7lZ .item-wrap {
  color: #000000;
}
.cid-upDbTyAf9G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-upDbTyAf9G .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upDbTyAf9G .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTyAf9G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTyAf9G .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upDbTyAf9G .content-wrap .card {
  justify-content: space-between;
}
.cid-upDbTyAf9G .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upDbTyAf9G .content-wrapper {
    padding: 0;
  }
}
.cid-upDbTyAf9G .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upDbTyAf9G .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-upDbTyAf9G .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upDbTyAf9G .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upDbTyAf9G .mbr-desc,
.cid-upDbTyAf9G .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upDbTyAf9G .mbr-section-title,
.cid-upDbTyAf9G .mbr-section-btn {
  color: #000000;
}
.cid-upDbTyQRZG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffe161;
}
.cid-upDbTyQRZG .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upDbTyQRZG .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTyQRZG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTyQRZG .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upDbTyQRZG .content-wrap .card {
  justify-content: space-between;
}
.cid-upDbTyQRZG .content-wrapper {
  padding: 0 28px 0 120px;
}
@media (max-width: 1640px) {
  .cid-upDbTyQRZG .content-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbTyQRZG .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-upDbTyQRZG .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upDbTyQRZG .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-upDbTyQRZG .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upDbTyQRZG .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-upDbTyQRZG .image-wrap {
  padding: 0 120px 0 28px;
}
@media (max-width: 1640px) {
  .cid-upDbTyQRZG .image-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbTyQRZG .image-wrap {
    padding: 0;
  }
}
.cid-upDbTyQRZG .image-wrap img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upDbTyQRZG .image-wrap img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-upDbTyQRZG .mbr-section-title {
  color: #150764;
}
.cid-upDbTyQRZG .mbr-text {
  color: #000000;
}
.cid-upDbTyQRZG .mbr-section-title,
.cid-upDbTyQRZG .mbr-section-btn {
  color: #000000;
}
.cid-upDbTz6EZa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-upDbTz6EZa .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upDbTz6EZa .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTz6EZa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTz6EZa .content-wrap {
  margin: 0;
}
.cid-upDbTz6EZa .content-wrap .card {
  padding: 0;
}
.cid-upDbTz6EZa .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #ffe161;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upDbTz6EZa .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbTz6EZa .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upDbTz6EZa .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upDbTz6EZa .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upDbTz6EZa .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upDbTz6EZa .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upDbTz6EZa .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upDbTz6EZa .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upDbTz6EZa .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbTz6EZa .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upDbTz6EZa .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upDbTz6EZa .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upDbTz6EZa .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upDbTz6EZa .mbr-section-title {
  color: #150764;
}
.cid-upDbTz6EZa .mbr-text {
  color: #150764;
}
.cid-upDbTz6EZa .mbr-section-title,
.cid-upDbTz6EZa .mbr-section-btn {
  color: #000000;
}
.cid-upDbTz6EZa .mbr-text,
.cid-upDbTz6EZa .text-wrap {
  color: #000000;
}
.cid-upDbTztwMs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upDbTztwMs .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTztwMs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTztwMs .row {
  justify-content: center;
}
.cid-upDbTztwMs .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upDbTztwMs .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upDbTztwMs .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upDbTztwMs .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upDbTztwMs .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upDbTztwMs .item {
    margin-bottom: 35px;
  }
}
.cid-upDbTztwMs .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upDbTztwMs .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upDbTztwMs .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-upDbTztwMs .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upDbTztwMs .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upDbTztwMs .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-upDbTztwMs .mbr-section-title {
  color: #000000;
}
.cid-upDbTztwMs .mbr-text {
  color: #000000;
}
.cid-upDbTztwMs .item-title {
  color: #000000;
}
.cid-upDbTztwMs .item-text {
  color: #000000;
}
.cid-upDbTzWiEK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upDbTAfSS6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upDbTAfSS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTAfSS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTAfSS6 .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-upDbTAfSS6 .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-upDbTAfSS6 .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upDbTAfSS6 .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upDbTAfSS6 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upDbTAfSS6 .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upDbTAfSS6 .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upDbTAfSS6 .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-upDbTAfSS6 .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-upDbTAfSS6 .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-upDbTAfSS6 .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-upDbTAfSS6 .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-upDbTAfSS6 .mbr-section-title {
  color: #050f0f;
}
.cid-upDbTAfSS6 .mbr-text {
  color: #050f0f;
}
.cid-upDbTAxGnD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upDbTAxGnD .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTAxGnD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTAxGnD .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-upDbTAxGnD .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-upDbTAxGnD .container {
    padding: 0 26px;
  }
}
.cid-upDbTAxGnD .row {
  justify-content: center;
}
.cid-upDbTAxGnD .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #ffe161;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-upDbTAxGnD .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-upDbTAxGnD .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-upDbTAxGnD .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-upDbTAxGnD .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-upDbTAxGnD .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-upDbTAxGnD .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-upDbTAxGnD .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upDbTAxGnD .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-upDbTAxGnD .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-upDbTAxGnD .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-upDbTAxGnD .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-upDbTAxGnD .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-upDbTAxGnD .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-upDbTAxGnD .mbr-section-title {
  color: #000000;
}
.cid-upDbTAxGnD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upDbTAxGnD .mbr-desc {
  color: #ffffff;
}
.cid-upDbTAxGnD .mbr-text {
  color: #000000;
}
.cid-upDbTAxGnD .mbr-link {
  color: #ffffff;
}
.cid-upDbTASnxD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upDbTASnxD .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTASnxD .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-upDbTASnxD .container {
    padding: 0 30px;
  }
}
.cid-upDbTASnxD .row {
  justify-content: center;
}
.cid-upDbTASnxD .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upDbTASnxD .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upDbTASnxD .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-upDbTASnxD .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-upDbTASnxD .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upDbTASnxD .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-upDbTASnxD .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-upDbTBa1JS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upDbTBa1JS .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTBa1JS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTBa1JS .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upDbTBa1JS .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upDbTBa1JS .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upDbTBa1JS .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upDbTBa1JS .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upDbTBa1JS .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-upDbTBa1JS .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upDbTBa1JS .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #ffe161;
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper:hover,
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upDbTBa1JS .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upDbTBa1JS .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbTBa1JS .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upDbTBa1JS .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upDbTBa1JS .item-title {
  color: #050f0f;
}
.cid-upDbTBa1JS .item-text {
  color: #050f0f;
}
.cid-upDbTBa1JS .list {
  color: #050f0f;
}
.cid-upDbTBCBWG {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffe161;
}
.cid-upDbTBCBWG .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTBCBWG .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-upDbTBCBWG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTBCBWG h1 {
  max-width: 800px;
}
.cid-upDbTBCBWG p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-upDbTBCBWG .btn:hover {
  transform: scale(1.1);
  background: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #0616c2 !important;
}
.cid-upDbTBCBWG .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-upDbTBCBWG .btn div {
  overflow: hidden;
}
.cid-upDbTBCBWG .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-upDbTBCBWG {
    align-items: center;
  }
  .cid-upDbTBCBWG .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-upDbTBCBWG .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-upDbTBCBWG {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-upDbTBCBWG .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-upDbTBCBWG .content-wrap {
    width: 100%;
  }
}
.cid-upDbTBCBWG .mbr-section-subtitle,
.cid-upDbTBCBWG .line {
  color: #291f1e;
}
.cid-upDbTBCBWG .mbr-text,
.cid-upDbTBCBWG .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-upDbTBCBWG .mbr-section-title {
  color: #291f1e;
}
.cid-upDbTC1hii {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-upDbTC1hii .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upDbTC1hii .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTC1hii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTC1hii .content-wrap {
  justify-content: center;
}
.cid-upDbTC1hii .card-wrapper {
  background-color: #ffe161;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upDbTC1hii .card-wrapper {
    display: block;
  }
}
.cid-upDbTC1hii .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upDbTC1hii .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upDbTC1hii .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upDbTC1hii .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upDbTC1hii .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upDbTC1hii .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #4188ff;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upDbTC1hii .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upDbTC1hii .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upDbTC1hii .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #bbbbbb;
}
@media (max-width: 1940px) {
  .cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #4188ff;
}
.cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upDbTC1hii .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upDbTC1hii .mbr-section-title {
  color: #000000;
}
.cid-upDbTC1hii .panel-title-edit {
  color: #150764;
}
.cid-upDbTC1hii .panel-text {
  color: #150764;
}
.cid-upDbTC1hii .panel-title-edit,
.cid-upDbTC1hii .icon-wrapper {
  color: #000000;
}
.cid-upDbTCwysw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
  position: relative;
  overflow: hidden;
}
.cid-upDbTCwysw::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #fafafa -10%, transparent 70%);
}
.cid-upDbTCwysw .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTCwysw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-upDbTCwysw .container {
    padding: 0 16px;
  }
}
.cid-upDbTCwysw .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-upDbTCwysw .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-upDbTCwysw .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upDbTCwysw .mbr-section-title {
  color: #000000;
}
.cid-upDbTCwysw .mbr-text {
  color: #000000;
}
.cid-upFcbvO5KI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upFcbvO5KI .mbr-fallback-image.disabled {
  display: none;
}
.cid-upFcbvO5KI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upFcbvO5KI .items-wrapper {
  justify-content: space-between;
  margin: 0 -5px;
}
.cid-upFcbvO5KI .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upFcbvO5KI .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upFcbvO5KI .panel-group .card {
  position: relative;
  padding: 32px;
  margin-top: 8px;
  background-color: #ffe161;
}
@media (max-width: 992px) {
  .cid-upFcbvO5KI .panel-group .card {
    padding: 24px;
    margin-top: 16px;
  }
}
.cid-upFcbvO5KI .panel-group .card:first-child {
  margin-top: 0;
}
.cid-upFcbvO5KI .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upFcbvO5KI .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upFcbvO5KI .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upFcbvO5KI .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-upFcbvO5KI .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-upFcbvO5KI .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-upFcbvO5KI .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-upFcbvO5KI .panel-group .card .card-header .panel-title:hover .icon-wrapper,
.cid-upFcbvO5KI .panel-group .card .card-header .panel-title:focus .icon-wrapper {
  opacity: .3;
}
.cid-upFcbvO5KI .panel-group .card .panel-collapse .panel-body {
  margin: 32px 0 0 0;
}
@media (max-width: 992px) {
  .cid-upFcbvO5KI .panel-group .card .panel-collapse .panel-body {
    margin: 24px 0 0 0;
  }
}
.cid-upFcbvO5KI .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upFcbvO5KI .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-upFcbvO5KI .card {
  justify-content: space-between;
}
.cid-upFcbvO5KI .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-upFcbvO5KI .panel-title-edit {
  color: #000000;
}
.cid-upFcbvO5KI .panel-text {
  color: #f24d4a;
}
.cid-upFcbvO5KI .panel-text,
.cid-upFcbvO5KI .panel-body {
  color: #1c34cf;
}
.cid-upDbTCPber {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upDbTCPber .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTCPber .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTCPber .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upDbTCPber .content-wrapper {
    padding: 0;
  }
}
.cid-upDbTCPber .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upDbTCPber .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upDbTCPber .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upDbTCPber .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upDbTCPber .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upDbTCPber .mbr-section-title {
  color: #050f0f;
}
.cid-upDbTDjkky {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-upDbTDjkky .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbTDjkky .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upDbTDjkky .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upDbTDjkky .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upDbTDjkky a {
  font-weight: 600;
}
.cid-upDbTDjkky a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upDbTDjkky .col-lg-3,
  .cid-upDbTDjkky .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upDbTDjkky .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upDbTDjkky .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upDbTDjkky h5 {
  margin: 0;
}
.cid-upDbTDjkky .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbTDjkky .iconfont-wrapper {
  position: relative;
}
.cid-upDbTDjkky .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upDbTDjkky .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upDbTDjkky .sociconfont-wrapper {
  display: flex;
}
.cid-upDbTDjkky .card-title,
.cid-upDbTDjkky .iconfont-wrapper {
  color: #000000;
}
.cid-upDbTDjkky .card-text {
  color: #000000;
}
.cid-upDbTDjkky .mbr-section-title {
  color: #000000;
}
.cid-upDbTDjkky .main-title,
.cid-upDbTDjkky .iconfont-wrapper {
  text-align: left;
}
.cid-upDbTDVPmr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-upDbU5VlqF {
  z-index: 1000;
  width: 100%;
}
.cid-upDbU5VlqF nav.navbar {
  position: fixed;
}
.cid-upDbU5VlqF .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-upDbU5VlqF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a1e21 !important;
}
.cid-upDbU5VlqF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upDbU5VlqF .dropdown-item:hover,
.cid-upDbU5VlqF .dropdown-item:focus {
  background: #0616c2 !important;
  color: white !important;
}
.cid-upDbU5VlqF .dropdown-item:hover span {
  color: white;
}
.cid-upDbU5VlqF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upDbU5VlqF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upDbU5VlqF .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upDbU5VlqF .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upDbU5VlqF .nav-link {
  position: relative;
}
.cid-upDbU5VlqF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-upDbU5VlqF .container {
    flex-wrap: nowrap;
  }
}
.cid-upDbU5VlqF .nav-item:focus,
.cid-upDbU5VlqF .nav-link:focus {
  outline: none;
}
.cid-upDbU5VlqF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upDbU5VlqF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upDbU5VlqF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upDbU5VlqF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upDbU5VlqF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upDbU5VlqF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upDbU5VlqF .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 10px 20px !important;
  border: none !important;
}
.cid-upDbU5VlqF .navbar.opened {
  transition: all 0.3s;
}
.cid-upDbU5VlqF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upDbU5VlqF .navbar .navbar-logo img {
  width: auto;
}
.cid-upDbU5VlqF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upDbU5VlqF .navbar.collapsed {
  justify-content: center;
}
.cid-upDbU5VlqF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upDbU5VlqF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upDbU5VlqF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-upDbU5VlqF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upDbU5VlqF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upDbU5VlqF .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-upDbU5VlqF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upDbU5VlqF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upDbU5VlqF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upDbU5VlqF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upDbU5VlqF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upDbU5VlqF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upDbU5VlqF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upDbU5VlqF .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-upDbU5VlqF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upDbU5VlqF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upDbU5VlqF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upDbU5VlqF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upDbU5VlqF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upDbU5VlqF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upDbU5VlqF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upDbU5VlqF .navbar-brand {
  min-height: 46px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
}
.cid-upDbU5VlqF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-upDbU5VlqF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upDbU5VlqF .navbar-brand .navbar-logo {
  position: relative;
  margin-right: 0.6rem !important;
  padding-right: 0.6rem !important;
}
.cid-upDbU5VlqF .navbar-brand .navbar-logo:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  opacity: 0.8;
  background-color: #e3ebf3;
}
.cid-upDbU5VlqF .dropdown-item.active,
.cid-upDbU5VlqF .dropdown-item:active {
  background-color: transparent;
}
.cid-upDbU5VlqF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upDbU5VlqF .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upDbU5VlqF .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upDbU5VlqF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a1e21;
}
.cid-upDbU5VlqF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upDbU5VlqF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upDbU5VlqF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upDbU5VlqF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upDbU5VlqF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upDbU5VlqF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e3ebf3;
}
.cid-upDbU5VlqF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upDbU5VlqF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upDbU5VlqF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upDbU5VlqF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upDbU5VlqF .navbar-toggler-close {
  position: absolute!important;
  right: 90px!important;
  top: 90px!important;
  height: 32px!important;
  width: 32px!important;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .cid-upDbU5VlqF .navbar-toggler-close {
    top: 50px!important;
    right: 50px!important;
    height: 26px!important;
    width: 26px!important;
  }
}
@media (max-width: 767px) {
  .cid-upDbU5VlqF .navbar-toggler-close {
    top: 50px!important;
    right: 20px!important;
    height: 16px!important;
    width: 16px!important;
  }
}
.cid-upDbU5VlqF .navbar-toggler-close span {
  width: 100% !important;
  height: 2px!important;
  top: 50%!important;
}
.cid-upDbU5VlqF .navbar-toggler-close span:nth-child(1) {
  display: none;
}
.cid-upDbU5VlqF .navbar-toggler-close span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
}
.cid-upDbU5VlqF .navbar-toggler-close span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.cid-upDbU5VlqF .navbar-toggler-close span:nth-child(4) {
  display: none;
}
.cid-upDbU5VlqF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upDbU5VlqF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upDbU5VlqF .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-upDbU5VlqF .navbar {
    height: 70px;
  }
  .cid-upDbU5VlqF .navbar.opened {
    height: auto;
  }
  .cid-upDbU5VlqF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upDbU5VlqF .container-fluid {
  padding: 5px 32px !important;
  border-radius: 100px;
  column-gap: 12px;
  background: #1a1e21;
}
.cid-upDbU5VlqF .navbar-collapse {
  margin-left: auto;
}
.cid-upDbU5VlqF .navbar-nav {
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.cid-upDbU5VlqF .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-upDbU5VlqF .navbar-nav .nav-link {
  margin: 0 !important;
  border-radius: 90px;
  padding: 10px 15px !important;
  transition: all .4s;
}
.cid-upDbU5VlqF .mbr-section-btn .btn {
  position: relative;
  min-width: 160px;
  min-height: 46px;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  transition: all .3s;
}
@media (max-width: 991px) {
  .cid-upDbU5VlqF .navbar {
    padding: 0 !important;
  }
  .cid-upDbU5VlqF .container-fluid {
    padding: 5px 20px !important;
    border-radius: 0;
    flex-wrap: nowrap;
  }
  .cid-upDbU5VlqF .navbar-brand {
    max-width: 50%;
    padding-right: 0 !important;
  }
  .cid-upDbU5VlqF .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 100vw;
    max-height: 100vh !important;
    height: 100vh !important;
    margin-left: 0;
    padding: 50px;
    background-image: url("../../../assets/images/background1.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .cid-upDbU5VlqF .navbar-collapse.show {
    opacity: 1;
  }
  .cid-upDbU5VlqF .navbar-nav {
    justify-content: flex-start;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .cid-upDbU5VlqF .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-upDbU5VlqF .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: calc(6vh * 0.38) !important;
    border-radius: 0;
    font-size: 6vh !important;
    line-height: 1 !important;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-upDbU5VlqF .container-fluid {
    padding: 5px 12px !important;
    column-gap: 6px;
  }
  .cid-upDbU5VlqF .navbar-collapse {
    padding: 50px 20px;
  }
  .cid-upDbU5VlqF .navbar-nav .nav-item .nav-link {
    margin-bottom: 12px !important;
    font-size: 32px !important;
  }
  .cid-upDbU5VlqF .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 46px;
    padding: 10px;
  }
}
.cid-upDbU6dnwo {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-color: #1b1818;
  overflow: hidden;
}
.cid-upDbU6dnwo .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU6dnwo .container-fluid,
.cid-upDbU6dnwo .container {
  margin-top: -400px;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-upDbU6dnwo .container-fluid,
  .cid-upDbU6dnwo .container {
    padding: 0 1.5rem;
  }
}
.cid-upDbU6dnwo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbU6dnwo a {
  font-weight: bold;
}
.cid-upDbU6dnwo .image-wrapper {
  transform: translateY(400px);
  padding: 0 2rem;
}
.cid-upDbU6dnwo .image-wrapper img {
  border-radius: 4rem !important;
  height: 800px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-upDbU6dnwo .image-wrapper img {
    height: 400px;
    border-radius: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-upDbU6dnwo .image-wrapper {
    padding: 0;
    transform: translateY(320px);
  }
}
.cid-upDbU6dnwo .row {
  justify-content: space-between;
  background: linear-gradient(to top, #0616c2, #ff6666);
  border-radius: 4rem;
  padding: 2rem;
  padding-top: 450px !important;
}
@media (min-width: 992px) {
  .cid-upDbU6dnwo .row {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-upDbU6dnwo .row {
    padding: 1.5rem 0rem;
    border-radius: 2rem;
    padding-top: 330px !important;
  }
}
@media (max-width: 1400px) {
  .cid-upDbU6dnwo .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-upDbU6dnwo .mbr-section-btn,
.cid-upDbU6dnwo .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-upDbU6dnwo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upDbU6dnwo .mbr-section-title {
  color: #fafafa;
}
.cid-upDbU6dnwo .mbr-text,
.cid-upDbU6dnwo .mbr-section-btn {
  color: #ffffff;
}
.cid-upDbU6dnwo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upDbU6dnwo .mbr-section-subtitle2 {
  color: #ffffff;
}
.cid-upDbU6taMQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upDbU6taMQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU6taMQ .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-upDbU6taMQ .container {
    padding: 0 30px;
  }
}
.cid-upDbU6taMQ .row {
  justify-content: center;
}
.cid-upDbU6taMQ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upDbU6taMQ .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upDbU6taMQ .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upDbU6taMQ .content-wrapper .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-upDbU6taMQ .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  color: #144031;
}
.cid-upDbU6taMQ .list .item-wrap {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}
.cid-upDbU6taMQ .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upDbU6taMQ .list .item-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #000000;
}
.cid-upDbU6taMQ .mbr-section-title {
  color: #000000;
}
.cid-upDbU6taMQ .mbr-text {
  color: #144031;
}
.cid-upDbU6HyyP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-upDbU6HyyP .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upDbU6HyyP .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU6HyyP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbU6HyyP .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upDbU6HyyP .content-wrap .card {
  justify-content: space-between;
}
.cid-upDbU6HyyP .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upDbU6HyyP .content-wrapper {
    padding: 0;
  }
}
.cid-upDbU6HyyP .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upDbU6HyyP .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-upDbU6HyyP .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upDbU6HyyP .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upDbU6HyyP .mbr-desc,
.cid-upDbU6HyyP .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upDbU6HyyP .mbr-section-title,
.cid-upDbU6HyyP .mbr-section-btn {
  color: #000000;
}
.cid-upDbU6WTvm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #ffe161;
}
.cid-upDbU6WTvm .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upDbU6WTvm .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU6WTvm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbU6WTvm .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upDbU6WTvm .content-wrap .card {
  justify-content: space-between;
}
.cid-upDbU6WTvm .content-wrapper {
  padding: 0 28px 0 120px;
}
@media (max-width: 1640px) {
  .cid-upDbU6WTvm .content-wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbU6WTvm .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-upDbU6WTvm .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upDbU6WTvm .content-wrapper .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-upDbU6WTvm .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upDbU6WTvm .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-upDbU6WTvm .image-wrap {
  padding: 0 120px 0 28px;
}
@media (max-width: 1640px) {
  .cid-upDbU6WTvm .image-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbU6WTvm .image-wrap {
    padding: 0;
  }
}
.cid-upDbU6WTvm .image-wrap img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upDbU6WTvm .image-wrap img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-upDbU6WTvm .mbr-section-title {
  color: #150764;
}
.cid-upDbU6WTvm .mbr-text {
  color: #000000;
}
.cid-upDbU6WTvm .mbr-section-title,
.cid-upDbU6WTvm .mbr-section-btn {
  color: #000000;
}
.cid-upDbU7cgVu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-upDbU7cgVu .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upDbU7cgVu .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU7cgVu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbU7cgVu .content-wrap {
  margin: 0;
}
.cid-upDbU7cgVu .content-wrap .card {
  padding: 0;
}
.cid-upDbU7cgVu .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #ffe161;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upDbU7cgVu .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbU7cgVu .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upDbU7cgVu .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upDbU7cgVu .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upDbU7cgVu .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upDbU7cgVu .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upDbU7cgVu .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upDbU7cgVu .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upDbU7cgVu .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbU7cgVu .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upDbU7cgVu .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upDbU7cgVu .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upDbU7cgVu .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upDbU7cgVu .mbr-section-title {
  color: #150764;
}
.cid-upDbU7cgVu .mbr-text {
  color: #150764;
}
.cid-upDbU7cgVu .mbr-section-title,
.cid-upDbU7cgVu .mbr-section-btn {
  color: #000000;
}
.cid-upDbU7cgVu .mbr-text,
.cid-upDbU7cgVu .text-wrap {
  color: #000000;
}
.cid-upDbU7vRmp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upDbU7vRmp .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU7vRmp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbU7vRmp .row {
  justify-content: center;
}
.cid-upDbU7vRmp .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upDbU7vRmp .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upDbU7vRmp .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upDbU7vRmp .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upDbU7vRmp .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upDbU7vRmp .item {
    margin-bottom: 35px;
  }
}
.cid-upDbU7vRmp .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upDbU7vRmp .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upDbU7vRmp .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-upDbU7vRmp .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upDbU7vRmp .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upDbU7vRmp .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.cid-upDbU7vRmp .mbr-section-title {
  color: #000000;
}
.cid-upDbU7vRmp .mbr-text {
  color: #000000;
}
.cid-upDbU7vRmp .item-title {
  color: #000000;
}
.cid-upDbU7vRmp .item-text {
  color: #000000;
}
.cid-upDbU7Zkw1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upDbU8e7uf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upDbU8e7uf .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU8e7uf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbU8e7uf .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-upDbU8e7uf .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-upDbU8e7uf .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upDbU8e7uf .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upDbU8e7uf .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upDbU8e7uf .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upDbU8e7uf .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upDbU8e7uf .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-upDbU8e7uf .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-upDbU8e7uf .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-upDbU8e7uf .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-upDbU8e7uf .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-upDbU8e7uf .mbr-section-title {
  color: #050f0f;
}
.cid-upDbU8e7uf .mbr-text {
  color: #050f0f;
}
.cid-upDbU8ycG5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upDbU8ycG5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU8ycG5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbU8ycG5 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-upDbU8ycG5 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-upDbU8ycG5 .container {
    padding: 0 26px;
  }
}
.cid-upDbU8ycG5 .row {
  justify-content: center;
}
.cid-upDbU8ycG5 .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #ffe161;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-upDbU8ycG5 .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-upDbU8ycG5 .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-upDbU8ycG5 .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-upDbU8ycG5 .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-upDbU8ycG5 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-upDbU8ycG5 .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-upDbU8ycG5 .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upDbU8ycG5 .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-upDbU8ycG5 .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-upDbU8ycG5 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-upDbU8ycG5 .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-upDbU8ycG5 .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-upDbU8ycG5 .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-upDbU8ycG5 .mbr-section-title {
  color: #000000;
}
.cid-upDbU8ycG5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upDbU8ycG5 .mbr-desc {
  color: #ffffff;
}
.cid-upDbU8ycG5 .mbr-text {
  color: #000000;
}
.cid-upDbU8ycG5 .mbr-link {
  color: #ffffff;
}
.cid-upDbU8PdgQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
}
.cid-upDbU8PdgQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU8PdgQ .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-upDbU8PdgQ .container {
    padding: 0 30px;
  }
}
.cid-upDbU8PdgQ .row {
  justify-content: center;
}
.cid-upDbU8PdgQ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upDbU8PdgQ .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upDbU8PdgQ .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-upDbU8PdgQ .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-upDbU8PdgQ .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upDbU8PdgQ .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-upDbU8PdgQ .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-upDbU98Tfm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upDbU98Tfm .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU98Tfm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbU98Tfm .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upDbU98Tfm .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upDbU98Tfm .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upDbU98Tfm .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upDbU98Tfm .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upDbU98Tfm .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-upDbU98Tfm .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upDbU98Tfm .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #ffe161;
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper:hover,
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upDbU98Tfm .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upDbU98Tfm .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbU98Tfm .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upDbU98Tfm .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upDbU98Tfm .item-title {
  color: #050f0f;
}
.cid-upDbU98Tfm .item-text {
  color: #050f0f;
}
.cid-upDbU98Tfm .list {
  color: #050f0f;
}
.cid-upDbU9xCCb {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffe161;
}
.cid-upDbU9xCCb .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU9xCCb .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-upDbU9xCCb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbU9xCCb h1 {
  max-width: 800px;
}
.cid-upDbU9xCCb p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
.cid-upDbU9xCCb .btn:hover {
  transform: scale(1.1);
  background: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #0616c2 !important;
}
.cid-upDbU9xCCb .btn:hover span {
  animation-duration: 0.3s;
  animation-name: btn1;
  display: block;
}
.cid-upDbU9xCCb .btn div {
  overflow: hidden;
}
.cid-upDbU9xCCb .btn span {
  display: block;
}
@keyframes btn1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  51% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 768px) {
  .cid-upDbU9xCCb {
    align-items: center;
  }
  .cid-upDbU9xCCb .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-upDbU9xCCb .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-upDbU9xCCb {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-upDbU9xCCb .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-upDbU9xCCb .content-wrap {
    width: 100%;
  }
}
.cid-upDbU9xCCb .mbr-section-subtitle,
.cid-upDbU9xCCb .line {
  color: #291f1e;
}
.cid-upDbU9xCCb .mbr-text,
.cid-upDbU9xCCb .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-upDbU9xCCb .mbr-section-title {
  color: #291f1e;
}
.cid-upDbU9RgVy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-upDbU9RgVy .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upDbU9RgVy .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbU9RgVy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbU9RgVy .content-wrap {
  justify-content: center;
}
.cid-upDbU9RgVy .card-wrapper {
  background-color: #ffe161;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upDbU9RgVy .card-wrapper {
    display: block;
  }
}
.cid-upDbU9RgVy .card-wrapper .title-wrapper {
  width: 35%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upDbU9RgVy .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upDbU9RgVy .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upDbU9RgVy .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upDbU9RgVy .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upDbU9RgVy .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #4188ff;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upDbU9RgVy .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upDbU9RgVy .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
  border-radius: 0 !important;
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px;
  border-top: 1px solid #bbbbbb;
}
@media (max-width: 1940px) {
  .cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 28px;
  color: #4188ff;
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upDbU9RgVy .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upDbU9RgVy .mbr-section-title {
  color: #000000;
}
.cid-upDbU9RgVy .panel-title-edit {
  color: #150764;
}
.cid-upDbU9RgVy .panel-text {
  color: #150764;
}
.cid-upDbU9RgVy .panel-title-edit,
.cid-upDbU9RgVy .icon-wrapper {
  color: #000000;
}
.cid-upDbUanE74 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffe161;
  position: relative;
  overflow: hidden;
}
.cid-upDbUanE74::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #fafafa -10%, transparent 70%);
}
.cid-upDbUanE74 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbUanE74 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-upDbUanE74 .container {
    padding: 0 16px;
  }
}
.cid-upDbUanE74 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-upDbUanE74 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-upDbUanE74 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upDbUanE74 .mbr-section-title {
  color: #000000;
}
.cid-upDbUanE74 .mbr-text {
  color: #000000;
}
.cid-upFes17G7n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upFes17G7n .mbr-fallback-image.disabled {
  display: none;
}
.cid-upFes17G7n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upFes17G7n .items-wrapper {
  justify-content: space-between;
  margin: 0 -5px;
}
.cid-upFes17G7n .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upFes17G7n .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upFes17G7n .panel-group .card {
  position: relative;
  padding: 32px;
  margin-top: 8px;
  background-color: #ffe161;
}
@media (max-width: 992px) {
  .cid-upFes17G7n .panel-group .card {
    padding: 24px;
    margin-top: 16px;
  }
}
.cid-upFes17G7n .panel-group .card:first-child {
  margin-top: 0;
}
.cid-upFes17G7n .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upFes17G7n .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upFes17G7n .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upFes17G7n .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-upFes17G7n .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-upFes17G7n .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-upFes17G7n .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-upFes17G7n .panel-group .card .card-header .panel-title:hover .icon-wrapper,
.cid-upFes17G7n .panel-group .card .card-header .panel-title:focus .icon-wrapper {
  opacity: .3;
}
.cid-upFes17G7n .panel-group .card .panel-collapse .panel-body {
  margin: 32px 0 0 0;
}
@media (max-width: 992px) {
  .cid-upFes17G7n .panel-group .card .panel-collapse .panel-body {
    margin: 24px 0 0 0;
  }
}
.cid-upFes17G7n .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upFes17G7n .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-upFes17G7n .card {
  justify-content: space-between;
}
.cid-upFes17G7n .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-upFes17G7n .panel-title-edit {
  color: #000000;
}
.cid-upFes17G7n .panel-text {
  color: #f24d4a;
}
.cid-upFes17G7n .panel-text,
.cid-upFes17G7n .panel-body {
  color: #1c34cf;
}
.cid-upDbUaJnnk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upDbUaJnnk .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbUaJnnk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbUaJnnk .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upDbUaJnnk .content-wrapper {
    padding: 0;
  }
}
.cid-upDbUaJnnk .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upDbUaJnnk .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upDbUaJnnk .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upDbUaJnnk .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upDbUaJnnk .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upDbUaJnnk .mbr-section-title {
  color: #050f0f;
}
.cid-upDbUb6ZmO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-upDbUb6ZmO .mbr-fallback-image.disabled {
  display: none;
}
.cid-upDbUb6ZmO .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upDbUb6ZmO .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upDbUb6ZmO .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upDbUb6ZmO a {
  font-weight: 600;
}
.cid-upDbUb6ZmO a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upDbUb6ZmO .col-lg-3,
  .cid-upDbUb6ZmO .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upDbUb6ZmO .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upDbUb6ZmO .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upDbUb6ZmO h5 {
  margin: 0;
}
.cid-upDbUb6ZmO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upDbUb6ZmO .iconfont-wrapper {
  position: relative;
}
.cid-upDbUb6ZmO .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upDbUb6ZmO .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upDbUb6ZmO .sociconfont-wrapper {
  display: flex;
}
.cid-upDbUb6ZmO .card-title,
.cid-upDbUb6ZmO .iconfont-wrapper {
  color: #000000;
}
.cid-upDbUb6ZmO .card-text {
  color: #000000;
}
.cid-upDbUb6ZmO .mbr-section-title {
  color: #000000;
}
.cid-upDbUb6ZmO .main-title,
.cid-upDbUb6ZmO .iconfont-wrapper {
  text-align: left;
}
.cid-upDbUby0Tr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
