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: #e43f3f !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: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !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: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !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: #e43f3f !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: #a61717 !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: #e43f3f;
}
.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: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.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: #e43f3f !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: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.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: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !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='%23e43f3f' %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: #0616c2 !important;
}
.cid-upAgS4lPuK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upAgS4lPuK .dropdown-item:hover,
.cid-upAgS4lPuK .dropdown-item:focus {
  background: #e43f3f !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 - 3rem);
  }
}
.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: #0616c2;
}
.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: #0616c2;
}
.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-upFunZ5xR5 {
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/caf-blog-what-is-freight-forwarding.webp");
}
.cid-upFunZ5xR5 .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-upFunZ5xR5 .wrap {
  padding: 0 25px;
}
.cid-upFunZ5xR5 .wrap:before {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #0616c2;
  top: 0px;
  right: 0px;
}
.cid-upFunZ5xR5 .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-upFunZ5xR5 .mbr-text {
  margin-bottom: 20px;
}
.cid-upFunZ5xR5 .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-upFunZ5xR5 .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-upFunZ5xR5 .container,
  .cid-upFunZ5xR5 .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-upFunZ5xR5 .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-upFunZ5xR5 a.close {
    right: 50px;
    top: 25px;
  }
  .cid-upFunZ5xR5 .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-upFunZ5xR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upFunZ5xR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upFvjdsAeA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upFvjdsAeA .mbr-fallback-image.disabled {
  display: none;
}
.cid-upFvjdsAeA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upFvjdsAeA .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-upFvjdsAeA .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-upFvjdsAeA .container {
    padding: 0 6px;
  }
}
.cid-upFvjdsAeA .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-upFvjdsAeA .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-upFvjdsAeA .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-upFvjdsAeA .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-upFvjdsAeA .row {
    padding: 0 30px;
  }
}
.cid-upFvjdsAeA .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-upFvjdsAeA .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-upFvjdsAeA .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-upFvjdsAeA .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-upFvjdsAeA .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-upFvjdsAeA .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-upFvjdsAeA .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-upFvjdsAeA .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upFvjdsAeA .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-upFvjdsAeA .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-upFvjdsAeA .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-upFvjdsAeA .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upFvjdsAeA .mbr-section-title {
  color: #0616c2;
  text-align: center;
}
.cid-upFvjdsAeA .list {
  color: #131313;
}
.cid-upAihnnL54 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #0616c2;
}
.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: #fafafa;
}
.cid-upFROOZhKY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-upFROOZhKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-upFROOZhKY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upFROOZhKY .items-wrapper {
  justify-content: flex-end;
}
.cid-upFROOZhKY .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upFROOZhKY .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upFROOZhKY .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .cid-upFROOZhKY .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-upFROOZhKY .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-upFROOZhKY .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-upFROOZhKY .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upFROOZhKY .content-wrapper {
  padding-left: 120px;
  padding-left: 0;
  padding-right: 120px;
}
@media (max-width: 1200px) {
  .cid-upFROOZhKY .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upFROOZhKY .content-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .cid-upFROOZhKY .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upFROOZhKY .content-wrapper {
    padding-right: 0;
  }
}
.cid-upFROOZhKY .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-upFROOZhKY .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upFROOZhKY .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upFROOZhKY .mbr-desc {
  color: #272b2e;
}
.cid-upFROOZhKY .mbr-section-title {
  color: #272b2e;
}
.cid-upFROOZhKY .mbr-text,
.cid-upFROOZhKY .text-wrapper {
  color: #272b2e;
}
.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: #0616c2;
  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-upFSp05hLm {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upFSp05hLm .mbr-fallback-image.disabled {
  display: none;
}
.cid-upFSp05hLm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upFSp05hLm .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upFSp05hLm .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upFSp05hLm .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upFSp05hLm .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-upFSp05hLm .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-upFSp05hLm .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-upFSp05hLm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upFSp05hLm .mbr-text,
.cid-upFSp05hLm .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-upFSp05hLm .mbr-section-title,
.cid-upFSp05hLm .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-upAGYqvn43 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0616c2;
}
.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: #fafafa;
}
.cid-upAGYqvn43 .mbr-section-title {
  color: #fafafa;
}
.cid-upAGYqvn43 .mbr-text {
  color: #000000;
}
.cid-upAGYqvn43 .item-title {
  color: #000000;
}
.cid-upAGYqvn43 .item-text {
  color: #000000;
}
.cid-upFSIKgR3J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upFSIKgR3J .mbr-fallback-image.disabled {
  display: none;
}
.cid-upFSIKgR3J .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-upFSIKgR3J .container {
    padding: 0 16px;
  }
}
.cid-upFSIKgR3J .card {
  justify-content: center;
}
.cid-upFSIKgR3J .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #0616c2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upFSIKgR3J .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-upFSIKgR3J .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upFSIKgR3J .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-upFSIKgR3J .mbr-section-title {
  color: #000000;
}
.cid-upFSIKgR3J .mbr-text {
  color: #000000;
}
.cid-upFSIKgR3J .mbr-desc {
  color: #000000;
}
.cid-upFSIKgR3J .mbr-section-title,
.cid-upFSIKgR3J .title-wrapper {
  color: #fafafa;
}
.cid-upFSUG5iCj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0616c2;
}
.cid-upFSUG5iCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-upFSUG5iCj .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-upFSUG5iCj .container {
    padding: 0 16px;
  }
}
.cid-upFSUG5iCj .row {
  position: relative;
  z-index: 1;
}
.cid-upFSUG5iCj .card {
  justify-content: flex-end;
}
.cid-upFSUG5iCj .card-wrapper {
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 1440px) {
  .cid-upFSUG5iCj .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upFSUG5iCj .card-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upFSUG5iCj .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-upFSUG5iCj .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-upFSUG5iCj .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-upFSUG5iCj .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upFSUG5iCj .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-upFSUG5iCj .card-wrapper .card-wrap {
  background-color: #000000;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-upFSUG5iCj .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-upFSUG5iCj .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-upFSUG5iCj .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-upFSUG5iCj .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upFSUG5iCj .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-upFSUG5iCj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upFSUG5iCj .text-wrapper {
  margin-left: 104px;
  margin-left: 0;
  margin-right: 104px;
}
@media (max-width: 1440px) {
  .cid-upFSUG5iCj .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .text-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upFSUG5iCj .text-wrapper {
    margin-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upFSUG5iCj .text-wrapper {
    margin-right: 0;
  }
}
.cid-upFSUG5iCj .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-upFSUG5iCj .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-upFSUG5iCj .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-upFSUG5iCj .mbr-text {
  color: #000000;
}
.cid-upFSUG5iCj .card-desc {
  color: #000000;
}
.cid-upFSUG5iCj .card-text {
  color: #ffffff;
}
.cid-upFSUG5iCj .card-name {
  color: #ffffff;
}
.cid-upFSUG5iCj .card-role {
  color: #ffffff;
}
.cid-upFSUG5iCj .mbr-text,
.cid-upFSUG5iCj .mbr-section-btn {
  color: #fafafa;
}
.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: #fafafa;
}
.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-upG140q9db {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #0616c2;
}
.cid-upG140q9db .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-upG140q9db .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-upG140q9db .video-block {
    width: 100% !important;
  }
}
.cid-upG140q9db .mbr-section-title {
  color: #fafafa;
}
.cid-upG1GtSgFR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upG1GtSgFR blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #0616c2;
}
.cid-upG1GtSgFR .mbr-section-title {
  color: #fafafa;
}
.cid-upG1GtSgFR .mbr-text {
  color: #fafafa;
}
.cid-upALH4eW69 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #0616c2;
}
.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: #fafafa;
  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: #000000;
  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: #000000;
}
.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-upG20Dk0d6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0616c2;
}
.cid-upG20Dk0d6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG20Dk0d6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG20Dk0d6 .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-upG20Dk0d6 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upG20Dk0d6 .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upG20Dk0d6 .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-upG20Dk0d6 .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-upG20Dk0d6 .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-upG20Dk0d6 .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upG20Dk0d6 .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upG20Dk0d6 .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upG20Dk0d6 .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-upG20Dk0d6 .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-upG20Dk0d6 .mbr-section-title,
.cid-upG20Dk0d6 .mbr-section-btn {
  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: #0616c2;
}
.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: #fafafa;
}
.cid-upAjxif2Ho .card-text {
  color: #ffffff;
}
.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: #0616c2;
  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: #0616c2 !important;
}
.cid-upAgV7emK8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upAgV7emK8 .dropdown-item:hover,
.cid-upAgV7emK8 .dropdown-item:focus {
  background: #e43f3f !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 - 3rem);
  }
}
.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: #0616c2;
}
.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: #0616c2;
}
.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-upG7UlpuUb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upG7UlpuUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG7UlpuUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG7UlpuUb .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-upG7UlpuUb .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-upG7UlpuUb .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upG7UlpuUb .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upG7UlpuUb .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upG7UlpuUb .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upG7UlpuUb .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upG7UlpuUb .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-upG7UlpuUb .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-upG7UlpuUb .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-upG7UlpuUb .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-upG7UlpuUb .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-upG7UlpuUb .mbr-section-title {
  color: #050f0f;
}
.cid-upG7UlpuUb .mbr-text {
  color: #050f0f;
}
.cid-upD7xbhdev {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.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: #0616c2;
  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-upD7xbhdev .mbr-text,
.cid-upD7xbhdev .mbr-section-btn {
  color: #fafafa;
}
.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-upG8gzS000 {
  z-index: 1000;
  width: 100%;
}
.cid-upG8gzS000 nav.navbar {
  position: fixed;
}
.cid-upG8gzS000 .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-upG8gzS000 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0616c2 !important;
}
.cid-upG8gzS000 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upG8gzS000 .dropdown-item:hover,
.cid-upG8gzS000 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-upG8gzS000 .dropdown-item:hover span {
  color: white;
}
.cid-upG8gzS000 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upG8gzS000 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upG8gzS000 .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upG8gzS000 .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upG8gzS000 .nav-link {
  position: relative;
}
.cid-upG8gzS000 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-upG8gzS000 .container {
    flex-wrap: nowrap;
  }
}
.cid-upG8gzS000 .nav-item:focus,
.cid-upG8gzS000 .nav-link:focus {
  outline: none;
}
.cid-upG8gzS000 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upG8gzS000 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upG8gzS000 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upG8gzS000 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upG8gzS000 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upG8gzS000 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upG8gzS000 .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 10px 20px !important;
  border: none !important;
}
.cid-upG8gzS000 .navbar.opened {
  transition: all 0.3s;
}
.cid-upG8gzS000 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upG8gzS000 .navbar .navbar-logo img {
  width: auto;
}
.cid-upG8gzS000 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upG8gzS000 .navbar.collapsed {
  justify-content: center;
}
.cid-upG8gzS000 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upG8gzS000 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upG8gzS000 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-upG8gzS000 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upG8gzS000 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upG8gzS000 .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-upG8gzS000 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upG8gzS000 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upG8gzS000 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upG8gzS000 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upG8gzS000 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upG8gzS000 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upG8gzS000 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upG8gzS000 .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-upG8gzS000 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upG8gzS000 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upG8gzS000 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upG8gzS000 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upG8gzS000 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upG8gzS000 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upG8gzS000 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upG8gzS000 .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-upG8gzS000 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-upG8gzS000 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upG8gzS000 .navbar-brand .navbar-logo {
  position: relative;
  margin-right: 0.6rem !important;
  padding-right: 0.6rem !important;
}
.cid-upG8gzS000 .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-upG8gzS000 .dropdown-item.active,
.cid-upG8gzS000 .dropdown-item:active {
  background-color: transparent;
}
.cid-upG8gzS000 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upG8gzS000 .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upG8gzS000 .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upG8gzS000 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0616c2;
}
.cid-upG8gzS000 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upG8gzS000 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upG8gzS000 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upG8gzS000 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upG8gzS000 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upG8gzS000 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e3ebf3;
}
.cid-upG8gzS000 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upG8gzS000 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upG8gzS000 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upG8gzS000 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upG8gzS000 .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-upG8gzS000 .navbar-toggler-close {
    top: 50px!important;
    right: 50px!important;
    height: 26px!important;
    width: 26px!important;
  }
}
@media (max-width: 767px) {
  .cid-upG8gzS000 .navbar-toggler-close {
    top: 50px!important;
    right: 20px!important;
    height: 16px!important;
    width: 16px!important;
  }
}
.cid-upG8gzS000 .navbar-toggler-close span {
  width: 100% !important;
  height: 2px!important;
  top: 50%!important;
}
.cid-upG8gzS000 .navbar-toggler-close span:nth-child(1) {
  display: none;
}
.cid-upG8gzS000 .navbar-toggler-close span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
}
.cid-upG8gzS000 .navbar-toggler-close span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.cid-upG8gzS000 .navbar-toggler-close span:nth-child(4) {
  display: none;
}
.cid-upG8gzS000 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upG8gzS000 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upG8gzS000 .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-upG8gzS000 .navbar {
    height: 70px;
  }
  .cid-upG8gzS000 .navbar.opened {
    height: auto;
  }
  .cid-upG8gzS000 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upG8gzS000 .container-fluid {
  padding: 5px 32px !important;
  border-radius: 100px;
  column-gap: 12px;
  background: #0616c2;
}
.cid-upG8gzS000 .navbar-collapse {
  margin-left: auto;
}
.cid-upG8gzS000 .navbar-nav {
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.cid-upG8gzS000 .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-upG8gzS000 .navbar-nav .nav-link {
  margin: 0 !important;
  border-radius: 90px;
  padding: 10px 15px !important;
  transition: all .4s;
}
.cid-upG8gzS000 .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-upG8gzS000 .navbar {
    padding: 0 !important;
  }
  .cid-upG8gzS000 .container-fluid {
    padding: 5px 20px !important;
    border-radius: 0;
    flex-wrap: nowrap;
  }
  .cid-upG8gzS000 .navbar-brand {
    max-width: 50%;
    padding-right: 0 !important;
  }
  .cid-upG8gzS000 .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-upG8gzS000 .navbar-collapse.show {
    opacity: 1;
  }
  .cid-upG8gzS000 .navbar-nav {
    justify-content: flex-start;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .cid-upG8gzS000 .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-upG8gzS000 .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-upG8gzS000 .container-fluid {
    padding: 5px 12px !important;
    column-gap: 6px;
  }
  .cid-upG8gzS000 .navbar-collapse {
    padding: 50px 20px;
  }
  .cid-upG8gzS000 .navbar-nav .nav-item .nav-link {
    margin-bottom: 12px !important;
    font-size: 32px !important;
  }
  .cid-upG8gzS000 .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 46px;
    padding: 10px;
  }
}
.cid-upG8gAjbYg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upG8gAjbYg .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG8gAjbYg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG8gAjbYg .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-upG8gAjbYg .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-upG8gAjbYg .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upG8gAjbYg .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upG8gAjbYg .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upG8gAjbYg .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upG8gAjbYg .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upG8gAjbYg .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-upG8gAjbYg .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-upG8gAjbYg .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-upG8gAjbYg .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-upG8gAjbYg .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-upG8gAjbYg .mbr-section-title {
  color: #050f0f;
}
.cid-upG8gAjbYg .mbr-text {
  color: #050f0f;
}
.cid-upG8gAHV9N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upG8gAHV9N .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG8gAHV9N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG8gAHV9N .card-wrapper {
  background: #0616c2;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upG8gAHV9N .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upG8gAHV9N .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upG8gAHV9N .card-wrapper {
    padding: 4rem;
  }
}
.cid-upG8gAHV9N .mbr-text,
.cid-upG8gAHV9N .mbr-section-btn {
  color: #fafafa;
}
.cid-upG8gB0hgX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upG8gB0hgX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG8gB0hgX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG8gB0hgX .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upG8gB0hgX .content-wrapper {
    padding: 0;
  }
}
.cid-upG8gB0hgX .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upG8gB0hgX .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upG8gB0hgX .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upG8gB0hgX .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upG8gB0hgX .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upG8gB0hgX .mbr-section-title {
  color: #050f0f;
}
.cid-upG8gBsej8 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-upG8gBsej8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upG8gBsej8 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upG8gBsej8 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upG8gBsej8 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upG8gBsej8 a {
  font-weight: 600;
}
.cid-upG8gBsej8 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upG8gBsej8 .col-lg-3,
  .cid-upG8gBsej8 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upG8gBsej8 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upG8gBsej8 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upG8gBsej8 h5 {
  margin: 0;
}
.cid-upG8gBsej8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upG8gBsej8 .iconfont-wrapper {
  position: relative;
}
.cid-upG8gBsej8 .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-upG8gBsej8 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upG8gBsej8 .sociconfont-wrapper {
  display: flex;
}
.cid-upG8gBsej8 .card-title,
.cid-upG8gBsej8 .iconfont-wrapper {
  color: #000000;
}
.cid-upG8gBsej8 .card-text {
  color: #000000;
}
.cid-upG8gBsej8 .mbr-section-title {
  color: #000000;
}
.cid-upG8gBsej8 .main-title,
.cid-upG8gBsej8 .iconfont-wrapper {
  text-align: left;
}
.cid-upG8gBWyYd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-upGbDshFLh {
  z-index: 1000;
  width: 100%;
}
.cid-upGbDshFLh nav.navbar {
  position: fixed;
}
.cid-upGbDshFLh .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-upGbDshFLh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0616c2 !important;
}
.cid-upGbDshFLh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upGbDshFLh .dropdown-item:hover,
.cid-upGbDshFLh .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-upGbDshFLh .dropdown-item:hover span {
  color: white;
}
.cid-upGbDshFLh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upGbDshFLh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upGbDshFLh .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upGbDshFLh .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upGbDshFLh .nav-link {
  position: relative;
}
.cid-upGbDshFLh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-upGbDshFLh .container {
    flex-wrap: nowrap;
  }
}
.cid-upGbDshFLh .nav-item:focus,
.cid-upGbDshFLh .nav-link:focus {
  outline: none;
}
.cid-upGbDshFLh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upGbDshFLh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upGbDshFLh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upGbDshFLh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upGbDshFLh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upGbDshFLh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upGbDshFLh .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 10px 20px !important;
  border: none !important;
}
.cid-upGbDshFLh .navbar.opened {
  transition: all 0.3s;
}
.cid-upGbDshFLh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upGbDshFLh .navbar .navbar-logo img {
  width: auto;
}
.cid-upGbDshFLh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upGbDshFLh .navbar.collapsed {
  justify-content: center;
}
.cid-upGbDshFLh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upGbDshFLh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upGbDshFLh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-upGbDshFLh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upGbDshFLh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upGbDshFLh .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-upGbDshFLh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upGbDshFLh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upGbDshFLh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upGbDshFLh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upGbDshFLh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upGbDshFLh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upGbDshFLh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upGbDshFLh .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-upGbDshFLh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upGbDshFLh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upGbDshFLh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upGbDshFLh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upGbDshFLh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upGbDshFLh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upGbDshFLh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upGbDshFLh .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-upGbDshFLh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-upGbDshFLh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upGbDshFLh .navbar-brand .navbar-logo {
  position: relative;
  margin-right: 0.6rem !important;
  padding-right: 0.6rem !important;
}
.cid-upGbDshFLh .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-upGbDshFLh .dropdown-item.active,
.cid-upGbDshFLh .dropdown-item:active {
  background-color: transparent;
}
.cid-upGbDshFLh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upGbDshFLh .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upGbDshFLh .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upGbDshFLh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0616c2;
}
.cid-upGbDshFLh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upGbDshFLh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upGbDshFLh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upGbDshFLh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upGbDshFLh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upGbDshFLh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e3ebf3;
}
.cid-upGbDshFLh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upGbDshFLh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGbDshFLh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGbDshFLh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upGbDshFLh .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-upGbDshFLh .navbar-toggler-close {
    top: 50px!important;
    right: 50px!important;
    height: 26px!important;
    width: 26px!important;
  }
}
@media (max-width: 767px) {
  .cid-upGbDshFLh .navbar-toggler-close {
    top: 50px!important;
    right: 20px!important;
    height: 16px!important;
    width: 16px!important;
  }
}
.cid-upGbDshFLh .navbar-toggler-close span {
  width: 100% !important;
  height: 2px!important;
  top: 50%!important;
}
.cid-upGbDshFLh .navbar-toggler-close span:nth-child(1) {
  display: none;
}
.cid-upGbDshFLh .navbar-toggler-close span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
}
.cid-upGbDshFLh .navbar-toggler-close span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.cid-upGbDshFLh .navbar-toggler-close span:nth-child(4) {
  display: none;
}
.cid-upGbDshFLh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upGbDshFLh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upGbDshFLh .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-upGbDshFLh .navbar {
    height: 70px;
  }
  .cid-upGbDshFLh .navbar.opened {
    height: auto;
  }
  .cid-upGbDshFLh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upGbDshFLh .container-fluid {
  padding: 5px 32px !important;
  border-radius: 100px;
  column-gap: 12px;
  background: #0616c2;
}
.cid-upGbDshFLh .navbar-collapse {
  margin-left: auto;
}
.cid-upGbDshFLh .navbar-nav {
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.cid-upGbDshFLh .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-upGbDshFLh .navbar-nav .nav-link {
  margin: 0 !important;
  border-radius: 90px;
  padding: 10px 15px !important;
  transition: all .4s;
}
.cid-upGbDshFLh .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-upGbDshFLh .navbar {
    padding: 0 !important;
  }
  .cid-upGbDshFLh .container-fluid {
    padding: 5px 20px !important;
    border-radius: 0;
    flex-wrap: nowrap;
  }
  .cid-upGbDshFLh .navbar-brand {
    max-width: 50%;
    padding-right: 0 !important;
  }
  .cid-upGbDshFLh .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-upGbDshFLh .navbar-collapse.show {
    opacity: 1;
  }
  .cid-upGbDshFLh .navbar-nav {
    justify-content: flex-start;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .cid-upGbDshFLh .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-upGbDshFLh .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-upGbDshFLh .container-fluid {
    padding: 5px 12px !important;
    column-gap: 6px;
  }
  .cid-upGbDshFLh .navbar-collapse {
    padding: 50px 20px;
  }
  .cid-upGbDshFLh .navbar-nav .nav-item .nav-link {
    margin-bottom: 12px !important;
    font-size: 32px !important;
  }
  .cid-upGbDshFLh .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 46px;
    padding: 10px;
  }
}
.cid-upGbDsIbrZ {
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/freight-transport-1-1000x669.jpg");
}
.cid-upGbDsIbrZ .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-upGbDsIbrZ .wrap {
  padding: 0 25px;
}
.cid-upGbDsIbrZ .wrap:before {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #0616c2;
  top: 0px;
  right: 0px;
}
.cid-upGbDsIbrZ .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-upGbDsIbrZ .mbr-text {
  margin-bottom: 20px;
}
.cid-upGbDsIbrZ .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-upGbDsIbrZ .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-upGbDsIbrZ .container,
  .cid-upGbDsIbrZ .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-upGbDsIbrZ .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-upGbDsIbrZ a.close {
    right: 50px;
    top: 25px;
  }
  .cid-upGbDsIbrZ .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-upGbDsIbrZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDsIbrZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDtk54m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upGbDtk54m .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDtk54m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDtk54m .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-upGbDtk54m .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDtk54m .container {
    padding: 0 6px;
  }
}
.cid-upGbDtk54m .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-upGbDtk54m .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbDtk54m .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDtk54m .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-upGbDtk54m .row {
    padding: 0 30px;
  }
}
.cid-upGbDtk54m .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-upGbDtk54m .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-upGbDtk54m .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-upGbDtk54m .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-upGbDtk54m .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-upGbDtk54m .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-upGbDtk54m .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-upGbDtk54m .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upGbDtk54m .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-upGbDtk54m .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-upGbDtk54m .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-upGbDtk54m .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upGbDtk54m .mbr-section-title {
  color: #0616c2;
  text-align: center;
}
.cid-upGbDtk54m .list {
  color: #131313;
}
.cid-upGbDtGMJi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #0616c2;
}
.cid-upGbDtGMJi .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upGbDtGMJi .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDtGMJi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDtGMJi .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upGbDtGMJi .content-wrap .card {
  justify-content: space-between;
}
.cid-upGbDtGMJi .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upGbDtGMJi .content-wrapper {
    padding: 0;
  }
}
.cid-upGbDtGMJi .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upGbDtGMJi .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-upGbDtGMJi .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upGbDtGMJi .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upGbDtGMJi .mbr-desc,
.cid-upGbDtGMJi .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upGbDtGMJi .mbr-section-title,
.cid-upGbDtGMJi .mbr-section-btn {
  color: #fafafa;
}
.cid-upGbDu50NT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-upGbDu50NT .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDu50NT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDu50NT .items-wrapper {
  justify-content: flex-end;
}
.cid-upGbDu50NT .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upGbDu50NT .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upGbDu50NT .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .cid-upGbDu50NT .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-upGbDu50NT .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbDu50NT .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-upGbDu50NT .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upGbDu50NT .content-wrapper {
  padding-left: 120px;
  padding-left: 0;
  padding-right: 120px;
}
@media (max-width: 1200px) {
  .cid-upGbDu50NT .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDu50NT .content-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .cid-upGbDu50NT .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDu50NT .content-wrapper {
    padding-right: 0;
  }
}
.cid-upGbDu50NT .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-upGbDu50NT .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upGbDu50NT .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upGbDu50NT .mbr-desc {
  color: #272b2e;
}
.cid-upGbDu50NT .mbr-section-title {
  color: #272b2e;
}
.cid-upGbDu50NT .mbr-text,
.cid-upGbDu50NT .text-wrapper {
  color: #272b2e;
}
.cid-upGbDuz3RN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-upGbDuz3RN .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upGbDuz3RN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDuz3RN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDuz3RN .content-wrap {
  margin: 0;
}
.cid-upGbDuz3RN .content-wrap .card {
  padding: 0;
}
.cid-upGbDuz3RN .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #0616c2;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upGbDuz3RN .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDuz3RN .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upGbDuz3RN .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upGbDuz3RN .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upGbDuz3RN .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbDuz3RN .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upGbDuz3RN .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upGbDuz3RN .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upGbDuz3RN .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDuz3RN .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upGbDuz3RN .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upGbDuz3RN .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upGbDuz3RN .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upGbDuz3RN .mbr-section-title {
  color: #150764;
}
.cid-upGbDuz3RN .mbr-text {
  color: #150764;
}
.cid-upGbDuz3RN .mbr-section-title,
.cid-upGbDuz3RN .mbr-section-btn {
  color: #000000;
}
.cid-upGbDuz3RN .mbr-text,
.cid-upGbDuz3RN .text-wrap {
  color: #000000;
}
.cid-upGbDv68B1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upGbDv68B1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDv68B1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDv68B1 .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbDv68B1 .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upGbDv68B1 .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbDv68B1 .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-upGbDv68B1 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-upGbDv68B1 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-upGbDv68B1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upGbDv68B1 .mbr-text,
.cid-upGbDv68B1 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-upGbDv68B1 .mbr-section-title,
.cid-upGbDv68B1 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-upGbDvwbop {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0616c2;
}
.cid-upGbDvwbop .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDvwbop .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDvwbop .row {
  justify-content: center;
}
.cid-upGbDvwbop .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upGbDvwbop .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upGbDvwbop .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upGbDvwbop .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upGbDvwbop .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upGbDvwbop .item {
    margin-bottom: 35px;
  }
}
.cid-upGbDvwbop .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upGbDvwbop .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upGbDvwbop .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-upGbDvwbop .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upGbDvwbop .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upGbDvwbop .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-upGbDvwbop .mbr-section-title {
  color: #fafafa;
}
.cid-upGbDvwbop .mbr-text {
  color: #000000;
}
.cid-upGbDvwbop .item-title {
  color: #000000;
}
.cid-upGbDvwbop .item-text {
  color: #000000;
}
.cid-upGbDw7QdN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upGbDw7QdN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDw7QdN .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-upGbDw7QdN .container {
    padding: 0 16px;
  }
}
.cid-upGbDw7QdN .card {
  justify-content: center;
}
.cid-upGbDw7QdN .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #0616c2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upGbDw7QdN .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-upGbDw7QdN .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upGbDw7QdN .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-upGbDw7QdN .mbr-section-title {
  color: #000000;
}
.cid-upGbDw7QdN .mbr-text {
  color: #000000;
}
.cid-upGbDw7QdN .mbr-desc {
  color: #000000;
}
.cid-upGbDw7QdN .mbr-section-title,
.cid-upGbDw7QdN .title-wrapper {
  color: #fafafa;
}
.cid-upGbDwzpDi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0616c2;
}
.cid-upGbDwzpDi .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDwzpDi .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-upGbDwzpDi .container {
    padding: 0 16px;
  }
}
.cid-upGbDwzpDi .row {
  position: relative;
  z-index: 1;
}
.cid-upGbDwzpDi .card {
  justify-content: flex-end;
}
.cid-upGbDwzpDi .card-wrapper {
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 1440px) {
  .cid-upGbDwzpDi .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upGbDwzpDi .card-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-upGbDwzpDi .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upGbDwzpDi .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-upGbDwzpDi .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-upGbDwzpDi .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-upGbDwzpDi .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upGbDwzpDi .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upGbDwzpDi .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-upGbDwzpDi .card-wrapper .card-wrap {
  background-color: #000000;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-upGbDwzpDi .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-upGbDwzpDi .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-upGbDwzpDi .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-upGbDwzpDi .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-upGbDwzpDi .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-upGbDwzpDi .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upGbDwzpDi .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-upGbDwzpDi .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upGbDwzpDi .text-wrapper {
  margin-left: 104px;
  margin-left: 0;
  margin-right: 104px;
}
@media (max-width: 1440px) {
  .cid-upGbDwzpDi .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDwzpDi .text-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upGbDwzpDi .text-wrapper {
    margin-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDwzpDi .text-wrapper {
    margin-right: 0;
  }
}
.cid-upGbDwzpDi .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-upGbDwzpDi .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-upGbDwzpDi .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-upGbDwzpDi .mbr-text {
  color: #000000;
}
.cid-upGbDwzpDi .card-desc {
  color: #000000;
}
.cid-upGbDwzpDi .card-text {
  color: #ffffff;
}
.cid-upGbDwzpDi .card-name {
  color: #ffffff;
}
.cid-upGbDwzpDi .card-role {
  color: #ffffff;
}
.cid-upGbDwzpDi .mbr-text,
.cid-upGbDwzpDi .mbr-section-btn {
  color: #fafafa;
}
.cid-upGbDx1srl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upGbDx1srl .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDx1srl .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-upGbDx1srl .container {
    padding: 0 15px;
  }
}
.cid-upGbDx1srl .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-upGbDx1srl .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbDx1srl .content-wrapper {
    padding-right: 0;
  }
}
.cid-upGbDx1srl .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-upGbDx1srl .content-wrap {
    display: block;
  }
}
.cid-upGbDx1srl .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbDx1srl .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-upGbDx1srl .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbDx1srl .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-upGbDx1srl .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-upGbDx1srl .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-upGbDx1srl .mbr-section-title {
  color: #000000;
}
.cid-upGbDx1srl .mbr-desc,
.cid-upGbDx1srl .desc-wrapper {
  color: #3f1819;
}
.cid-upGbDxtC1o {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #0616c2;
}
.cid-upGbDxtC1o .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-upGbDxtC1o .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-upGbDxtC1o .video-block {
    width: 100% !important;
  }
}
.cid-upGbDxtC1o .mbr-section-title {
  color: #fafafa;
}
.cid-upGbDxTMSS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upGbDxTMSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDxTMSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDxTMSS .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upGbDxTMSS .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upGbDxTMSS .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upGbDxTMSS .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upGbDxTMSS .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upGbDxTMSS .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-upGbDxTMSS .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upGbDxTMSS .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upGbDxTMSS .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: #fafafa;
}
.cid-upGbDxTMSS .content-wrapper .item .item-wrapper:hover,
.cid-upGbDxTMSS .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upGbDxTMSS .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upGbDxTMSS .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-upGbDxTMSS .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upGbDxTMSS .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-upGbDxTMSS .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upGbDxTMSS .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDxTMSS .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upGbDxTMSS .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upGbDxTMSS .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upGbDxTMSS .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upGbDxTMSS .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upGbDxTMSS .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upGbDxTMSS .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDxTMSS .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upGbDxTMSS .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upGbDxTMSS .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-upGbDxTMSS .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upGbDxTMSS .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upGbDxTMSS .item-title {
  color: #050f0f;
}
.cid-upGbDxTMSS .item-text {
  color: #050f0f;
}
.cid-upGbDxTMSS .list {
  color: #050f0f;
}
.cid-upGbDyV5Jo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #0616c2;
}
.cid-upGbDyV5Jo .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upGbDyV5Jo .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDyV5Jo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDyV5Jo .content-wrap {
  justify-content: center;
}
.cid-upGbDyV5Jo .card-wrapper {
  background-color: #fafafa;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upGbDyV5Jo .card-wrapper {
    display: block;
  }
}
.cid-upGbDyV5Jo .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-upGbDyV5Jo .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbDyV5Jo .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upGbDyV5Jo .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upGbDyV5Jo .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upGbDyV5Jo .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upGbDyV5Jo .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upGbDyV5Jo .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upGbDyV5Jo .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upGbDyV5Jo .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-upGbDyV5Jo .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upGbDyV5Jo .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-upGbDyV5Jo .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDyV5Jo .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upGbDyV5Jo .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upGbDyV5Jo .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upGbDyV5Jo .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-upGbDyV5Jo .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: #000000;
}
.cid-upGbDyV5Jo .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upGbDyV5Jo .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upGbDyV5Jo .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbDyV5Jo .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upGbDyV5Jo .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upGbDyV5Jo .mbr-section-title {
  color: #000000;
}
.cid-upGbDyV5Jo .panel-title-edit {
  color: #150764;
}
.cid-upGbDyV5Jo .panel-text {
  color: #150764;
}
.cid-upGbDyV5Jo .panel-title-edit,
.cid-upGbDyV5Jo .icon-wrapper {
  color: #000000;
}
.cid-upGbDytJa0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upGbDytJa0 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #0616c2;
}
.cid-upGbDytJa0 .mbr-section-title {
  color: #fafafa;
}
.cid-upGbDytJa0 .mbr-text {
  color: #fafafa;
}
.cid-upGKBu3cJ4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upGKBu3cJ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGKBu3cJ4 .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-upGKBu3cJ4 .container {
    padding: 0 16px;
  }
}
.cid-upGKBu3cJ4 .row {
  justify-content: center;
}
.cid-upGKBu3cJ4 .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #0616c2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upGKBu3cJ4 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-upGKBu3cJ4 .panel-group .card {
  position: relative;
  border-radius: 24px !important;
  padding: 64px;
  margin-top: 32px;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #0616c2;
}
@media (max-width: 992px) {
  .cid-upGKBu3cJ4 .panel-group .card {
    padding: 24px;
  }
}
.cid-upGKBu3cJ4 .panel-group .card:first-child {
  margin-top: 0;
}
.cid-upGKBu3cJ4 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upGKBu3cJ4 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upGKBu3cJ4 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upGKBu3cJ4 .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upGKBu3cJ4 .panel-group .card .card-header .panel-title .icon-wrapper:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff0b0;
  border-radius: 100%;
  opacity: .2;
  transition: all 0.3s ease-in-out;
}
.cid-upGKBu3cJ4 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  color: #fff0b0;
}
.cid-upGKBu3cJ4 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  opacity: .5;
}
.cid-upGKBu3cJ4 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-upGKBu3cJ4 .panel-group .card .panel-collapse .panel-body {
  padding-top: 56px;
}
@media (max-width: 992px) {
  .cid-upGKBu3cJ4 .panel-group .card .panel-collapse .panel-body {
    padding-top: 32px;
  }
}
.cid-upGKBu3cJ4 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upGKBu3cJ4 .mbr-section-title {
  color: #000000;
}
.cid-upGKBu3cJ4 .panel-title-edit {
  color: #ffffff;
}
.cid-upGKBu3cJ4 .panel-text {
  color: #ffffff;
}
.cid-upGKBu3cJ4 .mbr-section-title,
.cid-upGKBu3cJ4 .title-wrapper {
  color: #fafafa;
}
.cid-upGbDA0hec {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upGbDA0hec .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDA0hec .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDA0hec .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upGbDA0hec .content-wrapper {
    padding: 0;
  }
}
.cid-upGbDA0hec .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upGbDA0hec .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upGbDA0hec .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upGbDA0hec .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upGbDA0hec .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upGbDA0hec .mbr-section-title {
  color: #050f0f;
}
.cid-upGbDAv4eU {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0616c2;
}
.cid-upGbDAv4eU .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDAv4eU .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upGbDAv4eU .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upGbDAv4eU .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upGbDAv4eU a {
  font-weight: 600;
}
.cid-upGbDAv4eU a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upGbDAv4eU .col-lg-3,
  .cid-upGbDAv4eU .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upGbDAv4eU .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upGbDAv4eU .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upGbDAv4eU h5 {
  margin: 0;
}
.cid-upGbDAv4eU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDAv4eU .iconfont-wrapper {
  position: relative;
}
.cid-upGbDAv4eU .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-upGbDAv4eU .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upGbDAv4eU .sociconfont-wrapper {
  display: flex;
}
.cid-upGbDAv4eU .card-title,
.cid-upGbDAv4eU .iconfont-wrapper {
  color: #fafafa;
}
.cid-upGbDAv4eU .card-text {
  color: #ffffff;
}
.cid-upGbDAv4eU .mbr-section-title {
  color: #000000;
}
.cid-upGbDAv4eU .main-title,
.cid-upGbDAv4eU .iconfont-wrapper {
  text-align: left;
}
.cid-upGbDBdQcb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0616c2;
  overflow: hidden;
}
.cid-upGbD30D95 {
  z-index: 1000;
  width: 100%;
}
.cid-upGbD30D95 nav.navbar {
  position: fixed;
}
.cid-upGbD30D95 .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-upGbD30D95 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0616c2 !important;
}
.cid-upGbD30D95 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upGbD30D95 .dropdown-item:hover,
.cid-upGbD30D95 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-upGbD30D95 .dropdown-item:hover span {
  color: white;
}
.cid-upGbD30D95 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upGbD30D95 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upGbD30D95 .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upGbD30D95 .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upGbD30D95 .nav-link {
  position: relative;
}
.cid-upGbD30D95 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-upGbD30D95 .container {
    flex-wrap: nowrap;
  }
}
.cid-upGbD30D95 .nav-item:focus,
.cid-upGbD30D95 .nav-link:focus {
  outline: none;
}
.cid-upGbD30D95 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upGbD30D95 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upGbD30D95 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upGbD30D95 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upGbD30D95 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upGbD30D95 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upGbD30D95 .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 10px 20px !important;
  border: none !important;
}
.cid-upGbD30D95 .navbar.opened {
  transition: all 0.3s;
}
.cid-upGbD30D95 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upGbD30D95 .navbar .navbar-logo img {
  width: auto;
}
.cid-upGbD30D95 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upGbD30D95 .navbar.collapsed {
  justify-content: center;
}
.cid-upGbD30D95 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upGbD30D95 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upGbD30D95 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-upGbD30D95 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upGbD30D95 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upGbD30D95 .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-upGbD30D95 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upGbD30D95 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upGbD30D95 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upGbD30D95 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upGbD30D95 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upGbD30D95 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upGbD30D95 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upGbD30D95 .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-upGbD30D95 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upGbD30D95 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upGbD30D95 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upGbD30D95 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upGbD30D95 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upGbD30D95 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upGbD30D95 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upGbD30D95 .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-upGbD30D95 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-upGbD30D95 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upGbD30D95 .navbar-brand .navbar-logo {
  position: relative;
  margin-right: 0.6rem !important;
  padding-right: 0.6rem !important;
}
.cid-upGbD30D95 .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-upGbD30D95 .dropdown-item.active,
.cid-upGbD30D95 .dropdown-item:active {
  background-color: transparent;
}
.cid-upGbD30D95 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upGbD30D95 .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upGbD30D95 .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upGbD30D95 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0616c2;
}
.cid-upGbD30D95 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upGbD30D95 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upGbD30D95 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upGbD30D95 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upGbD30D95 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upGbD30D95 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e3ebf3;
}
.cid-upGbD30D95 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upGbD30D95 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGbD30D95 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGbD30D95 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upGbD30D95 .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-upGbD30D95 .navbar-toggler-close {
    top: 50px!important;
    right: 50px!important;
    height: 26px!important;
    width: 26px!important;
  }
}
@media (max-width: 767px) {
  .cid-upGbD30D95 .navbar-toggler-close {
    top: 50px!important;
    right: 20px!important;
    height: 16px!important;
    width: 16px!important;
  }
}
.cid-upGbD30D95 .navbar-toggler-close span {
  width: 100% !important;
  height: 2px!important;
  top: 50%!important;
}
.cid-upGbD30D95 .navbar-toggler-close span:nth-child(1) {
  display: none;
}
.cid-upGbD30D95 .navbar-toggler-close span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
}
.cid-upGbD30D95 .navbar-toggler-close span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.cid-upGbD30D95 .navbar-toggler-close span:nth-child(4) {
  display: none;
}
.cid-upGbD30D95 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upGbD30D95 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upGbD30D95 .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-upGbD30D95 .navbar {
    height: 70px;
  }
  .cid-upGbD30D95 .navbar.opened {
    height: auto;
  }
  .cid-upGbD30D95 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upGbD30D95 .container-fluid {
  padding: 5px 32px !important;
  border-radius: 100px;
  column-gap: 12px;
  background: #0616c2;
}
.cid-upGbD30D95 .navbar-collapse {
  margin-left: auto;
}
.cid-upGbD30D95 .navbar-nav {
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.cid-upGbD30D95 .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-upGbD30D95 .navbar-nav .nav-link {
  margin: 0 !important;
  border-radius: 90px;
  padding: 10px 15px !important;
  transition: all .4s;
}
.cid-upGbD30D95 .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-upGbD30D95 .navbar {
    padding: 0 !important;
  }
  .cid-upGbD30D95 .container-fluid {
    padding: 5px 20px !important;
    border-radius: 0;
    flex-wrap: nowrap;
  }
  .cid-upGbD30D95 .navbar-brand {
    max-width: 50%;
    padding-right: 0 !important;
  }
  .cid-upGbD30D95 .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-upGbD30D95 .navbar-collapse.show {
    opacity: 1;
  }
  .cid-upGbD30D95 .navbar-nav {
    justify-content: flex-start;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .cid-upGbD30D95 .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-upGbD30D95 .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-upGbD30D95 .container-fluid {
    padding: 5px 12px !important;
    column-gap: 6px;
  }
  .cid-upGbD30D95 .navbar-collapse {
    padding: 50px 20px;
  }
  .cid-upGbD30D95 .navbar-nav .nav-item .nav-link {
    margin-bottom: 12px !important;
    font-size: 32px !important;
  }
  .cid-upGbD30D95 .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 46px;
    padding: 10px;
  }
}
.cid-upGbD3xTKm {
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/adobestock-138283960-scaled-2000x801.jpg");
}
.cid-upGbD3xTKm .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-upGbD3xTKm .wrap {
  padding: 0 25px;
}
.cid-upGbD3xTKm .wrap:before {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #0616c2;
  top: 0px;
  right: 0px;
}
.cid-upGbD3xTKm .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-upGbD3xTKm .mbr-text {
  margin-bottom: 20px;
}
.cid-upGbD3xTKm .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-upGbD3xTKm .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-upGbD3xTKm .container,
  .cid-upGbD3xTKm .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-upGbD3xTKm .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-upGbD3xTKm a.close {
    right: 50px;
    top: 25px;
  }
  .cid-upGbD3xTKm .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-upGbD3xTKm .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD3xTKm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbD4bDTu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upGbD4bDTu .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD4bDTu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbD4bDTu .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-upGbD4bDTu .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD4bDTu .container {
    padding: 0 6px;
  }
}
.cid-upGbD4bDTu .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-upGbD4bDTu .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbD4bDTu .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD4bDTu .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-upGbD4bDTu .row {
    padding: 0 30px;
  }
}
.cid-upGbD4bDTu .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-upGbD4bDTu .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-upGbD4bDTu .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-upGbD4bDTu .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-upGbD4bDTu .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-upGbD4bDTu .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-upGbD4bDTu .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-upGbD4bDTu .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upGbD4bDTu .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-upGbD4bDTu .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-upGbD4bDTu .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-upGbD4bDTu .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upGbD4bDTu .mbr-section-title {
  color: #0616c2;
  text-align: center;
}
.cid-upGbD4bDTu .list {
  color: #131313;
}
.cid-upGbD4zkIt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #0616c2;
}
.cid-upGbD4zkIt .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upGbD4zkIt .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD4zkIt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbD4zkIt .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upGbD4zkIt .content-wrap .card {
  justify-content: space-between;
}
.cid-upGbD4zkIt .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upGbD4zkIt .content-wrapper {
    padding: 0;
  }
}
.cid-upGbD4zkIt .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upGbD4zkIt .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-upGbD4zkIt .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upGbD4zkIt .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upGbD4zkIt .mbr-desc,
.cid-upGbD4zkIt .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upGbD4zkIt .mbr-section-title,
.cid-upGbD4zkIt .mbr-section-btn {
  color: #fafafa;
}
.cid-upGbD53odi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-upGbD53odi .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD53odi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbD53odi .items-wrapper {
  justify-content: flex-end;
}
.cid-upGbD53odi .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upGbD53odi .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upGbD53odi .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .cid-upGbD53odi .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-upGbD53odi .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbD53odi .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-upGbD53odi .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upGbD53odi .content-wrapper {
  padding-left: 120px;
  padding-left: 0;
  padding-right: 120px;
}
@media (max-width: 1200px) {
  .cid-upGbD53odi .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD53odi .content-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .cid-upGbD53odi .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD53odi .content-wrapper {
    padding-right: 0;
  }
}
.cid-upGbD53odi .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-upGbD53odi .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upGbD53odi .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upGbD53odi .mbr-desc {
  color: #272b2e;
}
.cid-upGbD53odi .mbr-section-title {
  color: #272b2e;
}
.cid-upGbD53odi .mbr-text,
.cid-upGbD53odi .text-wrapper {
  color: #272b2e;
}
.cid-upGbD5qWoK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-upGbD5qWoK .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upGbD5qWoK .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD5qWoK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbD5qWoK .content-wrap {
  margin: 0;
}
.cid-upGbD5qWoK .content-wrap .card {
  padding: 0;
}
.cid-upGbD5qWoK .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #0616c2;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upGbD5qWoK .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD5qWoK .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upGbD5qWoK .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upGbD5qWoK .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upGbD5qWoK .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbD5qWoK .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upGbD5qWoK .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upGbD5qWoK .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upGbD5qWoK .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD5qWoK .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upGbD5qWoK .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upGbD5qWoK .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upGbD5qWoK .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upGbD5qWoK .mbr-section-title {
  color: #150764;
}
.cid-upGbD5qWoK .mbr-text {
  color: #150764;
}
.cid-upGbD5qWoK .mbr-section-title,
.cid-upGbD5qWoK .mbr-section-btn {
  color: #000000;
}
.cid-upGbD5qWoK .mbr-text,
.cid-upGbD5qWoK .text-wrap {
  color: #000000;
}
.cid-upGbD5RPik {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upGbD5RPik .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD5RPik .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbD5RPik .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbD5RPik .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upGbD5RPik .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbD5RPik .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-upGbD5RPik .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-upGbD5RPik .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-upGbD5RPik .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upGbD5RPik .mbr-text,
.cid-upGbD5RPik .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-upGbD5RPik .mbr-section-title,
.cid-upGbD5RPik .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-upGbD6hHFc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0616c2;
}
.cid-upGbD6hHFc .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD6hHFc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbD6hHFc .row {
  justify-content: center;
}
.cid-upGbD6hHFc .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upGbD6hHFc .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upGbD6hHFc .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upGbD6hHFc .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upGbD6hHFc .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upGbD6hHFc .item {
    margin-bottom: 35px;
  }
}
.cid-upGbD6hHFc .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upGbD6hHFc .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upGbD6hHFc .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-upGbD6hHFc .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upGbD6hHFc .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upGbD6hHFc .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-upGbD6hHFc .mbr-section-title {
  color: #fafafa;
}
.cid-upGbD6hHFc .mbr-text {
  color: #000000;
}
.cid-upGbD6hHFc .item-title {
  color: #000000;
}
.cid-upGbD6hHFc .item-text {
  color: #000000;
}
.cid-upGbD6RFwh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upGbD6RFwh .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD6RFwh .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-upGbD6RFwh .container {
    padding: 0 16px;
  }
}
.cid-upGbD6RFwh .card {
  justify-content: center;
}
.cid-upGbD6RFwh .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #0616c2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upGbD6RFwh .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-upGbD6RFwh .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upGbD6RFwh .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-upGbD6RFwh .mbr-section-title {
  color: #000000;
}
.cid-upGbD6RFwh .mbr-text {
  color: #000000;
}
.cid-upGbD6RFwh .mbr-desc {
  color: #000000;
}
.cid-upGbD6RFwh .mbr-section-title,
.cid-upGbD6RFwh .title-wrapper {
  color: #fafafa;
}
.cid-upGbD7iYYg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0616c2;
}
.cid-upGbD7iYYg .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD7iYYg .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-upGbD7iYYg .container {
    padding: 0 16px;
  }
}
.cid-upGbD7iYYg .row {
  position: relative;
  z-index: 1;
}
.cid-upGbD7iYYg .card {
  justify-content: flex-end;
}
.cid-upGbD7iYYg .card-wrapper {
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 1440px) {
  .cid-upGbD7iYYg .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upGbD7iYYg .card-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-upGbD7iYYg .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upGbD7iYYg .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-upGbD7iYYg .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-upGbD7iYYg .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-upGbD7iYYg .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upGbD7iYYg .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upGbD7iYYg .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-upGbD7iYYg .card-wrapper .card-wrap {
  background-color: #000000;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-upGbD7iYYg .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-upGbD7iYYg .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-upGbD7iYYg .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-upGbD7iYYg .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-upGbD7iYYg .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-upGbD7iYYg .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upGbD7iYYg .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-upGbD7iYYg .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upGbD7iYYg .text-wrapper {
  margin-left: 104px;
  margin-left: 0;
  margin-right: 104px;
}
@media (max-width: 1440px) {
  .cid-upGbD7iYYg .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD7iYYg .text-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upGbD7iYYg .text-wrapper {
    margin-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD7iYYg .text-wrapper {
    margin-right: 0;
  }
}
.cid-upGbD7iYYg .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-upGbD7iYYg .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-upGbD7iYYg .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-upGbD7iYYg .mbr-text {
  color: #000000;
}
.cid-upGbD7iYYg .card-desc {
  color: #000000;
}
.cid-upGbD7iYYg .card-text {
  color: #ffffff;
}
.cid-upGbD7iYYg .card-name {
  color: #ffffff;
}
.cid-upGbD7iYYg .card-role {
  color: #ffffff;
}
.cid-upGbD7iYYg .mbr-text,
.cid-upGbD7iYYg .mbr-section-btn {
  color: #fafafa;
}
.cid-upGbD7KKmS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upGbD7KKmS .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD7KKmS .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-upGbD7KKmS .container {
    padding: 0 15px;
  }
}
.cid-upGbD7KKmS .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-upGbD7KKmS .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbD7KKmS .content-wrapper {
    padding-right: 0;
  }
}
.cid-upGbD7KKmS .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-upGbD7KKmS .content-wrap {
    display: block;
  }
}
.cid-upGbD7KKmS .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbD7KKmS .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-upGbD7KKmS .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbD7KKmS .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-upGbD7KKmS .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-upGbD7KKmS .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-upGbD7KKmS .mbr-section-title {
  color: #000000;
}
.cid-upGbD7KKmS .mbr-desc,
.cid-upGbD7KKmS .desc-wrapper {
  color: #3f1819;
}
.cid-upGbD8dRhX {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #0616c2;
}
.cid-upGbD8dRhX .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-upGbD8dRhX .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-upGbD8dRhX .video-block {
    width: 100% !important;
  }
}
.cid-upGbD8dRhX .mbr-section-title {
  color: #fafafa;
}
.cid-upGbD8G9hT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upGbD8G9hT .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD8G9hT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbD8G9hT .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upGbD8G9hT .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upGbD8G9hT .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upGbD8G9hT .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upGbD8G9hT .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upGbD8G9hT .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-upGbD8G9hT .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upGbD8G9hT .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upGbD8G9hT .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: #fafafa;
}
.cid-upGbD8G9hT .content-wrapper .item .item-wrapper:hover,
.cid-upGbD8G9hT .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upGbD8G9hT .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upGbD8G9hT .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-upGbD8G9hT .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upGbD8G9hT .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-upGbD8G9hT .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upGbD8G9hT .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD8G9hT .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upGbD8G9hT .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upGbD8G9hT .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upGbD8G9hT .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upGbD8G9hT .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upGbD8G9hT .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upGbD8G9hT .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD8G9hT .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upGbD8G9hT .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upGbD8G9hT .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-upGbD8G9hT .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upGbD8G9hT .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upGbD8G9hT .item-title {
  color: #050f0f;
}
.cid-upGbD8G9hT .item-text {
  color: #050f0f;
}
.cid-upGbD8G9hT .list {
  color: #050f0f;
}
.cid-upGbD9G3cm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #0616c2;
}
.cid-upGbD9G3cm .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upGbD9G3cm .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbD9G3cm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbD9G3cm .content-wrap {
  justify-content: center;
}
.cid-upGbD9G3cm .card-wrapper {
  background-color: #fafafa;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upGbD9G3cm .card-wrapper {
    display: block;
  }
}
.cid-upGbD9G3cm .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-upGbD9G3cm .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbD9G3cm .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upGbD9G3cm .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upGbD9G3cm .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upGbD9G3cm .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upGbD9G3cm .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upGbD9G3cm .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upGbD9G3cm .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upGbD9G3cm .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-upGbD9G3cm .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upGbD9G3cm .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-upGbD9G3cm .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD9G3cm .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upGbD9G3cm .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upGbD9G3cm .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upGbD9G3cm .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-upGbD9G3cm .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: #000000;
}
.cid-upGbD9G3cm .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upGbD9G3cm .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upGbD9G3cm .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbD9G3cm .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upGbD9G3cm .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upGbD9G3cm .mbr-section-title {
  color: #000000;
}
.cid-upGbD9G3cm .panel-title-edit {
  color: #150764;
}
.cid-upGbD9G3cm .panel-text {
  color: #150764;
}
.cid-upGbD9G3cm .panel-title-edit,
.cid-upGbD9G3cm .icon-wrapper {
  color: #000000;
}
.cid-upGbD9ffVk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upGbD9ffVk blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #0616c2;
}
.cid-upGbD9ffVk .mbr-section-title {
  color: #fafafa;
}
.cid-upGbD9ffVk .mbr-text {
  color: #fafafa;
}
.cid-upGJsm7myz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upGJsm7myz .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGJsm7myz .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-upGJsm7myz .container {
    padding: 0 16px;
  }
}
.cid-upGJsm7myz .row {
  justify-content: center;
}
.cid-upGJsm7myz .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #0616c2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upGJsm7myz .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-upGJsm7myz .panel-group .card {
  position: relative;
  border-radius: 24px !important;
  padding: 64px;
  margin-top: 32px;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #0616c2;
}
@media (max-width: 992px) {
  .cid-upGJsm7myz .panel-group .card {
    padding: 24px;
  }
}
.cid-upGJsm7myz .panel-group .card:first-child {
  margin-top: 0;
}
.cid-upGJsm7myz .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upGJsm7myz .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upGJsm7myz .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upGJsm7myz .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upGJsm7myz .panel-group .card .card-header .panel-title .icon-wrapper:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff0b0;
  border-radius: 100%;
  opacity: .2;
  transition: all 0.3s ease-in-out;
}
.cid-upGJsm7myz .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  color: #fff0b0;
}
.cid-upGJsm7myz .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  opacity: .5;
}
.cid-upGJsm7myz .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-upGJsm7myz .panel-group .card .panel-collapse .panel-body {
  padding-top: 56px;
}
@media (max-width: 992px) {
  .cid-upGJsm7myz .panel-group .card .panel-collapse .panel-body {
    padding-top: 32px;
  }
}
.cid-upGJsm7myz .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upGJsm7myz .mbr-section-title {
  color: #000000;
}
.cid-upGJsm7myz .panel-title-edit {
  color: #ffffff;
}
.cid-upGJsm7myz .panel-text {
  color: #ffffff;
}
.cid-upGJsm7myz .mbr-section-title,
.cid-upGJsm7myz .title-wrapper {
  color: #fafafa;
}
.cid-upGbDaVrtK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upGbDaVrtK .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDaVrtK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDaVrtK .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upGbDaVrtK .content-wrapper {
    padding: 0;
  }
}
.cid-upGbDaVrtK .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upGbDaVrtK .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upGbDaVrtK .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upGbDaVrtK .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upGbDaVrtK .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upGbDaVrtK .mbr-section-title {
  color: #050f0f;
}
.cid-upGbDbqPXm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0616c2;
}
.cid-upGbDbqPXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbDbqPXm .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upGbDbqPXm .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upGbDbqPXm .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upGbDbqPXm a {
  font-weight: 600;
}
.cid-upGbDbqPXm a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upGbDbqPXm .col-lg-3,
  .cid-upGbDbqPXm .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upGbDbqPXm .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upGbDbqPXm .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upGbDbqPXm h5 {
  margin: 0;
}
.cid-upGbDbqPXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbDbqPXm .iconfont-wrapper {
  position: relative;
}
.cid-upGbDbqPXm .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-upGbDbqPXm .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upGbDbqPXm .sociconfont-wrapper {
  display: flex;
}
.cid-upGbDbqPXm .card-title,
.cid-upGbDbqPXm .iconfont-wrapper {
  color: #fafafa;
}
.cid-upGbDbqPXm .card-text {
  color: #ffffff;
}
.cid-upGbDbqPXm .mbr-section-title {
  color: #000000;
}
.cid-upGbDbqPXm .main-title,
.cid-upGbDbqPXm .iconfont-wrapper {
  text-align: left;
}
.cid-upGbDc4tAy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0616c2;
  overflow: hidden;
}
.cid-upGbC8ozDE {
  z-index: 1000;
  width: 100%;
}
.cid-upGbC8ozDE nav.navbar {
  position: fixed;
}
.cid-upGbC8ozDE .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-upGbC8ozDE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #0616c2 !important;
}
.cid-upGbC8ozDE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upGbC8ozDE .dropdown-item:hover,
.cid-upGbC8ozDE .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-upGbC8ozDE .dropdown-item:hover span {
  color: white;
}
.cid-upGbC8ozDE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upGbC8ozDE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upGbC8ozDE .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upGbC8ozDE .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upGbC8ozDE .nav-link {
  position: relative;
}
.cid-upGbC8ozDE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-upGbC8ozDE .container {
    flex-wrap: nowrap;
  }
}
.cid-upGbC8ozDE .nav-item:focus,
.cid-upGbC8ozDE .nav-link:focus {
  outline: none;
}
.cid-upGbC8ozDE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upGbC8ozDE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upGbC8ozDE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upGbC8ozDE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upGbC8ozDE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upGbC8ozDE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upGbC8ozDE .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 10px 20px !important;
  border: none !important;
}
.cid-upGbC8ozDE .navbar.opened {
  transition: all 0.3s;
}
.cid-upGbC8ozDE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upGbC8ozDE .navbar .navbar-logo img {
  width: auto;
}
.cid-upGbC8ozDE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upGbC8ozDE .navbar.collapsed {
  justify-content: center;
}
.cid-upGbC8ozDE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upGbC8ozDE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upGbC8ozDE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-upGbC8ozDE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upGbC8ozDE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upGbC8ozDE .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-upGbC8ozDE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upGbC8ozDE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upGbC8ozDE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upGbC8ozDE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upGbC8ozDE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upGbC8ozDE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upGbC8ozDE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upGbC8ozDE .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-upGbC8ozDE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upGbC8ozDE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upGbC8ozDE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upGbC8ozDE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upGbC8ozDE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upGbC8ozDE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upGbC8ozDE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upGbC8ozDE .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-upGbC8ozDE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-upGbC8ozDE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upGbC8ozDE .navbar-brand .navbar-logo {
  position: relative;
  margin-right: 0.6rem !important;
  padding-right: 0.6rem !important;
}
.cid-upGbC8ozDE .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-upGbC8ozDE .dropdown-item.active,
.cid-upGbC8ozDE .dropdown-item:active {
  background-color: transparent;
}
.cid-upGbC8ozDE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upGbC8ozDE .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upGbC8ozDE .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upGbC8ozDE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0616c2;
}
.cid-upGbC8ozDE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upGbC8ozDE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upGbC8ozDE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upGbC8ozDE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upGbC8ozDE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upGbC8ozDE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e3ebf3;
}
.cid-upGbC8ozDE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upGbC8ozDE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGbC8ozDE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upGbC8ozDE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upGbC8ozDE .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-upGbC8ozDE .navbar-toggler-close {
    top: 50px!important;
    right: 50px!important;
    height: 26px!important;
    width: 26px!important;
  }
}
@media (max-width: 767px) {
  .cid-upGbC8ozDE .navbar-toggler-close {
    top: 50px!important;
    right: 20px!important;
    height: 16px!important;
    width: 16px!important;
  }
}
.cid-upGbC8ozDE .navbar-toggler-close span {
  width: 100% !important;
  height: 2px!important;
  top: 50%!important;
}
.cid-upGbC8ozDE .navbar-toggler-close span:nth-child(1) {
  display: none;
}
.cid-upGbC8ozDE .navbar-toggler-close span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
}
.cid-upGbC8ozDE .navbar-toggler-close span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
.cid-upGbC8ozDE .navbar-toggler-close span:nth-child(4) {
  display: none;
}
.cid-upGbC8ozDE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upGbC8ozDE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upGbC8ozDE .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-upGbC8ozDE .navbar {
    height: 70px;
  }
  .cid-upGbC8ozDE .navbar.opened {
    height: auto;
  }
  .cid-upGbC8ozDE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upGbC8ozDE .container-fluid {
  padding: 5px 32px !important;
  border-radius: 100px;
  column-gap: 12px;
  background: #0616c2;
}
.cid-upGbC8ozDE .navbar-collapse {
  margin-left: auto;
}
.cid-upGbC8ozDE .navbar-nav {
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.cid-upGbC8ozDE .navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-upGbC8ozDE .navbar-nav .nav-link {
  margin: 0 !important;
  border-radius: 90px;
  padding: 10px 15px !important;
  transition: all .4s;
}
.cid-upGbC8ozDE .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-upGbC8ozDE .navbar {
    padding: 0 !important;
  }
  .cid-upGbC8ozDE .container-fluid {
    padding: 5px 20px !important;
    border-radius: 0;
    flex-wrap: nowrap;
  }
  .cid-upGbC8ozDE .navbar-brand {
    max-width: 50%;
    padding-right: 0 !important;
  }
  .cid-upGbC8ozDE .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-upGbC8ozDE .navbar-collapse.show {
    opacity: 1;
  }
  .cid-upGbC8ozDE .navbar-nav {
    justify-content: flex-start;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .cid-upGbC8ozDE .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-upGbC8ozDE .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-upGbC8ozDE .container-fluid {
    padding: 5px 12px !important;
    column-gap: 6px;
  }
  .cid-upGbC8ozDE .navbar-collapse {
    padding: 50px 20px;
  }
  .cid-upGbC8ozDE .navbar-nav .nav-item .nav-link {
    margin-bottom: 12px !important;
    font-size: 32px !important;
  }
  .cid-upGbC8ozDE .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 46px;
    padding: 10px;
  }
}
.cid-upGbC9Qzu1 {
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/air-cargo-lr-stock-2-1-1529x1019.jpg");
}
.cid-upGbC9Qzu1 .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-upGbC9Qzu1 .wrap {
  padding: 0 25px;
}
.cid-upGbC9Qzu1 .wrap:before {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #0616c2;
  top: 0px;
  right: 0px;
}
.cid-upGbC9Qzu1 .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-upGbC9Qzu1 .mbr-text {
  margin-bottom: 20px;
}
.cid-upGbC9Qzu1 .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-upGbC9Qzu1 .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-upGbC9Qzu1 .container,
  .cid-upGbC9Qzu1 .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-upGbC9Qzu1 .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-upGbC9Qzu1 a.close {
    right: 50px;
    top: 25px;
  }
  .cid-upGbC9Qzu1 .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-upGbC9Qzu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbC9Qzu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbCbwEIb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upGbCbwEIb .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCbwEIb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbCbwEIb .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-upGbCbwEIb .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCbwEIb .container {
    padding: 0 6px;
  }
}
.cid-upGbCbwEIb .row {
  margin: 0;
  padding: 0 150px;
}
@media (max-width: 1440px) {
  .cid-upGbCbwEIb .row {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbCbwEIb .row {
    padding: 0 8px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCbwEIb .row {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .cid-upGbCbwEIb .row {
    padding: 0 30px;
  }
}
.cid-upGbCbwEIb .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-upGbCbwEIb .content-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-upGbCbwEIb .content-wrapper {
    display: block;
    padding: 22px;
  }
}
.cid-upGbCbwEIb .content-wrapper .title-wrapper {
  width: 45%;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-upGbCbwEIb .content-wrapper .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
  }
}
.cid-upGbCbwEIb .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  opacity: .5;
}
.cid-upGbCbwEIb .content-wrapper .list-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-upGbCbwEIb .content-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upGbCbwEIb .content-wrapper .list-wrapper .list {
  margin: 0;
  padding-left: 20px;
  list-style-position: inside;
}
@media (max-width: 992px) {
  .cid-upGbCbwEIb .content-wrapper .list-wrapper .list {
    padding: 0;
  }
}
.cid-upGbCbwEIb .content-wrapper .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
}
.cid-upGbCbwEIb .content-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upGbCbwEIb .mbr-section-title {
  color: #0616c2;
  text-align: center;
}
.cid-upGbCbwEIb .list {
  color: #131313;
}
.cid-upGbCcIGNN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #0616c2;
}
.cid-upGbCcIGNN .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upGbCcIGNN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCcIGNN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbCcIGNN .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-upGbCcIGNN .content-wrap .card {
  justify-content: space-between;
}
.cid-upGbCcIGNN .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-upGbCcIGNN .content-wrapper {
    padding: 0;
  }
}
.cid-upGbCcIGNN .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upGbCcIGNN .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-upGbCcIGNN .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-upGbCcIGNN .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-upGbCcIGNN .mbr-desc,
.cid-upGbCcIGNN .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-upGbCcIGNN .mbr-section-title,
.cid-upGbCcIGNN .mbr-section-btn {
  color: #fafafa;
}
.cid-upGbCdTdLM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-upGbCdTdLM .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCdTdLM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbCdTdLM .items-wrapper {
  justify-content: flex-end;
}
.cid-upGbCdTdLM .items-wrapper .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-upGbCdTdLM .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upGbCdTdLM .image-wrapper img {
  height: 720px;
  width: 720px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1700px) {
  .cid-upGbCdTdLM .image-wrapper img {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1440px) {
  .cid-upGbCdTdLM .image-wrapper img {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbCdTdLM .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-upGbCdTdLM .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upGbCdTdLM .content-wrapper {
  padding-left: 120px;
  padding-left: 0;
  padding-right: 120px;
}
@media (max-width: 1200px) {
  .cid-upGbCdTdLM .content-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCdTdLM .content-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .cid-upGbCdTdLM .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCdTdLM .content-wrapper {
    padding-right: 0;
  }
}
.cid-upGbCdTdLM .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-upGbCdTdLM .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-upGbCdTdLM .content-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upGbCdTdLM .mbr-desc {
  color: #272b2e;
}
.cid-upGbCdTdLM .mbr-section-title {
  color: #272b2e;
}
.cid-upGbCdTdLM .mbr-text,
.cid-upGbCdTdLM .text-wrapper {
  color: #272b2e;
}
.cid-upGbCfbrEn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-upGbCfbrEn .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upGbCfbrEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCfbrEn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbCfbrEn .content-wrap {
  margin: 0;
}
.cid-upGbCfbrEn .content-wrap .card {
  padding: 0;
}
.cid-upGbCfbrEn .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #0616c2;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-upGbCfbrEn .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCfbrEn .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-upGbCfbrEn .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-upGbCfbrEn .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-upGbCfbrEn .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbCfbrEn .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-upGbCfbrEn .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-upGbCfbrEn .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-upGbCfbrEn .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCfbrEn .content-wrapper {
    padding: 40px 0;
  }
}
.cid-upGbCfbrEn .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upGbCfbrEn .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-upGbCfbrEn .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-upGbCfbrEn .mbr-section-title {
  color: #150764;
}
.cid-upGbCfbrEn .mbr-text {
  color: #150764;
}
.cid-upGbCfbrEn .mbr-section-title,
.cid-upGbCfbrEn .mbr-section-btn {
  color: #000000;
}
.cid-upGbCfbrEn .mbr-text,
.cid-upGbCfbrEn .text-wrap {
  color: #000000;
}
.cid-upGbCgtlpG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upGbCgtlpG .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCgtlpG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbCgtlpG .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbCgtlpG .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upGbCgtlpG .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbCgtlpG .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-upGbCgtlpG .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-upGbCgtlpG .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-upGbCgtlpG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upGbCgtlpG .mbr-text,
.cid-upGbCgtlpG .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-upGbCgtlpG .mbr-section-title,
.cid-upGbCgtlpG .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-upGbChGzS7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0616c2;
}
.cid-upGbChGzS7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbChGzS7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbChGzS7 .row {
  justify-content: center;
}
.cid-upGbChGzS7 .content-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upGbChGzS7 .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-upGbChGzS7 .content-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-upGbChGzS7 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upGbChGzS7 .item {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-upGbChGzS7 .item {
    margin-bottom: 35px;
  }
}
.cid-upGbChGzS7 .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-upGbChGzS7 .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-upGbChGzS7 .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-upGbChGzS7 .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-upGbChGzS7 .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upGbChGzS7 .border-wrapper {
  width: 100%;
  height: 1px;
  background-color: #fafafa;
}
.cid-upGbChGzS7 .mbr-section-title {
  color: #fafafa;
}
.cid-upGbChGzS7 .mbr-text {
  color: #000000;
}
.cid-upGbChGzS7 .item-title {
  color: #000000;
}
.cid-upGbChGzS7 .item-text {
  color: #000000;
}
.cid-upGbCjmkTZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upGbCjmkTZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCjmkTZ .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-upGbCjmkTZ .container {
    padding: 0 16px;
  }
}
.cid-upGbCjmkTZ .card {
  justify-content: center;
}
.cid-upGbCjmkTZ .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #0616c2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upGbCjmkTZ .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-upGbCjmkTZ .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-upGbCjmkTZ .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-upGbCjmkTZ .mbr-section-title {
  color: #000000;
}
.cid-upGbCjmkTZ .mbr-text {
  color: #000000;
}
.cid-upGbCjmkTZ .mbr-desc {
  color: #000000;
}
.cid-upGbCjmkTZ .mbr-section-title,
.cid-upGbCjmkTZ .title-wrapper {
  color: #fafafa;
}
.cid-upGbCkNpFe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0616c2;
}
.cid-upGbCkNpFe .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCkNpFe .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-upGbCkNpFe .container {
    padding: 0 16px;
  }
}
.cid-upGbCkNpFe .row {
  position: relative;
  z-index: 1;
}
.cid-upGbCkNpFe .card {
  justify-content: flex-end;
}
.cid-upGbCkNpFe .card-wrapper {
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 1440px) {
  .cid-upGbCkNpFe .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upGbCkNpFe .card-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-upGbCkNpFe .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upGbCkNpFe .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-upGbCkNpFe .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-upGbCkNpFe .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-upGbCkNpFe .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-upGbCkNpFe .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upGbCkNpFe .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-upGbCkNpFe .card-wrapper .card-wrap {
  background-color: #000000;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-upGbCkNpFe .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-upGbCkNpFe .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-upGbCkNpFe .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-upGbCkNpFe .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-upGbCkNpFe .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-upGbCkNpFe .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upGbCkNpFe .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-upGbCkNpFe .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upGbCkNpFe .text-wrapper {
  margin-left: 104px;
  margin-left: 0;
  margin-right: 104px;
}
@media (max-width: 1440px) {
  .cid-upGbCkNpFe .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCkNpFe .text-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-upGbCkNpFe .text-wrapper {
    margin-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCkNpFe .text-wrapper {
    margin-right: 0;
  }
}
.cid-upGbCkNpFe .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-upGbCkNpFe .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-upGbCkNpFe .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-upGbCkNpFe .mbr-text {
  color: #000000;
}
.cid-upGbCkNpFe .card-desc {
  color: #000000;
}
.cid-upGbCkNpFe .card-text {
  color: #ffffff;
}
.cid-upGbCkNpFe .card-name {
  color: #ffffff;
}
.cid-upGbCkNpFe .card-role {
  color: #ffffff;
}
.cid-upGbCkNpFe .mbr-text,
.cid-upGbCkNpFe .mbr-section-btn {
  color: #fafafa;
}
.cid-upGbCma1pD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upGbCma1pD .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCma1pD .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-upGbCma1pD .container {
    padding: 0 15px;
  }
}
.cid-upGbCma1pD .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-upGbCma1pD .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbCma1pD .content-wrapper {
    padding-right: 0;
  }
}
.cid-upGbCma1pD .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-upGbCma1pD .content-wrap {
    display: block;
  }
}
.cid-upGbCma1pD .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbCma1pD .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-upGbCma1pD .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upGbCma1pD .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-upGbCma1pD .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-upGbCma1pD .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
.cid-upGbCma1pD .mbr-section-title {
  color: #000000;
}
.cid-upGbCma1pD .mbr-desc,
.cid-upGbCma1pD .desc-wrapper {
  color: #3f1819;
}
.cid-upGbCnNv2J {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #0616c2;
}
.cid-upGbCnNv2J .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-upGbCnNv2J .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-upGbCnNv2J .video-block {
    width: 100% !important;
  }
}
.cid-upGbCnNv2J .mbr-section-title {
  color: #fafafa;
}
.cid-upGbCphjzR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upGbCphjzR .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCphjzR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbCphjzR .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-upGbCphjzR .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-upGbCphjzR .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-upGbCphjzR .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upGbCphjzR .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-upGbCphjzR .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-upGbCphjzR .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upGbCphjzR .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upGbCphjzR .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: #fafafa;
}
.cid-upGbCphjzR .content-wrapper .item .item-wrapper:hover,
.cid-upGbCphjzR .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-upGbCphjzR .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-upGbCphjzR .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-upGbCphjzR .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-upGbCphjzR .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-upGbCphjzR .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-upGbCphjzR .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCphjzR .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-upGbCphjzR .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-upGbCphjzR .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-upGbCphjzR .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-upGbCphjzR .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-upGbCphjzR .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-upGbCphjzR .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCphjzR .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-upGbCphjzR .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-upGbCphjzR .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-upGbCphjzR .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-upGbCphjzR .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-upGbCphjzR .item-title {
  color: #050f0f;
}
.cid-upGbCphjzR .item-text {
  color: #050f0f;
}
.cid-upGbCphjzR .list {
  color: #050f0f;
}
.cid-upGbCsmbL6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #0616c2;
}
.cid-upGbCsmbL6 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-upGbCsmbL6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCsmbL6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbCsmbL6 .content-wrap {
  justify-content: center;
}
.cid-upGbCsmbL6 .card-wrapper {
  background-color: #fafafa;
  display: flex;
  border: 1px solid #150764;
}
@media (max-width: 1200px) {
  .cid-upGbCsmbL6 .card-wrapper {
    display: block;
  }
}
.cid-upGbCsmbL6 .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-upGbCsmbL6 .card-wrapper .title-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 1200px) {
  .cid-upGbCsmbL6 .card-wrapper .title-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
@media (max-width: 992px) {
  .cid-upGbCsmbL6 .card-wrapper .title-wrapper {
    padding: 40px 20px;
  }
}
.cid-upGbCsmbL6 .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-upGbCsmbL6 .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 100px;
  color: #000000;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-upGbCsmbL6 .card-wrapper .title-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-upGbCsmbL6 .card-wrapper .list-wrapper {
  width: 65%;
}
@media (max-width: 1200px) {
  .cid-upGbCsmbL6 .card-wrapper .list-wrapper {
    width: 100%;
  }
}
.cid-upGbCsmbL6 .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-upGbCsmbL6 .card-wrapper .list-wrapper .panel-group .card:first-child .card-header {
  border-top: none !important;
}
.cid-upGbCsmbL6 .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-upGbCsmbL6 .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCsmbL6 .card-wrapper .list-wrapper .panel-group .card .card-header {
    padding: 32px 20px;
  }
}
.cid-upGbCsmbL6 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upGbCsmbL6 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upGbCsmbL6 .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-upGbCsmbL6 .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: #000000;
}
.cid-upGbCsmbL6 .card-wrapper .list-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(180deg);
}
.cid-upGbCsmbL6 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 64px 32px;
}
@media (max-width: 1940px) {
  .cid-upGbCsmbL6 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-upGbCsmbL6 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 32px 20px;
  }
}
.cid-upGbCsmbL6 .card-wrapper .list-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upGbCsmbL6 .mbr-section-title {
  color: #000000;
}
.cid-upGbCsmbL6 .panel-title-edit {
  color: #150764;
}
.cid-upGbCsmbL6 .panel-text {
  color: #150764;
}
.cid-upGbCsmbL6 .panel-title-edit,
.cid-upGbCsmbL6 .icon-wrapper {
  color: #000000;
}
.cid-upGbCriiqc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upGbCriiqc blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #0616c2;
}
.cid-upGbCriiqc .mbr-section-title {
  color: #fafafa;
}
.cid-upGbCriiqc .mbr-text {
  color: #fafafa;
}
.cid-upGHLv5lKp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upGHLv5lKp .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGHLv5lKp .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-upGHLv5lKp .container {
    padding: 0 16px;
  }
}
.cid-upGHLv5lKp .row {
  justify-content: center;
}
.cid-upGHLv5lKp .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #0616c2;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-upGHLv5lKp .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-upGHLv5lKp .panel-group .card {
  position: relative;
  border-radius: 24px !important;
  padding: 64px;
  margin-top: 32px;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #0616c2;
}
@media (max-width: 992px) {
  .cid-upGHLv5lKp .panel-group .card {
    padding: 24px;
  }
}
.cid-upGHLv5lKp .panel-group .card:first-child {
  margin-top: 0;
}
.cid-upGHLv5lKp .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upGHLv5lKp .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upGHLv5lKp .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upGHLv5lKp .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-upGHLv5lKp .panel-group .card .card-header .panel-title .icon-wrapper:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff0b0;
  border-radius: 100%;
  opacity: .2;
  transition: all 0.3s ease-in-out;
}
.cid-upGHLv5lKp .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  color: #fff0b0;
}
.cid-upGHLv5lKp .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper::before {
  opacity: .5;
}
.cid-upGHLv5lKp .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-upGHLv5lKp .panel-group .card .panel-collapse .panel-body {
  padding-top: 56px;
}
@media (max-width: 992px) {
  .cid-upGHLv5lKp .panel-group .card .panel-collapse .panel-body {
    padding-top: 32px;
  }
}
.cid-upGHLv5lKp .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upGHLv5lKp .mbr-section-title {
  color: #000000;
}
.cid-upGHLv5lKp .panel-title-edit {
  color: #ffffff;
}
.cid-upGHLv5lKp .panel-text {
  color: #ffffff;
}
.cid-upGHLv5lKp .mbr-section-title,
.cid-upGHLv5lKp .title-wrapper {
  color: #fafafa;
}
.cid-upGbCtKmNx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7fff7;
}
.cid-upGbCtKmNx .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCtKmNx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbCtKmNx .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-upGbCtKmNx .content-wrapper {
    padding: 0;
  }
}
.cid-upGbCtKmNx .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-upGbCtKmNx .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upGbCtKmNx .content-wrapper .google-map {
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
}
.cid-upGbCtKmNx .content-wrapper .google-map iframe {
  height: 600px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-upGbCtKmNx .content-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-upGbCtKmNx .mbr-section-title {
  color: #050f0f;
}
.cid-upGbCutycK {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #0616c2;
}
.cid-upGbCutycK .mbr-fallback-image.disabled {
  display: none;
}
.cid-upGbCutycK .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upGbCutycK .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upGbCutycK .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upGbCutycK a {
  font-weight: 600;
}
.cid-upGbCutycK a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upGbCutycK .col-lg-3,
  .cid-upGbCutycK .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upGbCutycK .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upGbCutycK .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upGbCutycK h5 {
  margin: 0;
}
.cid-upGbCutycK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upGbCutycK .iconfont-wrapper {
  position: relative;
}
.cid-upGbCutycK .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-upGbCutycK .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upGbCutycK .sociconfont-wrapper {
  display: flex;
}
.cid-upGbCutycK .card-title,
.cid-upGbCutycK .iconfont-wrapper {
  color: #fafafa;
}
.cid-upGbCutycK .card-text {
  color: #ffffff;
}
.cid-upGbCutycK .mbr-section-title {
  color: #000000;
}
.cid-upGbCutycK .main-title,
.cid-upGbCutycK .iconfont-wrapper {
  text-align: left;
}
.cid-upGbCvhyJr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0616c2;
  overflow: hidden;
}
