.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Ubuntu', 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.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #bbbbbb !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !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: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  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: #ff0f0f !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: #47b5ed;
  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: #148cca !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: #40b0bf;
  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: #2a747e !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: #ffe161;
  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: #ffd10a !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: #bbbbbb;
  color: #bbbbbb;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #bbbbbb !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #888888 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #bbbbbb;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbfbfb;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sCNfX4ka41 {
  background-image: url("../../../assets/images/static-image-dnata-switzerlandag-24-2000x1201.jpg");
}
.cid-sCNfX4ka41 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sCNfX4ka41 .mbr-text,
.cid-sCNfX4ka41 .mbr-section-btn {
  color: #ffffff;
}
.cid-sCNVaLW3jR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCNVaLW3jR .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-sCNVaLW3jR .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-sCNVaLW3jR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sCNVaLW3jR .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-sCNVaLW3jR .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sCNVaLW3jR .container {
    padding: 0 1rem;
  }
}
.cid-sCNVaLW3jR .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-sCNVaLW3jR .nav-link {
  position: relative;
}
.cid-sCNVaLW3jR .nav-link:hover {
  color: #47b5ed !important;
}
.cid-sCNVaLW3jR nav.navbar {
  position: fixed;
}
.cid-sCNVaLW3jR .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sCNVaLW3jR .navbar.opened {
  transition: all 0.3s;
}
.cid-sCNVaLW3jR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sCNVaLW3jR .navbar .navbar-logo img {
  width: auto;
}
.cid-sCNVaLW3jR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCNVaLW3jR .navbar.collapsed {
  justify-content: center;
}
.cid-sCNVaLW3jR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCNVaLW3jR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCNVaLW3jR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sCNVaLW3jR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCNVaLW3jR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCNVaLW3jR .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-sCNVaLW3jR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCNVaLW3jR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sCNVaLW3jR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sCNVaLW3jR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCNVaLW3jR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCNVaLW3jR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCNVaLW3jR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCNVaLW3jR .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-sCNVaLW3jR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sCNVaLW3jR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCNVaLW3jR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCNVaLW3jR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCNVaLW3jR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCNVaLW3jR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sCNVaLW3jR .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCNVaLW3jR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sCNVaLW3jR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sCNVaLW3jR .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-sCNVaLW3jR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sCNVaLW3jR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCNVaLW3jR .dropdown-item:hover,
.cid-sCNVaLW3jR .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sCNVaLW3jR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sCNVaLW3jR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sCNVaLW3jR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-sCNVaLW3jR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCNVaLW3jR .dropdown-menu,
.cid-sCNVaLW3jR .navbar.opened {
  background: #ffffff !important;
}
.cid-sCNVaLW3jR .nav-item:focus,
.cid-sCNVaLW3jR .nav-link:focus {
  outline: none;
}
.cid-sCNVaLW3jR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCNVaLW3jR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCNVaLW3jR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sCNVaLW3jR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCNVaLW3jR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCNVaLW3jR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCNVaLW3jR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCNVaLW3jR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCNVaLW3jR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCNVaLW3jR .dropdown-item.active,
.cid-sCNVaLW3jR .dropdown-item:active {
  background-color: transparent;
}
.cid-sCNVaLW3jR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCNVaLW3jR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCNVaLW3jR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCNVaLW3jR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sCNVaLW3jR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCNVaLW3jR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCNVaLW3jR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCNVaLW3jR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCNVaLW3jR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sCNVaLW3jR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sCNVaLW3jR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCNVaLW3jR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCNVaLW3jR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCNVaLW3jR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCNVaLW3jR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCNVaLW3jR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCNVaLW3jR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCNVaLW3jR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCNVaLW3jR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sCNVaLW3jR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCNVaLW3jR .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-sCNVaLW3jR .navbar {
    height: 70px;
  }
  .cid-sCNVaLW3jR .navbar.opened {
    height: auto;
  }
  .cid-sCNVaLW3jR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCNVhtPe4X {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-dnata3-1300x250.jpg");
}
.cid-sCNVhtPe4X .mbr-text,
.cid-sCNVhtPe4X .mbr-section-btn {
  color: #bbbbbb;
}
.cid-sYdC3Q4V6c {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-sYdC3Q4V6c img,
.cid-sYdC3Q4V6c .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sYdC3Q4V6c .item:focus,
.cid-sYdC3Q4V6c span:focus {
  outline: none;
}
.cid-sYdC3Q4V6c .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sYdC3Q4V6c .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sYdC3Q4V6c .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sYdC3Q4V6c .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sYdC3Q4V6c .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sYdC3Q4V6c .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sYdC3Q4V6c .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sYdC3Q4V6c .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-sYdC3Q4V6c .mbr-text,
.cid-sYdC3Q4V6c .mbr-section-btn {
  text-align: left;
  color: #606060;
}
.cid-sYdC3Q4V6c .item-title {
  text-align: center;
}
.cid-sYdC3Q4V6c .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sYdC3Q4V6c .mbr-section-subtitle {
  color: #606060;
  text-align: left;
}
.cid-sUXQdSAA9P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-sUXQdSAA9P .container {
  max-width: 1750px;
}
.cid-sUXQdSAA9P .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-sUXQdSAA9P img {
  width: 150px;
  display: inline-block;
}
.cid-sUXQdSAA9P p {
  line-height: 1.8;
}
.cid-sUXQdSAA9P .mbr-text {
  color: #353535;
}
.cid-sUXQdSAA9P .mbr-section-title {
  color: #000000;
}
.cid-sBQMjMs0gq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBQMjMs0gq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-sBQMjMs0gq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-sBQMjMs0gq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sBQMjMs0gq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-sBQMjMs0gq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sBQMjMs0gq .container {
    padding: 0 1rem;
  }
}
.cid-sBQMjMs0gq .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-sBQMjMs0gq .nav-link {
  position: relative;
}
.cid-sBQMjMs0gq .nav-link:hover {
  color: #47b5ed !important;
}
.cid-sBQMjMs0gq nav.navbar {
  position: fixed;
}
.cid-sBQMjMs0gq .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBQMjMs0gq .navbar.opened {
  transition: all 0.3s;
}
.cid-sBQMjMs0gq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBQMjMs0gq .navbar .navbar-logo img {
  width: auto;
}
.cid-sBQMjMs0gq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBQMjMs0gq .navbar.collapsed {
  justify-content: center;
}
.cid-sBQMjMs0gq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBQMjMs0gq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sBQMjMs0gq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sBQMjMs0gq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBQMjMs0gq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBQMjMs0gq .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-sBQMjMs0gq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBQMjMs0gq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBQMjMs0gq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBQMjMs0gq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBQMjMs0gq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBQMjMs0gq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBQMjMs0gq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBQMjMs0gq .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-sBQMjMs0gq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBQMjMs0gq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBQMjMs0gq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBQMjMs0gq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBQMjMs0gq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBQMjMs0gq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBQMjMs0gq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBQMjMs0gq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBQMjMs0gq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBQMjMs0gq .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-sBQMjMs0gq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBQMjMs0gq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBQMjMs0gq .dropdown-item:hover,
.cid-sBQMjMs0gq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBQMjMs0gq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBQMjMs0gq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBQMjMs0gq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-sBQMjMs0gq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBQMjMs0gq .dropdown-menu,
.cid-sBQMjMs0gq .navbar.opened {
  background: #ffffff !important;
}
.cid-sBQMjMs0gq .nav-item:focus,
.cid-sBQMjMs0gq .nav-link:focus {
  outline: none;
}
.cid-sBQMjMs0gq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBQMjMs0gq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBQMjMs0gq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBQMjMs0gq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBQMjMs0gq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBQMjMs0gq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBQMjMs0gq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sBQMjMs0gq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBQMjMs0gq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBQMjMs0gq .dropdown-item.active,
.cid-sBQMjMs0gq .dropdown-item:active {
  background-color: transparent;
}
.cid-sBQMjMs0gq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBQMjMs0gq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBQMjMs0gq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBQMjMs0gq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBQMjMs0gq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBQMjMs0gq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBQMjMs0gq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBQMjMs0gq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBQMjMs0gq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBQMjMs0gq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBQMjMs0gq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBQMjMs0gq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBQMjMs0gq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBQMjMs0gq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBQMjMs0gq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBQMjMs0gq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBQMjMs0gq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBQMjMs0gq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBQMjMs0gq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBQMjMs0gq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBQMjMs0gq .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-sBQMjMs0gq .navbar {
    height: 70px;
  }
  .cid-sBQMjMs0gq .navbar.opened {
    height: auto;
  }
  .cid-sBQMjMs0gq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLdxbfoxVG {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #f9a600;
}
.cid-uLdxbfoxVG .row {
  position: relative;
}
.cid-uLdxbfoxVG .container {
  max-width: 1500px;
}
.cid-uLdxbfoxVG .container {
  padding-right: 8rem !important;
}
.cid-uLdxbfoxVG h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-uLdxbfoxVG .content-wrapper {
  max-width: 800px;
}
.cid-uLdxbfoxVG H1 {
  color: #333333;
}
.cid-uLdxbfoxVG .mbr-text,
.cid-uLdxbfoxVG .mbr-section-btn {
  color: #333333;
}
.cid-uLdxbfoxVG H3 {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-uLdxbfoxVG .container {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uLdxbfoxVG .container {
    padding-right: 4rem !important;
  }
}
.cid-uLdxbfoxVG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLdxbfoxVG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLnO3XODPJ .mbr-section-title {
  color: #ffffff;
}
.cid-uLnO3XODPJ .mbr-text,
.cid-uLnO3XODPJ .mbr-section-btn {
  color: #ffffff;
}
.cid-uLnO3XODPJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLjc20Dd16 {
  background-color: #fafbf2;
}
.cid-uLjc20Dd16 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLjc20Dd16 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLjc20Dd16 .mbr-section-title {
  color: #102a23;
  margin-bottom: 0;
  text-align: center;
}
.cid-uLjc20Dd16 .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uLjc20Dd16 .mbr-section-subtitle {
  color: #102a23;
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.cid-uLjc20Dd16 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uLjc20Dd16 .mbr-section-subtitle,
.cid-uLjc20Dd16 .mbr-section-btn {
  text-align: center;
}
.cid-uLdwzdXAsR {
  background-color: #fafbf2;
}
.cid-uLdwzdXAsR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLdwzdXAsR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLdwzdXAsR .container {
    padding: 0 20px;
  }
}
.cid-uLdwzdXAsR .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-uLdwzdXAsR .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-uLdwzdXAsR .mbr-section-title {
  color: #1d1d1d;
}
.cid-uLdwzdXAsR .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-uLdwzdXAsR .mbr-section-title,
.cid-uLdwzdXAsR .mbr-section-btn {
  text-align: center;
}
.cid-uLdvWFbbiD {
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-uLdvWFbbiD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLdvWFbbiD .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-uLdvWFbbiD .container {
    padding: 0 24px;
  }
}
.cid-uLdvWFbbiD .content-wrapper {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .cid-uLdvWFbbiD .content-wrapper {
    padding: 0;
  }
}
.cid-uLdvWFbbiD .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uLdvWFbbiD .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1500px) {
  .cid-uLdvWFbbiD .content-wrapper .card-wrap {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .cid-uLdvWFbbiD .content-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uLdvWFbbiD .content-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-uLdvWFbbiD .content-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uLdvWFbbiD .content-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
}
.cid-uLdvWFbbiD .content-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-uLdvWFbbiD .content-wrapper .card-wrap .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-uLdvWFbbiD .content-wrapper .card-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #000000 0%, transparent 100%);
}
.cid-uLdvWFbbiD .content-wrapper .card-wrap .mbr-section-btn .btn:hover,
.cid-uLdvWFbbiD .content-wrapper .card-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #000000 !important;
  border-color: #000000 !important;
}
.cid-uLdvWFbbiD .mbr-section-title {
  color: #141414;
}
.cid-uLdvWFbbiD .mbr-desc {
  color: #141414;
}
.cid-uLdvWFbbiD .mbr-text {
  color: #141414;
  text-align: left;
}
.cid-uLdvWFbbiD .mbr-section-title,
.cid-uLdvWFbbiD .mbr-section-btn {
  text-align: left;
}
.cid-uLj29RMqPo {
  background-color: #fafbf2;
}
.cid-uLj29RMqPo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLj29RMqPo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLj29RMqPo .content-wrapper {
  position: relative;
  padding: 100px 100px 105px;
  border-radius: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uLj29RMqPo .content-wrapper {
    padding: 46px 22px;
  }
}
.cid-uLj29RMqPo .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-uLj29RMqPo .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-uLj29RMqPo .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 56px;
}
.cid-uLj29RMqPo .content-wrapper .content-wrap .mbr-section-title span {
  color: #4479d9;
}
@media (max-width: 992px) {
  .cid-uLj29RMqPo .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-uLj29RMqPo .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uLj29RMqPo .content-wrapper .image-wrapper {
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 400px;
  height: 400px;
}
@media (max-width: 992px) {
  .cid-uLj29RMqPo .content-wrapper .image-wrapper {
    right: -20px;
    bottom: -75px;
    width: 200px;
    height: 200px;
  }
}
.cid-uLj29RMqPo .content-wrapper .image-wrapper img {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLj29RMqPo .content-wrapper .image-wrapper img {
    width: 200px;
    height: 200px;
  }
}
.cid-uLj29RMqPo .mbr-section-title {
  color: #212529;
}
.cid-uLj29RMqPo .mbr-desc {
  color: #212529;
  text-align: left;
}
.cid-uLj29RMqPo .mbr-section-title,
.cid-uLj29RMqPo .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uLuVzDSShe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uLuVzDSShe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuVzDSShe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuVzDSShe .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uLuVzDSShe .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uLuVzDSShe .container {
    padding: 0 24px;
  }
}
.cid-uLuVzDSShe .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
  font-size: 2500%;
}
@media (max-width: 992px) {
  .cid-uLuVzDSShe .content-wrapper .mbr-section-title {
    font-size: 500%;
  }
}
.cid-uLuVzDSShe .content-wrapper .mbr-section-title span {
  color: #4479d9;
}
.cid-uLuVzDSShe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uLjbKgMlfP {
  background-color: #ffffff;
}
.cid-uLjbKgMlfP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLjbKgMlfP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLjbKgMlfP .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uLjbKgMlfP .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uLjbKgMlfP .container {
    padding: 0 6px;
  }
}
.cid-uLjbKgMlfP .row {
  margin: 0;
  padding: 150px;
}
@media (max-width: 1440px) {
  .cid-uLjbKgMlfP .row {
    padding: 150px 32px;
  }
}
@media (max-width: 1200px) {
  .cid-uLjbKgMlfP .row {
    padding: 150px 8px;
  }
}
@media (max-width: 992px) {
  .cid-uLjbKgMlfP .row {
    padding: 70px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uLjbKgMlfP .row {
    padding: 70px 0;
  }
}
.cid-uLjbKgMlfP .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uLjbKgMlfP .container-wrapper {
  position: relative;
  padding-top: 5px;
}
.cid-uLjbKgMlfP .container-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #4479d9;
  border-radius: 16px 16px 0 0;
}
.cid-uLjbKgMlfP .container-wrapper .subtitle-wrapper {
  position: absolute;
  width: 100%;
  top: -45px;
}
.cid-uLjbKgMlfP .container-wrapper .subtitle-wrapper .subtitle-wrap {
  display: inline-flex;
  align-items: center;
  padding: 15px 80px 30px 22px;
  background-color: #4479d9;
  border-radius: 16px 16px 0 0;
}
@media (max-width: 992px) {
  .cid-uLjbKgMlfP .container-wrapper .subtitle-wrapper .subtitle-wrap {
    padding: 15px 22px 30px;
  }
}
.cid-uLjbKgMlfP .container-wrapper .subtitle-wrapper .subtitle-wrap .dot-wrap {
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  margin-right: 30px;
  border-radius: 50%;
}
.cid-uLjbKgMlfP .container-wrapper .subtitle-wrapper .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uLjbKgMlfP .container-wrapper .container-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  border: 1px solid #cfcfcf;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uLjbKgMlfP .container-wrapper .container-wrap {
    display: block;
    padding: 22px;
  }
}
.cid-uLjbKgMlfP .container-wrapper .container-wrap .title-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-uLjbKgMlfP .container-wrapper .container-wrap .title-wrapper {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uLjbKgMlfP .container-wrapper .container-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLjbKgMlfP .container-wrapper .container-wrap .list-wrapper {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uLjbKgMlfP .container-wrapper .container-wrap .list-wrapper {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uLjbKgMlfP .container-wrapper .container-wrap .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uLjbKgMlfP .container-wrapper .container-wrap .list-wrapper .list .item-wrap {
  margin-bottom: 12px;
  opacity: .5;
}
.cid-uLjbKgMlfP .container-wrapper .container-wrap .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uLjbKgMlfP .mbr-section-title {
  color: #131313;
}
.cid-uLjbKgMlfP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLjbKgMlfP .list {
  color: #131313;
}
.cid-uLjbKgMlfP .list,
.cid-uLjbKgMlfP .item-wrap {
  text-align: left;
}
.cid-uLjbKgMlfP .mbr-section-title,
.cid-uLjbKgMlfP .mbr-section-btn {
  text-align: left;
}
.cid-uLv5yvm2QW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uLv5yvm2QW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLv5yvm2QW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLv5yvm2QW .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uLv5yvm2QW .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uLv5yvm2QW .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uLv5yvm2QW .title-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uLv5yvm2QW .items-wrapper {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uLv5yvm2QW .items-wrapper .item {
  padding: 0 12px;
}
.cid-uLv5yvm2QW .item {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item {
    margin-bottom: 16px;
  }
}
.cid-uLv5yvm2QW .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 50px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 19px 45px 0 #0000001a;
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item .item-wrapper {
    padding: 30px 20px;
    display: block;
  }
}
.cid-uLv5yvm2QW .item .item-wrapper .item-content {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .cid-uLv5yvm2QW .item .item-wrapper .item-content {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item .item-wrapper .item-content {
    width: 100%;
  }
}
.cid-uLv5yvm2QW .item .item-wrapper .item-content .card-box .item-title {
  margin-bottom: 20px;
}
.cid-uLv5yvm2QW .item .item-wrapper .item-content .card-box .item-text {
  margin-bottom: 0;
}
.cid-uLv5yvm2QW .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item .item-wrapper .item-content .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uLv5yvm2QW .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uLv5yvm2QW .item .item-wrapper .item-img {
  width: 30%;
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item .item-wrapper .item-img {
    margin-bottom: 32px;
    width: 100%;
  }
}
.cid-uLv5yvm2QW .item .item-wrapper .item-img img {
  height: 350px;
  width: 300px;
  object-fit: cover;
  border: 10px solid #ffffff;
  box-shadow: 0 19px 45px 0 #0000001a;
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item .item-wrapper .item-img img {
    height: 300px;
    width: 100%;
  }
}
.cid-uLv5yvm2QW .item .card_1 {
  background-color: #ffffff;
}
.cid-uLv5yvm2QW .item .card_1 .item-img img {
  transform: rotate(-5deg) translateX(3rem);
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item .card_1 .item-img img {
    transform: none;
  }
}
.cid-uLv5yvm2QW .item .card_2 {
  background-color: #fff0b0;
}
.cid-uLv5yvm2QW .item .card_2 .item-img img {
  transform: rotate(5deg) translateX(3rem);
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item .card_2 .item-img img {
    transform: none;
  }
}
.cid-uLv5yvm2QW .item .card_3 {
  background-color: #fafafa;
}
.cid-uLv5yvm2QW .item .card_3 .item-content {
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-uLv5yvm2QW .item .card_3 .item-content {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item .card_3 .item-content {
    width: 100%;
  }
}
.cid-uLv5yvm2QW .item .card_3 .item-img {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item .card_3 .item-img {
    width: 100%;
  }
}
.cid-uLv5yvm2QW .item .card_3 .item-img img {
  height: 400px;
  width: 100%;
  transform: rotate(5deg) translateY(5rem);
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .item .card_3 .item-img img {
    transform: none;
    height: 300px;
  }
}
.cid-uLv5yvm2QW .main-btn {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uLv5yvm2QW .main-btn {
    margin-top: 16px;
  }
}
.cid-uLv5yvm2QW .mbr-section-title {
  color: #000c3f;
}
.cid-uLv5yvm2QW .mbr-text,
.cid-uLv5yvm2QW .text-wrapper {
  color: #000c3f;
  text-align: center;
}
.cid-uLv5yvm2QW .mbr-section-title,
.cid-uLv5yvm2QW .main-btn {
  text-align: left;
  color: #000000;
}
.cid-uLv5yvm2QW .item-title {
  color: #000c3f;
}
.cid-uLv5yvm2QW .item-text {
  color: #000000;
}
.cid-uLv5yvm2QW .item-title,
.cid-uLv5yvm2QW .card-btn {
  color: #000000;
}
.cid-uLj7TGZlCd {
  background-color: #ffffff;
}
.cid-uLj7TGZlCd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLj7TGZlCd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLj7TGZlCd .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uLj7TGZlCd .title-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uLj7TGZlCd .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLj7TGZlCd .image-wrapper {
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .cid-uLj7TGZlCd .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uLj7TGZlCd .image-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uLj7TGZlCd .image-wrapper img {
  height: 405px;
  object-fit: cover;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-uLj7TGZlCd .image-wrapper img {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uLj7TGZlCd .text-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uLj7TGZlCd .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uLj7TGZlCd .text-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-uLj7TGZlCd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uLj7TGZlCd .mbr-desc {
  color: #000000;
}
.cid-uLj7TGZlCd .mbr-text {
  color: #000000;
}
.cid-uLj7TGZlCd .mbr-text,
.cid-uLj7TGZlCd .mbr-section-btn {
  text-align: left;
}
.cid-uLj1Mjrjol {
  background-color: #ffffff;
}
.cid-uLj1Mjrjol .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLj1Mjrjol .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLj1Mjrjol .card-wrapper {
  padding: 100px 120px;
  background-color: #fafafa;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .cid-uLj1Mjrjol .card-wrapper {
    padding: 100px 80px;
  }
}
@media (max-width: 992px) {
  .cid-uLj1Mjrjol .card-wrapper {
    display: block;
    padding: 40px 20px 20px;
  }
}
.cid-uLj1Mjrjol .card-wrapper .content-wrapper {
  width: 55%;
}
@media (max-width: 992px) {
  .cid-uLj1Mjrjol .card-wrapper .content-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uLj1Mjrjol .card-wrapper .content-wrapper .iconfont-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uLj1Mjrjol .card-wrapper .content-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uLj1Mjrjol .card-wrapper .content-wrapper .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 52px;
  color: #19171c;
}
.cid-uLj1Mjrjol .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uLj1Mjrjol .card-wrapper .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uLj1Mjrjol .card-wrapper .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uLj1Mjrjol .card-wrapper .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uLj1Mjrjol .card-wrapper .image-wrapper {
  width: 30%;
}
@media (max-width: 992px) {
  .cid-uLj1Mjrjol .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uLj1Mjrjol .card-wrapper .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
.cid-uLj1Mjrjol .mbr-section-title {
  color: #19171c;
}
.cid-uLj1Mjrjol .mbr-text,
.cid-uLj1Mjrjol .text-wrapper {
  color: #19171c;
  text-align: left;
}
.cid-uLj1Mjrjol .mbr-section-title,
.cid-uLj1Mjrjol .mbr-section-btn,
.cid-uLj1Mjrjol .iconfont-wrapper {
  text-align: left;
}
.cid-uLuWfulM9q {
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
  background-color: #192227;
}
.cid-uLuWfulM9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuWfulM9q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuWfulM9q .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uLuWfulM9q .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uLuWfulM9q .container {
    padding: 0 16px;
  }
}
.cid-uLuWfulM9q .row {
  position: relative;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uLuWfulM9q .row {
    margin: 0;
  }
}
.cid-uLuWfulM9q .row .card {
  position: relative;
  padding: 0;
}
.cid-uLuWfulM9q .decor-wrapper_1 {
  height: 30px;
  background-color: #4479d9;
  border-radius: 20px 20px 0 0;
}
.cid-uLuWfulM9q .decor-wrapper_2 {
  height: 30px;
  background-color: #6592e6;
}
.cid-uLuWfulM9q .decor-wrapper_3 {
  height: 30px;
  background-color: #8caff0;
}
.cid-uLuWfulM9q .title-wrapper {
  margin: 0 20px;
  padding-top: 110px;
}
@media (max-width: 992px) {
  .cid-uLuWfulM9q .title-wrapper {
    padding-top: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uLuWfulM9q .title-wrapper {
    margin: 0 10px;
  }
}
.cid-uLuWfulM9q .mbr-section-title {
  color: #fdfcfc;
  text-align: right;
}
.cid-uLuV5zh6vQ {
  overflow: hidden;
  background-color: #fafbf2;
}
.cid-uLuV5zh6vQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuV5zh6vQ .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-uLuV5zh6vQ .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uLuV5zh6vQ .container {
    padding: 0 12px;
  }
}
.cid-uLuV5zh6vQ .row {
  margin: 0;
}
.cid-uLuV5zh6vQ .row .card {
  padding: 0 8px;
}
.cid-uLuV5zh6vQ .row .card:first-child {
  padding-left: 0;
}
@media (max-width: 992px) {
  .cid-uLuV5zh6vQ .row .card:first-child {
    padding: 0;
  }
}
.cid-uLuV5zh6vQ .row .card:last-child {
  padding-right: 0;
}
@media (max-width: 992px) {
  .cid-uLuV5zh6vQ .row .card:last-child {
    padding: 0;
    margin-top: 16px;
  }
}
.cid-uLuV5zh6vQ .row .card:last-child .card-wrapper .card-wrap .mbr-section-title::before {
  display: none;
}
.cid-uLuV5zh6vQ .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 32px !important;
  background-color: #1d1d1f;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uLuV5zh6vQ .card-wrapper {
    padding: 32px;
  }
}
.cid-uLuV5zh6vQ .card-wrapper .title-wrapper {
  margin-bottom: 32px;
}
.cid-uLuV5zh6vQ .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0;
  position: relative;
}
.cid-uLuV5zh6vQ .card-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  width: 100%;
  opacity: .85;
  background-color: #4479d9;
  border-radius: 10rem;
}
.cid-uLuV5zh6vQ .image-wrapper img {
  min-height: 670px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLuV5zh6vQ .image-wrapper img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uLuV5zh6vQ .mbr-section-title {
  color: #ffffff;
}
.cid-uLuV74NxJI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fafbf2;
}
.cid-uLuV74NxJI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuV74NxJI .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-uLuV74NxJI .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uLuV74NxJI .container {
    padding: 0 12px;
  }
}
.cid-uLuV74NxJI .content-wrapper {
  border-radius: 32px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background-color: #212124;
}
@media (max-width: 992px) {
  .cid-uLuV74NxJI .content-wrapper {
    display: block;
  }
}
.cid-uLuV74NxJI .content-wrapper .title-wrapper {
  width: 35em;
  padding: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .cid-uLuV74NxJI .content-wrapper .title-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uLuV74NxJI .content-wrapper .title-wrapper {
    width: 100%;
  }
}
.cid-uLuV74NxJI .content-wrapper .title-wrapper .title-wrap {
  margin-bottom: 22px;
}
.cid-uLuV74NxJI .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 32px;
  position: relative;
}
.cid-uLuV74NxJI .content-wrapper .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 20px;
}
.cid-uLuV74NxJI .content-wrapper .image-wrapper {
  margin-top: 90px;
  border-top: 4px solid #212124;
  border-left: 4px solid #212124;
  padding: 40px 0 0 40px;
  border-radius: 64px 0 0 0;
  background-color: #212124;
}
@media (max-width: 992px) {
  .cid-uLuV74NxJI .content-wrapper .image-wrapper {
    margin: 0 0 0 32px;
  }
}
.cid-uLuV74NxJI .content-wrapper .image-wrapper img {
  min-height: 670px;
  border-radius: 32px 0 0 0 !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLuV74NxJI .content-wrapper .image-wrapper img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uLuV74NxJI .mbr-section-title {
  color: #ffffff;
}
.cid-uLuV74NxJI .mbr-text {
  color: #ffffff;
}
.cid-uLdwpqVTCH {
  display: flex;
  padding-top: 180px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/design-sans-titre-1.png-2000x953.png");
}
.cid-uLdwpqVTCH .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-uLdwpqVTCH .content-wrap {
  padding: 5rem 1rem;
  max-width: 800px;
}
@media (min-width: 768px) {
  .cid-uLdwpqVTCH {
    align-items: center;
  }
  .cid-uLdwpqVTCH .row {
    justify-content: flex-start;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLdwpqVTCH .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uLdwpqVTCH {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uLdwpqVTCH .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uLdwpqVTCH .content-wrap {
    width: 100%;
  }
}
.cid-uLdwpqVTCH .mbr-section-title {
  text-align: left;
}
.cid-uLdwpqVTCH .mbr-text,
.cid-uLdwpqVTCH .mbr-section-btn {
  text-align: left;
}
.cid-uLdwwZ6vIH {
  background-color: #fafbf2;
}
.cid-uLdwwZ6vIH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLdwwZ6vIH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLdwwZ6vIH a {
  font-weight: bold;
}
.cid-uLdwwZ6vIH .mbr-section-title {
  color: #151515;
  text-align: center;
}
.cid-uLdwwZ6vIH .mbr-text,
.cid-uLdwwZ6vIH .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uLjjQPepN7 {
  background-color: #fafbf2;
}
.cid-uLjjQPepN7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLjjQPepN7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLjjQPepN7 .card-wrapper {
  background: #bbbbbb;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uLjjQPepN7 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uLjjQPepN7 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uLjjQPepN7 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uLjjQPepN7 .mbr-text,
.cid-uLjjQPepN7 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uLjjQPepN7 .card-title,
.cid-uLjjQPepN7 .card-box {
  text-align: left;
}
.cid-uLnL3bIMB2 {
  background-image: url("../../../assets/images/theemiratesgrouprsquostotalworkforcegrewby10to112406employees-scaled.jpg-2000x1500.jpg");
  align-items: flex-end;
}
.cid-uLnL3bIMB2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLnL3bIMB2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLnL3bIMB2 .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uLnL3bIMB2 .container {
    height: auto;
  }
}
@media (max-width: 992px) {
  .cid-uLnL3bIMB2 .container {
    padding: 0 20px;
  }
}
.cid-uLnL3bIMB2 .row {
  height: 100%;
}
.cid-uLnL3bIMB2 .row .card {
  justify-content: flex-end;
}
.cid-uLnL3bIMB2 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLnL3bIMB2 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uLnL3bIMB2 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uLnL3bIMB2 .mbr-section-btn {
    text-align: left;
  }
}
.cid-uLnL3bIMB2 .mbr-section-title {
  color: #ffffff;
}
.cid-uLdwMXHwky {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uLdwMXHwky .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLdwMXHwky .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLdwMXHwky .row {
  justify-content: flex-start;
}
.cid-uLdwMXHwky .container {
  max-width: 1140px;
  margin: 0 auto;
}
.cid-uLdwMXHwky .container-fluid {
  padding: 0 130px;
}
@media (max-width: 991px) {
  .cid-uLdwMXHwky .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uLdwMXHwky .container-fluid {
    padding: 0 15px;
  }
}
.cid-uLdwMXHwky .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 70px;
  border-radius: 30px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-uLdwMXHwky .content-container {
    padding: 70px 30px;
  }
}
.cid-uLdwMXHwky .content-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uLdwMXHwky .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-uLdwMXHwky .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 0 !important;
  margin-top: 20px;
  width: 100%;
}
.cid-uLdwMXHwky .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uLdwMXHwky .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uLdwMXHwky .mbr-section-subtitle,
.cid-uLdwMXHwky .mbr-section-btn {
  text-align: left;
}
.cid-sUXQdSAA9P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-sUXQdSAA9P .container {
  max-width: 1750px;
}
.cid-sUXQdSAA9P .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-sUXQdSAA9P img {
  width: 150px;
  display: inline-block;
}
.cid-sUXQdSAA9P p {
  line-height: 1.8;
}
.cid-sUXQdSAA9P .mbr-text {
  color: #353535;
}
.cid-sUXQdSAA9P .mbr-section-title {
  color: #000000;
}
.cid-tFvlapxCUv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFvlapxCUv .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-tFvlapxCUv .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tFvlapxCUv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tFvlapxCUv .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tFvlapxCUv .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tFvlapxCUv .container {
    padding: 0 1rem;
  }
}
.cid-tFvlapxCUv .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tFvlapxCUv .nav-link {
  position: relative;
}
.cid-tFvlapxCUv .nav-link:hover {
  color: #47b5ed !important;
}
.cid-tFvlapxCUv nav.navbar {
  position: fixed;
}
.cid-tFvlapxCUv .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tFvlapxCUv .navbar.opened {
  transition: all 0.3s;
}
.cid-tFvlapxCUv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFvlapxCUv .navbar .navbar-logo img {
  width: auto;
}
.cid-tFvlapxCUv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFvlapxCUv .navbar.collapsed {
  justify-content: center;
}
.cid-tFvlapxCUv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFvlapxCUv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFvlapxCUv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tFvlapxCUv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFvlapxCUv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFvlapxCUv .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-tFvlapxCUv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFvlapxCUv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFvlapxCUv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFvlapxCUv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFvlapxCUv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFvlapxCUv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFvlapxCUv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFvlapxCUv .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-tFvlapxCUv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFvlapxCUv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFvlapxCUv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFvlapxCUv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFvlapxCUv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFvlapxCUv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFvlapxCUv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFvlapxCUv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFvlapxCUv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFvlapxCUv .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-tFvlapxCUv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFvlapxCUv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFvlapxCUv .dropdown-item:hover,
.cid-tFvlapxCUv .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tFvlapxCUv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFvlapxCUv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFvlapxCUv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tFvlapxCUv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFvlapxCUv .dropdown-menu,
.cid-tFvlapxCUv .navbar.opened {
  background: #ffffff !important;
}
.cid-tFvlapxCUv .nav-item:focus,
.cid-tFvlapxCUv .nav-link:focus {
  outline: none;
}
.cid-tFvlapxCUv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFvlapxCUv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFvlapxCUv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFvlapxCUv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFvlapxCUv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFvlapxCUv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFvlapxCUv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFvlapxCUv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFvlapxCUv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFvlapxCUv .dropdown-item.active,
.cid-tFvlapxCUv .dropdown-item:active {
  background-color: transparent;
}
.cid-tFvlapxCUv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFvlapxCUv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFvlapxCUv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFvlapxCUv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tFvlapxCUv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFvlapxCUv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFvlapxCUv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFvlapxCUv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFvlapxCUv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFvlapxCUv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tFvlapxCUv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFvlapxCUv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFvlapxCUv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFvlapxCUv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFvlapxCUv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFvlapxCUv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFvlapxCUv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFvlapxCUv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFvlapxCUv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFvlapxCUv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFvlapxCUv .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-tFvlapxCUv .navbar {
    height: 70px;
  }
  .cid-tFvlapxCUv .navbar.opened {
    height: auto;
  }
  .cid-tFvlapxCUv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLdHL8lBYu {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ff6666;
}
.cid-uLdHL8lBYu .row {
  position: relative;
}
.cid-uLdHL8lBYu .container {
  max-width: 1500px;
}
.cid-uLdHL8lBYu .container {
  padding-right: 8rem !important;
}
.cid-uLdHL8lBYu h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-uLdHL8lBYu .content-wrapper {
  max-width: 800px;
}
.cid-uLdHL8lBYu H1 {
  color: #000000;
}
.cid-uLdHL8lBYu .mbr-text,
.cid-uLdHL8lBYu .mbr-section-btn {
  color: #000000;
}
.cid-uLdHL8lBYu H3 {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-uLdHL8lBYu .container {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uLdHL8lBYu .container {
    padding-right: 4rem !important;
  }
}
.cid-uLdHL8lBYu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLdHL8lBYu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFvlapZDVr {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/dnata-global-network-2x.jpg.webp");
}
.cid-tFvlapZDVr .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-tFvlapZDVr .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tFvlapZDVr .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tFvlapZDVr .animated-element,
.cid-tFvlapZDVr .typed-cursor {
  color: #ffffff;
}
.cid-tFvlapZDVr .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-tFvlapZDVr .typed-text {
    text-align: center;
  }
}
.cid-tFvlapZDVr .mbr-section-title {
  text-align: left;
}
.cid-ub4qbYC67i {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ub4qbYC67i .row {
  padding: 0 1rem;
}
.cid-ub4qbYC67i .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ub4qbYC67i .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ub4qbYC67i .card-wrapper {
    width: fit-content;
    flex-direction: column;
  }
  .cid-ub4qbYC67i .card-wrapper .card-icon {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-ub4qbYC67i .align-right {
    text-align: center;
  }
}
.cid-ub4qbYC67i .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
.cid-ub4qbYC67i .item-wrapper {
  background-image: url("../../../assets/images/dna-2-2000x1124.jpeg");
  background-size: cover;
  min-width: 100%;
  background-position: center;
  display: flex;
  margin: 2rem;
  padding: 1rem 2rem;
}
@media (max-width: 992px) {
  .cid-ub4qbYC67i .item-wrapper {
    padding: 2rem;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-ub4qbYC67i .item-wrapper {
    padding: 2rem 0rem;
  }
}
.cid-ub4qbYC67i .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-ub4qbYC67i .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-ub4qbYC67i .card-title,
.cid-ub4qbYC67i .card-icon {
  color: #ffffff;
}
.cid-ub4qbYC67i .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub4qbYC67i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFvlaqcWDN {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tFvlaqcWDN .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tFvlaqcWDN .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tFvlaqcWDN .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tFvlaqcWDN .main-title.display-2 {
  line-height: 1.375;
}
.cid-tFvlaqcWDN .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tFvlaqcWDN .mbr-text {
  color: #606060;
}
.cid-tFvlaqcWDN .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tFvlaqcWDN .mbr-section-btn {
  margin-top: 24px;
}
.cid-tFvlaqcWDN .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-tFvlaqcWDN .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tFvlaqcWDN .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tFvlaqcWDN .badge,
.cid-tFvlaqcWDN .badge_wrap,
.cid-tFvlaqcWDN .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tFvlaqcWDN .main-title,
.cid-tFvlaqcWDN .mbr-section-btn {
  color: #404040;
}
.cid-u8scwm7J9a {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u8scwm7J9a .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u8scwm7J9a .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-u8scwm7J9a .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-u8scwm7J9a .mbr-section-title {
  color: #767676;
  margin-bottom: 60px;
}
.cid-u8scwm7J9a .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 35px;
}
.cid-u8scwm7J9a .card_body {
  margin-bottom: 40px;
}
.cid-u8scwm7J9a .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-u8scwm7J9a .card_body .list li {
  margin-bottom: 15px;
}
.cid-u8scwm7J9a .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-u8scwm7J9a .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #6592e6;
  font-size: inherit;
}
.cid-u8scwm7J9a .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #404040;
}
.cid-u8scwm7J9a .form_wrap {
  padding: 0px 65px;
}
.cid-u8scwm7J9a .form-group {
  margin-bottom: 30px;
}
.cid-u8scwm7J9a .form-control-label {
  margin-bottom: 18px;
  color: #ff6666;
  font-weight: 700;
}
.cid-u8scwm7J9a input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #ffffff;
}
.cid-u8scwm7J9a form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-u8scwm7J9a form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
.cid-u8scwm7J9a textarea,
.cid-u8scwm7J9a .jqselect {
  border: 1px solid #e0e5ff !important;
}
@media (max-width: 991px) {
  .cid-u8scwm7J9a .signup_wrap {
    padding: 50px 0;
  }
  .cid-u8scwm7J9a .form_wrap,
  .cid-u8scwm7J9a .title_block {
    padding: 0px 45px;
  }
  .cid-u8scwm7J9a .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-u8scwm7J9a .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-u8scwm7J9a .signup_wrap {
    padding: 15px 30px;
  }
  .cid-u8scwm7J9a .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-u8scwm7J9a .form_wrap,
  .cid-u8scwm7J9a .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-u8scwm7J9a .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-u8scwm7J9a LABEL {
  color: #353535;
}
.cid-u8gq3afSqw {
  padding-top: 300px;
  padding-bottom: 300px;
}
@media (max-width: 992px) {
  .cid-u8gq3afSqw {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
@media (max-width: 576px) {
  .cid-u8gq3afSqw {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.cid-u8gq3afSqw .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-u8gq3afSqw .icon-wrap span {
  padding-left: 8px;
}
.cid-u8gq3afSqw .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-u8gq3afSqw .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-u8gq3afSqw .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u8gq3afSqw .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u8gq3afSqw .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u8gq3afSqw a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-u8gq3afSqw a.close:hover {
  color: #ffffff;
}
.cid-tFvlatgjyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-tFvlatgjyb .container {
  max-width: 1750px;
}
.cid-tFvlatgjyb .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-tFvlatgjyb img {
  width: 150px;
  display: inline-block;
}
.cid-tFvlatgjyb p {
  line-height: 1.8;
}
.cid-tFvlatgjyb .mbr-text {
  color: #353535;
}
.cid-tFvlatgjyb .mbr-section-title {
  color: #000000;
}
.cid-tFBtO1rGp7 {
  background-image: url("../../../assets/images/loader.gif");
}
.cid-tFBtO1rGp7 .mbr-section-title {
  color: #ffffff;
}
.cid-tFBtO1rGp7 .mbr-text,
.cid-tFBtO1rGp7 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-u8gsOqkEgm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u8gsOqkEgm .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-u8gsOqkEgm .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-u8gsOqkEgm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u8gsOqkEgm .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-u8gsOqkEgm .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u8gsOqkEgm .container {
    padding: 0 1rem;
  }
}
.cid-u8gsOqkEgm .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-u8gsOqkEgm .nav-link {
  position: relative;
}
.cid-u8gsOqkEgm .nav-link:hover {
  color: #47b5ed !important;
}
.cid-u8gsOqkEgm nav.navbar {
  position: fixed;
}
.cid-u8gsOqkEgm .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8gsOqkEgm .navbar.opened {
  transition: all 0.3s;
}
.cid-u8gsOqkEgm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8gsOqkEgm .navbar .navbar-logo img {
  width: auto;
}
.cid-u8gsOqkEgm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8gsOqkEgm .navbar.collapsed {
  justify-content: center;
}
.cid-u8gsOqkEgm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8gsOqkEgm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8gsOqkEgm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u8gsOqkEgm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8gsOqkEgm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8gsOqkEgm .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-u8gsOqkEgm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8gsOqkEgm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8gsOqkEgm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8gsOqkEgm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8gsOqkEgm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8gsOqkEgm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8gsOqkEgm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8gsOqkEgm .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-u8gsOqkEgm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8gsOqkEgm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8gsOqkEgm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8gsOqkEgm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8gsOqkEgm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8gsOqkEgm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8gsOqkEgm .navbar.navbar-short {
  min-height: 60px;
}
.cid-u8gsOqkEgm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8gsOqkEgm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u8gsOqkEgm .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-u8gsOqkEgm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8gsOqkEgm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8gsOqkEgm .dropdown-item:hover,
.cid-u8gsOqkEgm .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u8gsOqkEgm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8gsOqkEgm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8gsOqkEgm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-u8gsOqkEgm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8gsOqkEgm .dropdown-menu,
.cid-u8gsOqkEgm .navbar.opened {
  background: #ffffff !important;
}
.cid-u8gsOqkEgm .nav-item:focus,
.cid-u8gsOqkEgm .nav-link:focus {
  outline: none;
}
.cid-u8gsOqkEgm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8gsOqkEgm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8gsOqkEgm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8gsOqkEgm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8gsOqkEgm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8gsOqkEgm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8gsOqkEgm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8gsOqkEgm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8gsOqkEgm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8gsOqkEgm .dropdown-item.active,
.cid-u8gsOqkEgm .dropdown-item:active {
  background-color: transparent;
}
.cid-u8gsOqkEgm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8gsOqkEgm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8gsOqkEgm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8gsOqkEgm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8gsOqkEgm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8gsOqkEgm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8gsOqkEgm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8gsOqkEgm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8gsOqkEgm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8gsOqkEgm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8gsOqkEgm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8gsOqkEgm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8gsOqkEgm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8gsOqkEgm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8gsOqkEgm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8gsOqkEgm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8gsOqkEgm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8gsOqkEgm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8gsOqkEgm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8gsOqkEgm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8gsOqkEgm .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-u8gsOqkEgm .navbar {
    height: 70px;
  }
  .cid-u8gsOqkEgm .navbar.opened {
    height: auto;
  }
  .cid-u8gsOqkEgm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8gsOrc7TZ {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/static-image-dnata-switzerlandag-11-936x479.jpg");
}
.cid-u8gsOrc7TZ .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-u8gsOrc7TZ .mbr-arrow i {
  color: #ffffff !important;
}
.cid-u8gsOrc7TZ .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-u8gsOrc7TZ .animated-element,
.cid-u8gsOrc7TZ .typed-cursor {
  color: #ffffff;
}
.cid-u8gsOrc7TZ .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-u8gsOrc7TZ .typed-text {
    text-align: center;
  }
}
.cid-ubhs4KAPGZ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ubhs4KAPGZ h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-ubhs4KAPGZ .mbr-section-subtitle {
  color: #767676;
}
.cid-ubhs4KAPGZ .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-ubhs4KAPGZ .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-ubhs4KAPGZ H2 {
  text-align: left;
}
.cid-ubhs4KAPGZ .article-title-left {
  text-align: left;
}
.cid-ubhs4KAPGZ .article-counter-left {
  text-align: center;
}
.cid-ubhs4KAPGZ .mbr-text-left {
  text-align: center;
}
.cid-ubhs4KAPGZ .mbr-text-right {
  text-align: center;
}
.cid-ubhs4KAPGZ .article-counter-right {
  text-align: center;
}
.cid-u8gtrODCFw {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u8gtrODCFw .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u8gtrODCFw .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-u8gtrODCFw .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #bbbbbb;
}
.cid-u8gtrODCFw .mbr-section-title {
  color: #767676;
  margin-bottom: 60px;
}
.cid-u8gtrODCFw .mbr-section-subtitle {
  color: #bbbbbb;
  margin-bottom: 35px;
}
.cid-u8gtrODCFw .card_body {
  margin-bottom: 40px;
}
.cid-u8gtrODCFw .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-u8gtrODCFw .card_body .list li {
  margin-bottom: 15px;
}
.cid-u8gtrODCFw .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-u8gtrODCFw .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #6592e6;
  font-size: inherit;
}
.cid-u8gtrODCFw .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #232323;
}
.cid-u8gtrODCFw .form_wrap {
  padding: 0px 65px;
}
.cid-u8gtrODCFw .form-group {
  margin-bottom: 30px;
}
.cid-u8gtrODCFw .form-control-label {
  margin-bottom: 18px;
  color: #ff6666;
  font-weight: 700;
}
.cid-u8gtrODCFw input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
}
.cid-u8gtrODCFw form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-u8gtrODCFw form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
.cid-u8gtrODCFw textarea,
.cid-u8gtrODCFw .jqselect {
  border: 1px solid #bbbbbb !important;
}
@media (max-width: 991px) {
  .cid-u8gtrODCFw .signup_wrap {
    padding: 50px 0;
  }
  .cid-u8gtrODCFw .form_wrap,
  .cid-u8gtrODCFw .title_block {
    padding: 0px 45px;
  }
  .cid-u8gtrODCFw .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-u8gtrODCFw .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-u8gtrODCFw .signup_wrap {
    padding: 15px 30px;
  }
  .cid-u8gtrODCFw .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-u8gtrODCFw .form_wrap,
  .cid-u8gtrODCFw .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-u8gtrODCFw .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-u8gtrODCFw LABEL {
  color: #ff6666;
}
.cid-u8gtrODCFw .list,
.cid-u8gtrODCFw .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-ubnkN0pBI4 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ubnkN0pBI4 blockquote {
  border-color: #e43f3f;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-ubnkN0pBI4 .mbr-section-title {
  color: #404040;
}
.cid-ubnkN0pBI4 .mbr-text {
  color: #404040;
}
.cid-ubgYEb4rRU {
  padding-top: 255px;
  background-image: url("../../../assets/images/banner-dnata3-1300x250.jpg");
}
.cid-ubgYEb4rRU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubgYEb4rRU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8gsOt6Bj7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-u8gsOt6Bj7 .container {
  max-width: 1750px;
}
.cid-u8gsOt6Bj7 .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-u8gsOt6Bj7 img {
  width: 150px;
  display: inline-block;
}
.cid-u8gsOt6Bj7 p {
  line-height: 1.8;
}
.cid-u8gsOt6Bj7 .mbr-text {
  color: #353535;
}
.cid-u8gsOt6Bj7 .mbr-section-title {
  color: #000000;
}
.cid-u8goOKz7Rk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u8goOKz7Rk .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-u8goOKz7Rk .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-u8goOKz7Rk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u8goOKz7Rk .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-u8goOKz7Rk .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u8goOKz7Rk .container {
    padding: 0 1rem;
  }
}
.cid-u8goOKz7Rk .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-u8goOKz7Rk .nav-link {
  position: relative;
}
.cid-u8goOKz7Rk .nav-link:hover {
  color: #47b5ed !important;
}
.cid-u8goOKz7Rk nav.navbar {
  position: fixed;
}
.cid-u8goOKz7Rk .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8goOKz7Rk .navbar.opened {
  transition: all 0.3s;
}
.cid-u8goOKz7Rk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8goOKz7Rk .navbar .navbar-logo img {
  width: auto;
}
.cid-u8goOKz7Rk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8goOKz7Rk .navbar.collapsed {
  justify-content: center;
}
.cid-u8goOKz7Rk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8goOKz7Rk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8goOKz7Rk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u8goOKz7Rk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8goOKz7Rk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8goOKz7Rk .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-u8goOKz7Rk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8goOKz7Rk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8goOKz7Rk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8goOKz7Rk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8goOKz7Rk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8goOKz7Rk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8goOKz7Rk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8goOKz7Rk .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-u8goOKz7Rk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8goOKz7Rk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8goOKz7Rk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8goOKz7Rk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8goOKz7Rk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8goOKz7Rk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8goOKz7Rk .navbar.navbar-short {
  min-height: 60px;
}
.cid-u8goOKz7Rk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8goOKz7Rk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u8goOKz7Rk .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-u8goOKz7Rk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8goOKz7Rk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8goOKz7Rk .dropdown-item:hover,
.cid-u8goOKz7Rk .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u8goOKz7Rk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8goOKz7Rk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8goOKz7Rk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-u8goOKz7Rk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8goOKz7Rk .dropdown-menu,
.cid-u8goOKz7Rk .navbar.opened {
  background: #ffffff !important;
}
.cid-u8goOKz7Rk .nav-item:focus,
.cid-u8goOKz7Rk .nav-link:focus {
  outline: none;
}
.cid-u8goOKz7Rk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8goOKz7Rk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8goOKz7Rk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8goOKz7Rk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8goOKz7Rk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8goOKz7Rk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8goOKz7Rk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8goOKz7Rk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8goOKz7Rk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8goOKz7Rk .dropdown-item.active,
.cid-u8goOKz7Rk .dropdown-item:active {
  background-color: transparent;
}
.cid-u8goOKz7Rk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8goOKz7Rk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8goOKz7Rk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8goOKz7Rk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8goOKz7Rk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8goOKz7Rk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8goOKz7Rk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8goOKz7Rk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8goOKz7Rk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8goOKz7Rk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8goOKz7Rk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8goOKz7Rk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8goOKz7Rk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8goOKz7Rk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8goOKz7Rk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8goOKz7Rk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8goOKz7Rk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8goOKz7Rk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8goOKz7Rk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8goOKz7Rk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8goOKz7Rk .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-u8goOKz7Rk .navbar {
    height: 70px;
  }
  .cid-u8goOKz7Rk .navbar.opened {
    height: auto;
  }
  .cid-u8goOKz7Rk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8goOLnGLF {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/gva-groundhandling-2000x1333.jpg");
}
.cid-u8goOLnGLF .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-u8goOLnGLF .mbr-arrow i {
  color: #ffffff !important;
}
.cid-u8goOLnGLF .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-u8goOLnGLF .animated-element,
.cid-u8goOLnGLF .typed-cursor {
  color: #ffffff;
}
.cid-u8goOLnGLF .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-u8goOLnGLF .typed-text {
    text-align: center;
  }
}
.cid-ub4qhyluGr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ub4qhyluGr .row {
  padding: 0 1rem;
}
.cid-ub4qhyluGr .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ub4qhyluGr .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ub4qhyluGr .card-wrapper {
    width: fit-content;
    flex-direction: column;
  }
  .cid-ub4qhyluGr .card-wrapper .card-icon {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-ub4qhyluGr .align-right {
    text-align: center;
  }
}
.cid-ub4qhyluGr .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
.cid-ub4qhyluGr .item-wrapper {
  background-image: url("../../../assets/images/dna-2-2000x1124.jpeg");
  background-size: cover;
  min-width: 100%;
  background-position: center;
  display: flex;
  margin: 2rem;
  padding: 1rem 2rem;
}
@media (max-width: 992px) {
  .cid-ub4qhyluGr .item-wrapper {
    padding: 2rem;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-ub4qhyluGr .item-wrapper {
    padding: 2rem 0rem;
  }
}
.cid-ub4qhyluGr .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-ub4qhyluGr .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-ub4qhyluGr .card-title,
.cid-ub4qhyluGr .card-icon {
  color: #ffffff;
}
.cid-ub4qhyluGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub4qhyluGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8goYlyL1H {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u8goYlyL1H .mbr-section-title {
  margin-bottom: 50px;
  text-align: left;
}
.cid-u8goYlyL1H .container-table {
  margin: 0 auto;
}
.cid-u8goYlyL1H .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u8goYlyL1H tbody tr:nth-child(odd) {
  background-color: #f5f4f6;
}
.cid-u8goYlyL1H .dataTables_wrapper {
  display: block;
}
.cid-u8goYlyL1H .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u8goYlyL1H .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u8goYlyL1H .head-item {
  color: #4479d9;
  min-width: 110px;
  letter-spacing: 2px;
}
.cid-u8goYlyL1H .body-item {
  color: #212529;
}
.cid-u8goYlyL1H .table td,
.cid-u8goYlyL1H .table th {
  border: none;
}
.cid-u8goYlyL1H table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u8goYlyL1H table th {
  padding: 24px 15px 20px 15px;
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u8goYlyL1H table td {
  padding: 24px 15px 20px 15px;
}
.cid-u8goYlyL1H .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u8goYlyL1H .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u8goYlyL1H .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u8goYlyL1H .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  color: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-u8goYlyL1H .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u8goYlyL1H .dataTables_filter {
    text-align: center;
  }
  .cid-u8goYlyL1H .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-ub5OVAXHuC {
  padding-top: 300px;
  padding-bottom: 300px;
}
@media (max-width: 992px) {
  .cid-ub5OVAXHuC {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
@media (max-width: 576px) {
  .cid-ub5OVAXHuC {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.cid-ub5OVAXHuC .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-ub5OVAXHuC .icon-wrap span {
  padding-left: 8px;
}
.cid-ub5OVAXHuC .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-ub5OVAXHuC .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-ub5OVAXHuC .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ub5OVAXHuC .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ub5OVAXHuC .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-ub5OVAXHuC a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-ub5OVAXHuC a.close:hover {
  color: #ffffff;
}
.cid-u8goON7iBL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-u8goON7iBL .container {
  max-width: 1750px;
}
.cid-u8goON7iBL .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-u8goON7iBL img {
  width: 150px;
  display: inline-block;
}
.cid-u8goON7iBL p {
  line-height: 1.8;
}
.cid-u8goON7iBL .mbr-text {
  color: #353535;
}
.cid-u8goON7iBL .mbr-section-title {
  color: #000000;
}
.cid-tRUTiMXRGo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tRUTiMXRGo .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-tRUTiMXRGo .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tRUTiMXRGo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tRUTiMXRGo .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tRUTiMXRGo .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tRUTiMXRGo .container {
    padding: 0 1rem;
  }
}
.cid-tRUTiMXRGo .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tRUTiMXRGo .nav-link {
  position: relative;
}
.cid-tRUTiMXRGo .nav-link:hover {
  color: #47b5ed !important;
}
.cid-tRUTiMXRGo nav.navbar {
  position: fixed;
}
.cid-tRUTiMXRGo .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tRUTiMXRGo .navbar.opened {
  transition: all 0.3s;
}
.cid-tRUTiMXRGo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRUTiMXRGo .navbar .navbar-logo img {
  width: auto;
}
.cid-tRUTiMXRGo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRUTiMXRGo .navbar.collapsed {
  justify-content: center;
}
.cid-tRUTiMXRGo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRUTiMXRGo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRUTiMXRGo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tRUTiMXRGo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRUTiMXRGo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRUTiMXRGo .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-tRUTiMXRGo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRUTiMXRGo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRUTiMXRGo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRUTiMXRGo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRUTiMXRGo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRUTiMXRGo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRUTiMXRGo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRUTiMXRGo .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-tRUTiMXRGo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRUTiMXRGo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRUTiMXRGo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRUTiMXRGo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRUTiMXRGo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRUTiMXRGo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRUTiMXRGo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRUTiMXRGo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRUTiMXRGo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRUTiMXRGo .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-tRUTiMXRGo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRUTiMXRGo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRUTiMXRGo .dropdown-item:hover,
.cid-tRUTiMXRGo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tRUTiMXRGo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRUTiMXRGo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRUTiMXRGo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tRUTiMXRGo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRUTiMXRGo .dropdown-menu,
.cid-tRUTiMXRGo .navbar.opened {
  background: #ffffff !important;
}
.cid-tRUTiMXRGo .nav-item:focus,
.cid-tRUTiMXRGo .nav-link:focus {
  outline: none;
}
.cid-tRUTiMXRGo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRUTiMXRGo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRUTiMXRGo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRUTiMXRGo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRUTiMXRGo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRUTiMXRGo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRUTiMXRGo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tRUTiMXRGo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRUTiMXRGo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRUTiMXRGo .dropdown-item.active,
.cid-tRUTiMXRGo .dropdown-item:active {
  background-color: transparent;
}
.cid-tRUTiMXRGo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRUTiMXRGo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRUTiMXRGo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRUTiMXRGo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRUTiMXRGo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRUTiMXRGo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRUTiMXRGo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRUTiMXRGo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRUTiMXRGo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRUTiMXRGo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tRUTiMXRGo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRUTiMXRGo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRUTiMXRGo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRUTiMXRGo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRUTiMXRGo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRUTiMXRGo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRUTiMXRGo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRUTiMXRGo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRUTiMXRGo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRUTiMXRGo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRUTiMXRGo .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-tRUTiMXRGo .navbar {
    height: 70px;
  }
  .cid-tRUTiMXRGo .navbar.opened {
    height: auto;
  }
  .cid-tRUTiMXRGo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRUTiNraoe {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/static-image-dnata-switzerlandag-24-2000x1201.jpeg");
}
.cid-tRUTiNraoe .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-tRUTiNraoe .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tRUTiNraoe .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tRUTiNraoe .animated-element,
.cid-tRUTiNraoe .typed-cursor {
  color: #ffffff;
}
.cid-tRUTiNraoe .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-tRUTiNraoe .typed-text {
    text-align: center;
  }
}
.cid-tRUTiNraoe .mbr-section-title {
  text-align: left;
}
.cid-tRUTiNraoe .mbr-section-subtitle,
.cid-tRUTiNraoe .underline {
  text-align: left;
}
.cid-ub4qkFTIiW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ub4qkFTIiW .row {
  padding: 0 1rem;
}
.cid-ub4qkFTIiW .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ub4qkFTIiW .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ub4qkFTIiW .card-wrapper {
    width: fit-content;
    flex-direction: column;
  }
  .cid-ub4qkFTIiW .card-wrapper .card-icon {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-ub4qkFTIiW .align-right {
    text-align: center;
  }
}
.cid-ub4qkFTIiW .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
.cid-ub4qkFTIiW .item-wrapper {
  background-image: url("../../../assets/images/dna-2-2000x1124.jpeg");
  background-size: cover;
  min-width: 100%;
  background-position: center;
  display: flex;
  margin: 2rem;
  padding: 1rem 2rem;
}
@media (max-width: 992px) {
  .cid-ub4qkFTIiW .item-wrapper {
    padding: 2rem;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-ub4qkFTIiW .item-wrapper {
    padding: 2rem 0rem;
  }
}
.cid-ub4qkFTIiW .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-ub4qkFTIiW .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-ub4qkFTIiW .card-title,
.cid-ub4qkFTIiW .card-icon {
  color: #ffffff;
}
.cid-ub4qkFTIiW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub4qkFTIiW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUTN7K1nb {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tRUTN7K1nb H1 {
  color: #57468b;
}
.cid-tRUTN7K1nb .mbr-text,
.cid-tRUTN7K1nb .mbr-section-btn {
  color: #716c80;
}
.cid-tRUTN7K1nb .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tRUTN7K1nb .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-tRUTN7K1nb .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-tRUTN7K1nb h3,
.cid-tRUTN7K1nb h4 {
  margin: 0;
  padding: 0;
}
.cid-tRUTN7K1nb H3 {
  color: #404040;
}
.cid-tRUTN7K1nb H4 {
  color: #bbbbbb;
}
@media (max-width: 576px) {
  .cid-tRUTN7K1nb .author-box {
    justify-content: center;
  }
}
.cid-tRUTN7K1nb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUTN7K1nb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8gla8HCNV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u8gla8HCNV H1 {
  color: #57468b;
}
.cid-u8gla8HCNV .mbr-text,
.cid-u8gla8HCNV .mbr-section-btn {
  color: #716c80;
}
.cid-u8gla8HCNV .author-box {
  display: flex;
  flex-direction: row;
}
.cid-u8gla8HCNV .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-u8gla8HCNV .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-u8gla8HCNV h3,
.cid-u8gla8HCNV h4 {
  margin: 0;
  padding: 0;
}
.cid-u8gla8HCNV H3 {
  color: #404040;
}
.cid-u8gla8HCNV H4 {
  color: #bbbbbb;
}
@media (max-width: 576px) {
  .cid-u8gla8HCNV .author-box {
    justify-content: center;
  }
}
.cid-u8gla8HCNV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8gla8HCNV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8glg3YBql {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u8glg3YBql H1 {
  color: #57468b;
}
.cid-u8glg3YBql .mbr-text,
.cid-u8glg3YBql .mbr-section-btn {
  color: #716c80;
}
.cid-u8glg3YBql .author-box {
  display: flex;
  flex-direction: row;
}
.cid-u8glg3YBql .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-u8glg3YBql .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-u8glg3YBql h3,
.cid-u8glg3YBql h4 {
  margin: 0;
  padding: 0;
}
.cid-u8glg3YBql H3 {
  color: #404040;
}
.cid-u8glg3YBql H4 {
  color: #bbbbbb;
}
@media (max-width: 576px) {
  .cid-u8glg3YBql .author-box {
    justify-content: center;
  }
}
.cid-u8glg3YBql .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8glg3YBql .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8glgOE0TR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u8glgOE0TR H1 {
  color: #57468b;
}
.cid-u8glgOE0TR .mbr-text,
.cid-u8glgOE0TR .mbr-section-btn {
  color: #716c80;
}
.cid-u8glgOE0TR .author-box {
  display: flex;
  flex-direction: row;
}
.cid-u8glgOE0TR .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-u8glgOE0TR .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-u8glgOE0TR h3,
.cid-u8glgOE0TR h4 {
  margin: 0;
  padding: 0;
}
.cid-u8glgOE0TR H3 {
  color: #404040;
}
.cid-u8glgOE0TR H4 {
  color: #bbbbbb;
}
@media (max-width: 576px) {
  .cid-u8glgOE0TR .author-box {
    justify-content: center;
  }
}
.cid-u8glgOE0TR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8glgOE0TR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUUiibcjG {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tRUUiibcjG .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tRUUiibcjG .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tRUUiibcjG .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tRUUiibcjG .main-title.display-2 {
  line-height: 1.375;
}
.cid-tRUUiibcjG .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tRUUiibcjG .mbr-text {
  color: #606060;
}
.cid-tRUUiibcjG .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tRUUiibcjG .mbr-section-btn {
  margin-top: 24px;
}
.cid-tRUUiibcjG .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tRUUiibcjG .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tRUUiibcjG .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tRUUiibcjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUUiibcjG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUUiibcjG .badge,
.cid-tRUUiibcjG .badge_wrap,
.cid-tRUUiibcjG .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tRUU1FfxLF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRUU1FfxLF blockquote {
  border-color: #4479d9;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tRUU1FfxLF .mbr-section-title {
  color: #404040;
}
.cid-tRUU1FfxLF .mbr-text {
  color: #404040;
}
.cid-ubhL5tapgF {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ubhL5tapgF .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ubhL5tapgF .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-ubhL5tapgF .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #6592e6;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-ubhL5tapgF .link:hover:before {
  background: #47b5ed;
}
.cid-ubhL5tapgF .mbr-section-title {
  color: #000000;
}
.cid-ubhL5tapgF .mbr-text,
.cid-ubhL5tapgF .mbr-section-btn {
  color: #000000;
}
.cid-ubhL5tapgF .link,
.cid-ubhL5tapgF .link-wrap {
  color: #000000;
}
.cid-ubhL5tapgF .mbr-title {
  color: #4479d9;
}
.cid-ubhL5tapgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubhL5tapgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUVrFwGB1 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tRUVrFwGB1 .container {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 50px 15px;
  border-radius: 50px;
  background-color: #9fdbf8;
  max-width: 80%;
}
@media (max-width: 768px) {
  .cid-tRUVrFwGB1 .container {
    padding: 50px 15px !important;
  }
  .cid-tRUVrFwGB1 .timelines-container {
    padding: 50px 21px !important;
  }
}
.cid-tRUVrFwGB1 .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  font-weight: 300;
}
.cid-tRUVrFwGB1 .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #130947;
  margin-right: 2rem;
  border-radius: 40px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-tRUVrFwGB1 .timeline-text-content p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tRUVrFwGB1 .timeline-text-content {
    padding: 1.5rem 0.5rem;
  }
}
.cid-tRUVrFwGB1 .mbr-timeline-title,
.cid-tRUVrFwGB1 .mbr-timeline-text {
  color: #ffffff;
}
.cid-tRUVrFwGB1 .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.cid-tRUVrFwGB1 .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tRUVrFwGB1 .reverse .timeline-text-content {
  margin-left: 2rem;
  margin-right: 0;
}
.cid-tRUVrFwGB1 .iconsBackground {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #130947;
  top: 20px;
  margin-left: -30px;
}
.cid-tRUVrFwGB1 .iconsBackground span {
  color: #ffffff;
}
.cid-tRUVrFwGB1 .mbr-iconfont {
  position: absolute;
  text-align: center;
  font-size: 35px;
  display: inline-block;
  z-index: 3;
  top: 13px;
  left: 13px;
}
.cid-tRUVrFwGB1 .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #130947;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
.cid-tRUVrFwGB1 .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 768px) {
  .cid-tRUVrFwGB1 .iconsBackground {
    left: 1.5rem;
  }
  .cid-tRUVrFwGB1 .separline:before {
    left: calc(1.5rem - 1px);
  }
  .cid-tRUVrFwGB1 .timeline-text-content {
    margin-left: 3rem !important;
    margin-right: 0 !important;
  }
  .cid-tRUVrFwGB1 .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-tRUVrFwGB1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUVrFwGB1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUVrFwGB1 .mbr-section-title {
  text-align: left;
  color: #404040;
}
.cid-tRUVrFwGB1 .mbr-timeline-text {
  color: #ffffff;
}
.cid-tRV1EAwH9W {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tRV1EAwH9W .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tRV1EAwH9W .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tRV1EAwH9W .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tRV1EAwH9W .main-title.display-2 {
  line-height: 1.375;
}
.cid-tRV1EAwH9W .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tRV1EAwH9W .mbr-text {
  color: #606060;
}
.cid-tRV1EAwH9W .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tRV1EAwH9W .mbr-section-btn {
  margin-top: 24px;
}
.cid-tRV1EAwH9W .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tRV1EAwH9W .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tRV1EAwH9W .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tRV1EAwH9W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRV1EAwH9W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRV1EAwH9W .badge,
.cid-tRV1EAwH9W .badge_wrap,
.cid-tRV1EAwH9W .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tRUYInfWzh {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-tRUYInfWzh .nav-tabs .nav-item.open .nav-link:focus,
.cid-tRUYInfWzh .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tRUYInfWzh .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-tRUYInfWzh .nav-tabs .nav-item {
  padding: 0.8rem 3rem 0.8rem 0rem;
  border-bottom: 1px solid #f9f7f6;
}
.cid-tRUYInfWzh .quote {
  padding-top: 0.8rem;
  color: #404040;
  font-weight: 700;
}
.cid-tRUYInfWzh .col-md-12 {
  flex-direction: row;
  display: flex;
}
.cid-tRUYInfWzh .nav {
  flex-direction: column;
}
.cid-tRUYInfWzh .nav-tabs .nav-link {
  padding: 0.2rem 1rem;
  color: #c3c3c3;
  font-style: normal;
  font-weight: 700;
  transition: all 0.5s;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tRUYInfWzh .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #4479d9;
  border-left: 3px solid #4479d9;
}
.cid-tRUYInfWzh .nav-tabs .nav-link.active {
  font-weight: 700;
  color: #4479d9;
  font-style: normal;
  border-left: 3px solid #4479d9;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tRUYInfWzh .nav-tabs {
    flex-direction: row;
    border-right: 0px;
    padding-right: 0rem;
  }
  .cid-tRUYInfWzh .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-tRUYInfWzh p {
    padding-left: 0rem;
  }
  .cid-tRUYInfWzh .quote {
    padding-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-tRUYInfWzh .mbr-text {
    padding-left: 2rem;
  }
}
@media (max-width: 576px) {
  .cid-tRUYInfWzh .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-tRUYInfWzh .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    flex-direction: column;
  }
  .cid-tRUYInfWzh p {
    padding-left: 0rem;
  }
}
.cid-tRUYInfWzh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUYInfWzh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUYInfWzh P {
  color: #353535;
}
.cid-tRUZSLxx0D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tRUZSLxx0D .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tRUZSLxx0D .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tRUZSLxx0D .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tRUZSLxx0D .main-title.display-2 {
  line-height: 1.375;
}
.cid-tRUZSLxx0D .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tRUZSLxx0D .mbr-text {
  color: #606060;
}
.cid-tRUZSLxx0D .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tRUZSLxx0D .mbr-section-btn {
  margin-top: 24px;
}
.cid-tRUZSLxx0D .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-tRUZSLxx0D .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tRUZSLxx0D .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tRUZSLxx0D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUZSLxx0D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUZSLxx0D .badge,
.cid-tRUZSLxx0D .badge_wrap,
.cid-tRUZSLxx0D .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tRUZZiHlr5 {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tRUZZiHlr5 .mbr-section-title {
  color: #000000;
}
.cid-tRUZZiHlr5 .link,
.cid-tRUZZiHlr5 .link-wrap {
  color: #000000;
}
.cid-tRUZZiHlr5 .mbr-title {
  color: #404040;
}
.cid-tRUZZiHlr5 .position {
  margin: 0;
  color: #bbbbbb;
}
.cid-tRUZZiHlr5 .d-flex {
  padding: 0;
  margin-top: 2rem;
}
.cid-tRUZZiHlr5 .bottom {
  overflow: visible;
  position: relative;
}
.cid-tRUZZiHlr5 .bottom:before {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid #3098f3;
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  content: '';
}
.cid-tRUZZiHlr5 .pb {
  margin-bottom: 2rem;
}
.cid-tRUZZiHlr5 .card-wrapper {
  background: #3098f3;
  padding: 1.5rem;
  height: 100%;
  border-radius: 16px;
}
.cid-tRUZZiHlr5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tRUZZiHlr5 .image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  margin-left: 1rem;
}
.cid-tRUZZiHlr5 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tRUZZiHlr5 .mbr-text,
.cid-tRUZZiHlr5 .mbr-section-btn {
  color: #000000;
}
.cid-tRUZZiHlr5 .name {
  color: #bbbbbb;
}
.cid-tRUZZiHlr5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRUZZiHlr5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRV99bwbD7 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRV99bwbD7 .mbr-section-title {
  color: #000000;
}
.cid-tRV99bwbD7 .link,
.cid-tRV99bwbD7 .link-wrap {
  color: #000000;
}
.cid-tRV99bwbD7 .mbr-title {
  color: #bbbbbb;
}
.cid-tRV99bwbD7 .position {
  margin: 0;
  color: #bbbbbb;
}
.cid-tRV99bwbD7 .d-flex {
  padding: 0;
  margin-top: 2rem;
}
.cid-tRV99bwbD7 .bottom {
  overflow: visible;
  position: relative;
}
.cid-tRV99bwbD7 .bottom:before {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid #bbbbbb;
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  content: '';
}
.cid-tRV99bwbD7 .pb {
  margin-bottom: 2rem;
}
.cid-tRV99bwbD7 .card-wrapper {
  background: #bbbbbb;
  padding: 1.5rem;
  height: 100%;
  border-radius: 16px;
}
.cid-tRV99bwbD7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tRV99bwbD7 .image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  margin-left: 1rem;
}
.cid-tRV99bwbD7 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tRV99bwbD7 .mbr-text,
.cid-tRV99bwbD7 .mbr-section-btn {
  color: #000000;
}
.cid-tRV99bwbD7 .name {
  color: #000000;
}
.cid-tRV99bwbD7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRV99bwbD7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubhEaFp0I5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ubhEaFp0I5 .mbr-section-title {
  color: #000000;
}
.cid-ubhEaFp0I5 .link,
.cid-ubhEaFp0I5 .link-wrap {
  color: #000000;
}
.cid-ubhEaFp0I5 .mbr-title {
  color: #bbbbbb;
}
.cid-ubhEaFp0I5 .position {
  margin: 0;
  color: #bbbbbb;
}
.cid-ubhEaFp0I5 .d-flex {
  padding: 0;
  margin-top: 2rem;
}
.cid-ubhEaFp0I5 .bottom {
  overflow: visible;
  position: relative;
}
.cid-ubhEaFp0I5 .bottom:before {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid #bbbbbb;
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  content: '';
}
.cid-ubhEaFp0I5 .pb {
  margin-bottom: 2rem;
}
.cid-ubhEaFp0I5 .card-wrapper {
  background: #bbbbbb;
  padding: 1.5rem;
  height: 100%;
  border-radius: 16px;
}
.cid-ubhEaFp0I5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ubhEaFp0I5 .image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  margin-left: 1rem;
}
.cid-ubhEaFp0I5 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-ubhEaFp0I5 .mbr-text,
.cid-ubhEaFp0I5 .mbr-section-btn {
  color: #000000;
}
.cid-ubhEaFp0I5 .name {
  color: #e43f3f;
}
.cid-ubhEaFp0I5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubhEaFp0I5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRV8F3IR2O {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRV8F3IR2O .img-row {
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-tRV8F3IR2O .img-row {
    flex-wrap: nowrap;
  }
}
.cid-tRV8F3IR2O .item:focus,
.cid-tRV8F3IR2O span:focus {
  outline: none;
}
.cid-tRV8F3IR2O .mbr-section-title {
  color: #111111;
  margin-bottom: 20px;
}
.cid-tRV8F3IR2O .item-img {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-tRV8F3IR2O .item-img {
    margin-bottom: 40px;
  }
}
.cid-tRV8F3IR2O .item-img img {
  height: 100px;
  width: auto;
  object-fit: cover;
}
.cid-tRV8F3IR2O .btn-item {
  width: 100%;
}
.cid-tRV8F3IR2O .mbr-section-btn {
  font-weight: 500;
}
@media (max-width: 575px) {
  .cid-tRV8F3IR2O .mbr-section-btn {
    flex-wrap: wrap;
    display: flex;
  }
  .cid-tRV8F3IR2O .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tRV8F3IR2O .label-text {
  text-align: left;
}
.cid-u8gmjhtnjS {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u8gmjhtnjS .head_block {
  background: #22a5e5;
  border-radius: 4px;
  padding: 40px;
}
@media (max-width: 767px) {
  .cid-u8gmjhtnjS .head_block {
    padding: 20px;
  }
}
.cid-u8gmjhtnjS .mbr-section-subtitle,
.cid-u8gmjhtnjS .mbr-text {
  margin-bottom: 12px;
}
.cid-u8gmjhtnjS .mbr-text {
  margin-top: 2rem;
}
.cid-u8gmjhtnjS .subscribe_form {
  padding-bottom: 50px;
}
.cid-u8gmjhtnjS .form-group {
  margin-bottom: 0;
  padding-right: 0;
}
.cid-u8gmjhtnjS .form-control {
  border: none !important;
  padding: 14px 18px;
  background-color: #fef2ed !important;
  font-size: 16px;
  color: #010a44;
  border-radius: 4px;
  background-color: transparent !important;
  border: 1px solid #f14105 !important;
}
.cid-u8gmjhtnjS .input-group-btn {
  padding-left: 0;
}
.cid-u8gmjhtnjS .input-group-btn .btn {
  font-weight: 600;
  padding: 11px 18px;
  width: 100%;
}
.cid-u8gmjhtnjS .mbr-form .input-group-btn .btn {
  border-radius: 4px !important;
}
.cid-u8gmjhtnjS .mbr-form .btn {
  margin: 0;
}
.cid-u8gmjhtnjS input::-webkit-input-placeholder {
  color: #010a44;
  opacity: .6;
}
.cid-u8gmjhtnjS input::-moz-placeholder {
  color: #010a44;
  opacity: .6;
}
.cid-u8gmjhtnjS .line {
  background-color: #22a5e5;
  height: 1px;
}
.cid-u8gmjhtnjS .textGDPR {
  font-size: 14px;
  text-align: left;
}
.cid-u8gmjhtnjS .textGDPR input[name='gdpr'] {
  top: 0 !important;
}
.cid-u8gmjhtnjS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8gmjhtnjS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8gmjhtnjS .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ubgYLBILcJ {
  padding-top: 255px;
  background-image: url("../../../assets/images/microsoftteams-image-scaled-1-2000x339.jpg");
}
.cid-ubgYLBILcJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubgYLBILcJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRUTiOjfPp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-tRUTiOjfPp .container {
  max-width: 1750px;
}
.cid-tRUTiOjfPp .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-tRUTiOjfPp img {
  width: 150px;
  display: inline-block;
}
.cid-tRUTiOjfPp p {
  line-height: 1.8;
}
.cid-tRUTiOjfPp .mbr-text {
  color: #353535;
}
.cid-tRUTiOjfPp .mbr-section-title {
  color: #000000;
}
.cid-ub65XWOYYc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ub65XWOYYc .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-ub65XWOYYc .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-ub65XWOYYc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-ub65XWOYYc .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-ub65XWOYYc .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-ub65XWOYYc .container {
    padding: 0 1rem;
  }
}
.cid-ub65XWOYYc .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-ub65XWOYYc .nav-link {
  position: relative;
}
.cid-ub65XWOYYc .nav-link:hover {
  color: #47b5ed !important;
}
.cid-ub65XWOYYc nav.navbar {
  position: fixed;
}
.cid-ub65XWOYYc .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ub65XWOYYc .navbar.opened {
  transition: all 0.3s;
}
.cid-ub65XWOYYc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ub65XWOYYc .navbar .navbar-logo img {
  width: auto;
}
.cid-ub65XWOYYc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ub65XWOYYc .navbar.collapsed {
  justify-content: center;
}
.cid-ub65XWOYYc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ub65XWOYYc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ub65XWOYYc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ub65XWOYYc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ub65XWOYYc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ub65XWOYYc .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-ub65XWOYYc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ub65XWOYYc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ub65XWOYYc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ub65XWOYYc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ub65XWOYYc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ub65XWOYYc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ub65XWOYYc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ub65XWOYYc .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-ub65XWOYYc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ub65XWOYYc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ub65XWOYYc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ub65XWOYYc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ub65XWOYYc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ub65XWOYYc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ub65XWOYYc .navbar.navbar-short {
  min-height: 60px;
}
.cid-ub65XWOYYc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ub65XWOYYc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ub65XWOYYc .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-ub65XWOYYc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ub65XWOYYc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ub65XWOYYc .dropdown-item:hover,
.cid-ub65XWOYYc .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ub65XWOYYc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ub65XWOYYc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ub65XWOYYc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-ub65XWOYYc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ub65XWOYYc .dropdown-menu,
.cid-ub65XWOYYc .navbar.opened {
  background: #ffffff !important;
}
.cid-ub65XWOYYc .nav-item:focus,
.cid-ub65XWOYYc .nav-link:focus {
  outline: none;
}
.cid-ub65XWOYYc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ub65XWOYYc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ub65XWOYYc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ub65XWOYYc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ub65XWOYYc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ub65XWOYYc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ub65XWOYYc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ub65XWOYYc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ub65XWOYYc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ub65XWOYYc .dropdown-item.active,
.cid-ub65XWOYYc .dropdown-item:active {
  background-color: transparent;
}
.cid-ub65XWOYYc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ub65XWOYYc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ub65XWOYYc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ub65XWOYYc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ub65XWOYYc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ub65XWOYYc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ub65XWOYYc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ub65XWOYYc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ub65XWOYYc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ub65XWOYYc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ub65XWOYYc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ub65XWOYYc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ub65XWOYYc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ub65XWOYYc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ub65XWOYYc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ub65XWOYYc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ub65XWOYYc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ub65XWOYYc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ub65XWOYYc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ub65XWOYYc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ub65XWOYYc .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-ub65XWOYYc .navbar {
    height: 70px;
  }
  .cid-ub65XWOYYc .navbar.opened {
    height: auto;
  }
  .cid-ub65XWOYYc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ub65XYI8Ro {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/zur-2016-groundhandling-20-1076x807.jpg");
}
.cid-ub65XYI8Ro .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-ub65XYI8Ro .mbr-arrow i {
  color: #ffffff !important;
}
.cid-ub65XYI8Ro .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-ub65XYI8Ro .animated-element,
.cid-ub65XYI8Ro .typed-cursor {
  color: #ffffff;
}
.cid-ub65XYI8Ro .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-ub65XYI8Ro .typed-text {
    text-align: center;
  }
}
.cid-ub65XYI8Ro .mbr-section-title {
  text-align: left;
}
.cid-ub65XYI8Ro .mbr-section-subtitle,
.cid-ub65XYI8Ro .underline {
  text-align: left;
}
.cid-ub65XZLX9u {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ub65XZLX9u .row {
  padding: 0 1rem;
}
.cid-ub65XZLX9u .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ub65XZLX9u .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ub65XZLX9u .card-wrapper {
    width: fit-content;
    flex-direction: column;
  }
  .cid-ub65XZLX9u .card-wrapper .card-icon {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-ub65XZLX9u .align-right {
    text-align: center;
  }
}
.cid-ub65XZLX9u .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
.cid-ub65XZLX9u .item-wrapper {
  background-image: url("../../../assets/images/dna-2-2000x1124.jpeg");
  background-size: cover;
  min-width: 100%;
  background-position: center;
  display: flex;
  margin: 2rem;
  padding: 1rem 2rem;
}
@media (max-width: 992px) {
  .cid-ub65XZLX9u .item-wrapper {
    padding: 2rem;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-ub65XZLX9u .item-wrapper {
    padding: 2rem 0rem;
  }
}
.cid-ub65XZLX9u .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-ub65XZLX9u .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-ub65XZLX9u .card-title,
.cid-ub65XZLX9u .card-icon {
  color: #ffffff;
}
.cid-ub65XZLX9u .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub65XZLX9u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub65Y3ZAVH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ub65Y3ZAVH .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ub65Y3ZAVH .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ub65Y3ZAVH .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ub65Y3ZAVH .main-title.display-2 {
  line-height: 1.375;
}
.cid-ub65Y3ZAVH .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ub65Y3ZAVH .mbr-text {
  color: #606060;
}
.cid-ub65Y3ZAVH .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ub65Y3ZAVH .mbr-section-btn {
  margin-top: 24px;
}
.cid-ub65Y3ZAVH .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ub65Y3ZAVH .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ub65Y3ZAVH .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ub65Y3ZAVH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub65Y3ZAVH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub65Y3ZAVH .badge,
.cid-ub65Y3ZAVH .badge_wrap,
.cid-ub65Y3ZAVH .mbr-section-btn {
  color: #bbbbbb;
}
.cid-ub65Y4Nkeu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ub65Y4Nkeu blockquote {
  border-color: #4479d9;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-ub65Y4Nkeu .mbr-section-title {
  color: #404040;
}
.cid-ub65Yaa9cw {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ub65Yaa9cw .mbr-section-title {
  color: #000000;
}
.cid-ub65Yaa9cw .link,
.cid-ub65Yaa9cw .link-wrap {
  color: #000000;
}
.cid-ub65Yaa9cw .mbr-title {
  color: #3098f3;
}
.cid-ub65Yaa9cw .position {
  margin: 0;
  color: #bbbbbb;
}
.cid-ub65Yaa9cw .d-flex {
  padding: 0;
  margin-top: 2rem;
}
.cid-ub65Yaa9cw .bottom {
  overflow: visible;
  position: relative;
}
.cid-ub65Yaa9cw .bottom:before {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid #3098f3;
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  content: '';
}
.cid-ub65Yaa9cw .pb {
  margin-bottom: 2rem;
}
.cid-ub65Yaa9cw .card-wrapper {
  background: #3098f3;
  padding: 1.5rem;
  height: 100%;
  border-radius: 16px;
}
.cid-ub65Yaa9cw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub65Yaa9cw .image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  margin-left: 1rem;
}
.cid-ub65Yaa9cw .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-ub65Yaa9cw .mbr-text,
.cid-ub65Yaa9cw .mbr-section-btn {
  color: #000000;
}
.cid-ub65Yaa9cw .name {
  color: #bbbbbb;
}
.cid-ub65Yaa9cw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub65Yaa9cw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub65Y6ml30 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ub65Y6ml30 .container {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 50px 15px;
  border-radius: 50px;
  background-color: #fafafa;
  max-width: 80%;
}
@media (max-width: 768px) {
  .cid-ub65Y6ml30 .container {
    padding: 50px 15px !important;
  }
  .cid-ub65Y6ml30 .timelines-container {
    padding: 50px 21px !important;
  }
}
.cid-ub65Y6ml30 .mbr-section-subtitle {
  color: #404040;
  text-align: left;
  font-weight: 300;
}
.cid-ub65Y6ml30 .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #5f86be;
  margin-right: 2rem;
  border-radius: 40px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-ub65Y6ml30 .timeline-text-content p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ub65Y6ml30 .timeline-text-content {
    padding: 1.5rem 0.5rem;
  }
}
.cid-ub65Y6ml30 .mbr-timeline-title,
.cid-ub65Y6ml30 .mbr-timeline-text {
  color: #ffffff;
}
.cid-ub65Y6ml30 .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.cid-ub65Y6ml30 .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ub65Y6ml30 .reverse .timeline-text-content {
  margin-left: 2rem;
  margin-right: 0;
}
.cid-ub65Y6ml30 .iconsBackground {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #5f86be;
  top: 20px;
  margin-left: -30px;
}
.cid-ub65Y6ml30 .iconsBackground span {
  color: #ffffff;
}
.cid-ub65Y6ml30 .mbr-iconfont {
  position: absolute;
  text-align: center;
  font-size: 35px;
  display: inline-block;
  z-index: 3;
  top: 13px;
  left: 13px;
}
.cid-ub65Y6ml30 .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #5f86be;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
.cid-ub65Y6ml30 .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 768px) {
  .cid-ub65Y6ml30 .iconsBackground {
    left: 1.5rem;
  }
  .cid-ub65Y6ml30 .separline:before {
    left: calc(1.5rem - 1px);
  }
  .cid-ub65Y6ml30 .timeline-text-content {
    margin-left: 3rem !important;
    margin-right: 0 !important;
  }
  .cid-ub65Y6ml30 .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-ub65Y6ml30 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub65Y6ml30 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub65Y6ml30 .mbr-section-title {
  text-align: left;
  color: #404040;
}
.cid-ub65Y6ml30 .mbr-timeline-text {
  color: #ffffff;
}
.cid-ubgYRDejj2 {
  padding-top: 255px;
  background-image: url("../../../assets/images/microsoftteams-image-3-2216x376.png");
}
.cid-ubgYRDejj2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubgYRDejj2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub65YdwUwe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-ub65YdwUwe .container {
  max-width: 1750px;
}
.cid-ub65YdwUwe .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-ub65YdwUwe img {
  width: 150px;
  display: inline-block;
}
.cid-ub65YdwUwe p {
  line-height: 1.8;
}
.cid-ub65YdwUwe .mbr-text {
  color: #353535;
}
.cid-ub65YdwUwe .mbr-section-title {
  color: #000000;
}
.cid-ub4rlyYa64 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ub4rlyYa64 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-ub4rlyYa64 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-ub4rlyYa64 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-ub4rlyYa64 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-ub4rlyYa64 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-ub4rlyYa64 .container {
    padding: 0 1rem;
  }
}
.cid-ub4rlyYa64 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-ub4rlyYa64 .nav-link {
  position: relative;
}
.cid-ub4rlyYa64 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-ub4rlyYa64 nav.navbar {
  position: fixed;
}
.cid-ub4rlyYa64 .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ub4rlyYa64 .navbar.opened {
  transition: all 0.3s;
}
.cid-ub4rlyYa64 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ub4rlyYa64 .navbar .navbar-logo img {
  width: auto;
}
.cid-ub4rlyYa64 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ub4rlyYa64 .navbar.collapsed {
  justify-content: center;
}
.cid-ub4rlyYa64 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ub4rlyYa64 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ub4rlyYa64 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ub4rlyYa64 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ub4rlyYa64 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ub4rlyYa64 .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-ub4rlyYa64 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ub4rlyYa64 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ub4rlyYa64 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ub4rlyYa64 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ub4rlyYa64 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ub4rlyYa64 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ub4rlyYa64 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ub4rlyYa64 .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-ub4rlyYa64 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ub4rlyYa64 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ub4rlyYa64 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ub4rlyYa64 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ub4rlyYa64 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ub4rlyYa64 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ub4rlyYa64 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ub4rlyYa64 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ub4rlyYa64 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ub4rlyYa64 .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-ub4rlyYa64 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ub4rlyYa64 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ub4rlyYa64 .dropdown-item:hover,
.cid-ub4rlyYa64 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ub4rlyYa64 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ub4rlyYa64 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ub4rlyYa64 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-ub4rlyYa64 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ub4rlyYa64 .dropdown-menu,
.cid-ub4rlyYa64 .navbar.opened {
  background: #ffffff !important;
}
.cid-ub4rlyYa64 .nav-item:focus,
.cid-ub4rlyYa64 .nav-link:focus {
  outline: none;
}
.cid-ub4rlyYa64 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ub4rlyYa64 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ub4rlyYa64 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ub4rlyYa64 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ub4rlyYa64 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ub4rlyYa64 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ub4rlyYa64 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ub4rlyYa64 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ub4rlyYa64 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ub4rlyYa64 .dropdown-item.active,
.cid-ub4rlyYa64 .dropdown-item:active {
  background-color: transparent;
}
.cid-ub4rlyYa64 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ub4rlyYa64 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ub4rlyYa64 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ub4rlyYa64 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ub4rlyYa64 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ub4rlyYa64 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ub4rlyYa64 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ub4rlyYa64 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ub4rlyYa64 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ub4rlyYa64 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ub4rlyYa64 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ub4rlyYa64 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ub4rlyYa64 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ub4rlyYa64 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ub4rlyYa64 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ub4rlyYa64 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ub4rlyYa64 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ub4rlyYa64 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ub4rlyYa64 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ub4rlyYa64 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ub4rlyYa64 .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-ub4rlyYa64 .navbar {
    height: 70px;
  }
  .cid-ub4rlyYa64 .navbar.opened {
    height: auto;
  }
  .cid-ub4rlyYa64 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ub4rlAemkj {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/content-1600x644.jpg");
}
.cid-ub4rlAemkj .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-ub4rlAemkj .mbr-arrow i {
  color: #ffffff !important;
}
.cid-ub4rlAemkj .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-ub4rlAemkj .animated-element,
.cid-ub4rlAemkj .typed-cursor {
  color: #ffffff;
}
.cid-ub4rlAemkj .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-ub4rlAemkj .typed-text {
    text-align: center;
  }
}
.cid-ub4rlAemkj .mbr-section-title {
  text-align: left;
}
.cid-ub4rlCm7js {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-ub4rlCm7js .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ub4rlCm7js .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-ub4rlCm7js .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-ub4rlCm7js .mbr-section-title {
  color: #232323;
  margin-bottom: 60px;
}
.cid-ub4rlCm7js .mbr-section-subtitle {
  color: #bbbbbb;
  margin-bottom: 35px;
}
.cid-ub4rlCm7js .card_body {
  margin-bottom: 40px;
}
.cid-ub4rlCm7js .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-ub4rlCm7js .card_body .list li {
  margin-bottom: 15px;
}
.cid-ub4rlCm7js .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-ub4rlCm7js .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #6592e6;
  font-size: inherit;
}
.cid-ub4rlCm7js .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #404040;
}
.cid-ub4rlCm7js .form_wrap {
  padding: 0px 65px;
}
.cid-ub4rlCm7js .form-group {
  margin-bottom: 30px;
}
.cid-ub4rlCm7js .form-control-label {
  margin-bottom: 18px;
  color: #ff6666;
  font-weight: 700;
}
.cid-ub4rlCm7js input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #ffffff;
}
.cid-ub4rlCm7js form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ub4rlCm7js form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
.cid-ub4rlCm7js textarea,
.cid-ub4rlCm7js .jqselect {
  border: 1px solid #e0e5ff !important;
}
@media (max-width: 991px) {
  .cid-ub4rlCm7js .signup_wrap {
    padding: 50px 0;
  }
  .cid-ub4rlCm7js .form_wrap,
  .cid-ub4rlCm7js .title_block {
    padding: 0px 45px;
  }
  .cid-ub4rlCm7js .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-ub4rlCm7js .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-ub4rlCm7js .signup_wrap {
    padding: 15px 30px;
  }
  .cid-ub4rlCm7js .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-ub4rlCm7js .form_wrap,
  .cid-ub4rlCm7js .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-ub4rlCm7js .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-ub4rlCm7js LABEL {
  color: #ff6666;
}
.cid-ub4rlE2joY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-ub4rlE2joY .container {
  max-width: 1750px;
}
.cid-ub4rlE2joY .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-ub4rlE2joY img {
  width: 150px;
  display: inline-block;
}
.cid-ub4rlE2joY p {
  line-height: 1.8;
}
.cid-ub4rlE2joY .mbr-text {
  color: #353535;
}
.cid-ub4rlE2joY .mbr-section-title {
  color: #000000;
}
.cid-tFvmlF6e4F {
  background-image: url("../../../assets/images/dnata-27-2000x1334.jpg");
}
.cid-tFvmlF6e4F .mbr-section-title {
  color: #ffffff;
}
.cid-tFvmlF6e4F .mbr-text,
.cid-tFvmlF6e4F .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tKzCMCxcdq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tKzCMCxcdq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-tKzCMCxcdq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-tKzCMCxcdq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tKzCMCxcdq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tKzCMCxcdq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-tKzCMCxcdq .container {
    padding: 0 1rem;
  }
}
.cid-tKzCMCxcdq .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-tKzCMCxcdq .nav-link {
  position: relative;
}
.cid-tKzCMCxcdq .nav-link:hover {
  color: #47b5ed !important;
}
.cid-tKzCMCxcdq nav.navbar {
  position: fixed;
}
.cid-tKzCMCxcdq .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tKzCMCxcdq .navbar.opened {
  transition: all 0.3s;
}
.cid-tKzCMCxcdq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tKzCMCxcdq .navbar .navbar-logo img {
  width: auto;
}
.cid-tKzCMCxcdq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKzCMCxcdq .navbar.collapsed {
  justify-content: center;
}
.cid-tKzCMCxcdq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKzCMCxcdq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKzCMCxcdq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tKzCMCxcdq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKzCMCxcdq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tKzCMCxcdq .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-tKzCMCxcdq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKzCMCxcdq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tKzCMCxcdq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tKzCMCxcdq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKzCMCxcdq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKzCMCxcdq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKzCMCxcdq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tKzCMCxcdq .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-tKzCMCxcdq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tKzCMCxcdq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKzCMCxcdq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tKzCMCxcdq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tKzCMCxcdq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tKzCMCxcdq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tKzCMCxcdq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tKzCMCxcdq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tKzCMCxcdq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tKzCMCxcdq .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-tKzCMCxcdq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tKzCMCxcdq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tKzCMCxcdq .dropdown-item:hover,
.cid-tKzCMCxcdq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tKzCMCxcdq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tKzCMCxcdq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tKzCMCxcdq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-tKzCMCxcdq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tKzCMCxcdq .dropdown-menu,
.cid-tKzCMCxcdq .navbar.opened {
  background: #ffffff !important;
}
.cid-tKzCMCxcdq .nav-item:focus,
.cid-tKzCMCxcdq .nav-link:focus {
  outline: none;
}
.cid-tKzCMCxcdq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tKzCMCxcdq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tKzCMCxcdq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tKzCMCxcdq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tKzCMCxcdq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKzCMCxcdq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKzCMCxcdq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKzCMCxcdq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKzCMCxcdq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKzCMCxcdq .dropdown-item.active,
.cid-tKzCMCxcdq .dropdown-item:active {
  background-color: transparent;
}
.cid-tKzCMCxcdq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tKzCMCxcdq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKzCMCxcdq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKzCMCxcdq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKzCMCxcdq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKzCMCxcdq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKzCMCxcdq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tKzCMCxcdq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tKzCMCxcdq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tKzCMCxcdq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tKzCMCxcdq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tKzCMCxcdq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tKzCMCxcdq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tKzCMCxcdq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tKzCMCxcdq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tKzCMCxcdq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tKzCMCxcdq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tKzCMCxcdq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tKzCMCxcdq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tKzCMCxcdq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tKzCMCxcdq .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-tKzCMCxcdq .navbar {
    height: 70px;
  }
  .cid-tKzCMCxcdq .navbar.opened {
    height: auto;
  }
  .cid-tKzCMCxcdq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLdHydS6OB {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #4bf700;
}
.cid-uLdHydS6OB .row {
  position: relative;
}
.cid-uLdHydS6OB .container {
  max-width: 1500px;
}
.cid-uLdHydS6OB .container {
  padding-right: 8rem !important;
}
.cid-uLdHydS6OB h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-uLdHydS6OB .content-wrapper {
  max-width: 800px;
}
.cid-uLdHydS6OB H1 {
  color: #000000;
}
.cid-uLdHydS6OB .mbr-text,
.cid-uLdHydS6OB .mbr-section-btn {
  color: #000000;
}
.cid-uLdHydS6OB H3 {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-uLdHydS6OB .container {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uLdHydS6OB .container {
    padding-right: 4rem !important;
  }
}
.cid-uLdHydS6OB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLdHydS6OB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKzCMDgxvw {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/dnatach-banner-reduced-1330x665.jpg");
}
.cid-tKzCMDgxvw .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-tKzCMDgxvw .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tKzCMDgxvw .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tKzCMDgxvw .animated-element,
.cid-tKzCMDgxvw .typed-cursor {
  color: #ffffff;
}
.cid-tKzCMDgxvw .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-tKzCMDgxvw .typed-text {
    text-align: center;
  }
}
.cid-tKzCMDGpPv {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKzCMDGpPv .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-tKzCMDGpPv .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tKzCMDGpPv .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-tKzCMDGpPv .main-title.display-2 {
  line-height: 1.375;
}
.cid-tKzCMDGpPv .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tKzCMDGpPv .mbr-text {
  color: #606060;
}
.cid-tKzCMDGpPv .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-tKzCMDGpPv .mbr-section-btn {
  margin-top: 24px;
}
.cid-tKzCMDGpPv .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-tKzCMDGpPv .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tKzCMDGpPv .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-tKzCMDGpPv .mbr-section-subtitle,
.cid-tKzCMDGpPv .mbr-section-btn {
  color: #000000;
}
.cid-tKzCMDGpPv .badge,
.cid-tKzCMDGpPv .badge_wrap,
.cid-tKzCMDGpPv .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tKzCMDGpPv .main-title,
.cid-tKzCMDGpPv .mbr-section-btn {
  color: #404040;
}
.cid-ub5I0qitaf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ub5I0qitaf blockquote {
  border-color: #4479d9;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tKzCMDSNiz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKzCMDSNiz img,
.cid-tKzCMDSNiz .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tKzCMDSNiz .item:focus,
.cid-tKzCMDSNiz span:focus {
  outline: none;
}
.cid-tKzCMDSNiz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKzCMDSNiz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKzCMDSNiz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKzCMDSNiz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tKzCMDSNiz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKzCMDSNiz .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tKzCMDSNiz .mbr-text,
.cid-tKzCMDSNiz .mbr-section-btn {
  text-align: left;
}
.cid-tKzCMDSNiz .item-title {
  text-align: left;
}
.cid-tKzCMDSNiz .item-subtitle {
  text-align: center;
}
.cid-tKzCMDSNiz .mbr-section-subtitle {
  text-align: left;
  color: #22a5e5;
}
.cid-uLp3wmDIHO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLp3wmDIHO img,
.cid-uLp3wmDIHO .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uLp3wmDIHO .item:focus,
.cid-uLp3wmDIHO span:focus {
  outline: none;
}
.cid-uLp3wmDIHO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLp3wmDIHO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLp3wmDIHO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLp3wmDIHO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLp3wmDIHO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLp3wmDIHO .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uLp3wmDIHO .mbr-text,
.cid-uLp3wmDIHO .mbr-section-btn {
  text-align: left;
}
.cid-uLp3wmDIHO .item-title {
  text-align: left;
}
.cid-uLp3wmDIHO .item-subtitle {
  text-align: center;
}
.cid-uLp3wmDIHO .mbr-section-subtitle {
  text-align: left;
  color: #22a5e5;
}
.cid-ubaLZnq7Ym {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ubaLZnq7Ym .row {
  background: #fafafa;
  padding: 2rem 1rem;
  margin: 0rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-ubaLZnq7Ym .row {
    padding: 1rem 0rem;
  }
}
.cid-ubaLZnq7Ym img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-ubaLZnq7Ym img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ubaLZnq7Ym .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-ubaLZnq7Ym .mbr-text,
.cid-ubaLZnq7Ym .mbr-section-btn {
  color: #777777;
}
.cid-ubaLZnq7Ym .mbr-section-subtitle {
  color: #14191e;
}
.cid-ub4mhvsYO6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ub4mhvsYO6 .mbr-text {
  color: #767676;
}
.cid-ub4mhvsYO6 .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ub4mhvsYO6 .card-box {
    flex-direction: column;
  }
}
.cid-ub4mhvsYO6 .line {
  width: calc(100% - 2rem);
  margin: auto;
  height: 2px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-ub4mhvsYO6 .mbr-section-subtitle {
  color: #767676;
}
.cid-ub4mhvsYO6 .title .num {
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-ub4mhvsYO6 .title .num {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-ub4mhvsYO6 .title .card-title {
  z-index: 1;
}
.cid-ub4mhvsYO6 h4 {
  margin: 0;
}
.cid-ub4mhvsYO6 .num {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-ub4mhvsYO6 .card {
    margin-bottom: 1.5rem;
  }
}
.cid-ub4mhvsYO6 .card-title,
.cid-ub4mhvsYO6 .card-img {
  color: #767676;
}
.cid-ub4mhvsYO6 .num,
.cid-ub4mhvsYO6 .line {
  color: #bbbbbb;
}
.cid-ub4mhvsYO6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub4mhvsYO6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub4mhvsYO6 .mbr-section-title,
.cid-ub4mhvsYO6 .card-box {
  text-align: left;
}
.cid-ubgY0cAa7B {
  padding-top: 255px;
  background-image: url("../../../assets/images/microsoftteams-image-3-2216x376.png");
}
.cid-ubgY0cAa7B .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubgY0cAa7B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKzCMEyL4b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-tKzCMEyL4b .container {
  max-width: 1750px;
}
.cid-tKzCMEyL4b .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-tKzCMEyL4b img {
  width: 150px;
  display: inline-block;
}
.cid-tKzCMEyL4b p {
  line-height: 1.8;
}
.cid-tKzCMEyL4b .mbr-text {
  color: #353535;
}
.cid-tKzCMEyL4b .mbr-section-title {
  color: #000000;
}
.cid-ubhtnFwPhm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ubhtnFwPhm .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-ubhtnFwPhm .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-ubhtnFwPhm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-ubhtnFwPhm .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-ubhtnFwPhm .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-ubhtnFwPhm .container {
    padding: 0 1rem;
  }
}
.cid-ubhtnFwPhm .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-ubhtnFwPhm .nav-link {
  position: relative;
}
.cid-ubhtnFwPhm .nav-link:hover {
  color: #47b5ed !important;
}
.cid-ubhtnFwPhm nav.navbar {
  position: fixed;
}
.cid-ubhtnFwPhm .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ubhtnFwPhm .navbar.opened {
  transition: all 0.3s;
}
.cid-ubhtnFwPhm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubhtnFwPhm .navbar .navbar-logo img {
  width: auto;
}
.cid-ubhtnFwPhm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubhtnFwPhm .navbar.collapsed {
  justify-content: center;
}
.cid-ubhtnFwPhm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubhtnFwPhm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubhtnFwPhm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ubhtnFwPhm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubhtnFwPhm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubhtnFwPhm .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-ubhtnFwPhm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubhtnFwPhm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubhtnFwPhm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubhtnFwPhm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubhtnFwPhm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubhtnFwPhm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubhtnFwPhm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubhtnFwPhm .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-ubhtnFwPhm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubhtnFwPhm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubhtnFwPhm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubhtnFwPhm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubhtnFwPhm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubhtnFwPhm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubhtnFwPhm .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubhtnFwPhm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubhtnFwPhm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubhtnFwPhm .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-ubhtnFwPhm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubhtnFwPhm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ubhtnFwPhm .dropdown-item:hover,
.cid-ubhtnFwPhm .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ubhtnFwPhm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubhtnFwPhm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubhtnFwPhm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-ubhtnFwPhm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubhtnFwPhm .dropdown-menu,
.cid-ubhtnFwPhm .navbar.opened {
  background: #ffffff !important;
}
.cid-ubhtnFwPhm .nav-item:focus,
.cid-ubhtnFwPhm .nav-link:focus {
  outline: none;
}
.cid-ubhtnFwPhm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubhtnFwPhm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubhtnFwPhm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubhtnFwPhm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhtnFwPhm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubhtnFwPhm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubhtnFwPhm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubhtnFwPhm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubhtnFwPhm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubhtnFwPhm .dropdown-item.active,
.cid-ubhtnFwPhm .dropdown-item:active {
  background-color: transparent;
}
.cid-ubhtnFwPhm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubhtnFwPhm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubhtnFwPhm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubhtnFwPhm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ubhtnFwPhm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubhtnFwPhm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubhtnFwPhm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubhtnFwPhm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubhtnFwPhm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubhtnFwPhm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ubhtnFwPhm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubhtnFwPhm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhtnFwPhm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhtnFwPhm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubhtnFwPhm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhtnFwPhm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubhtnFwPhm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubhtnFwPhm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhtnFwPhm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ubhtnFwPhm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubhtnFwPhm .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-ubhtnFwPhm .navbar {
    height: 70px;
  }
  .cid-ubhtnFwPhm .navbar.opened {
    height: auto;
  }
  .cid-ubhtnFwPhm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubhtnGTNZv {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/image-2-2000x1335.jpg");
}
.cid-ubhtnGTNZv .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-ubhtnGTNZv .mbr-arrow i {
  color: #ffffff !important;
}
.cid-ubhtnGTNZv .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-ubhtnGTNZv .animated-element,
.cid-ubhtnGTNZv .typed-cursor {
  color: #ffffff;
}
.cid-ubhtnGTNZv .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-ubhtnGTNZv .typed-text {
    text-align: center;
  }
}
.cid-ubhtnHNymB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubhtnHNymB .row {
  padding: 0 1rem;
}
.cid-ubhtnHNymB .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ubhtnHNymB .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ubhtnHNymB .card-wrapper {
    width: fit-content;
    flex-direction: column;
  }
  .cid-ubhtnHNymB .card-wrapper .card-icon {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-ubhtnHNymB .align-right {
    text-align: center;
  }
}
.cid-ubhtnHNymB .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
.cid-ubhtnHNymB .item-wrapper {
  background-image: url("../../../assets/images/dna-2-2000x1124.jpeg");
  background-size: cover;
  min-width: 100%;
  background-position: center;
  display: flex;
  margin: 2rem;
  padding: 1rem 2rem;
}
@media (max-width: 992px) {
  .cid-ubhtnHNymB .item-wrapper {
    padding: 2rem;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-ubhtnHNymB .item-wrapper {
    padding: 2rem 0rem;
  }
}
.cid-ubhtnHNymB .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-ubhtnHNymB .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-ubhtnHNymB .card-title,
.cid-ubhtnHNymB .card-icon {
  color: #ffffff;
}
.cid-ubhtnHNymB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubhtnHNymB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubhtnIqwHs {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ubhtnIqwHs h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-ubhtnIqwHs .mbr-section-subtitle {
  color: #767676;
}
.cid-ubhtnIqwHs .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-ubhtnIqwHs .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-ubhtnIqwHs H2 {
  text-align: left;
}
.cid-ubhtnIqwHs .article-title-left {
  text-align: left;
}
.cid-ubhtnIqwHs .article-counter-left {
  text-align: center;
}
.cid-ubhtnIqwHs .mbr-text-left {
  text-align: center;
}
.cid-ubhtnIqwHs .mbr-text-right {
  text-align: center;
}
.cid-ubhtnIqwHs .article-counter-right {
  text-align: center;
}
.cid-ubhtnJ22TQ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ubhtnJ22TQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ubhtnJ22TQ .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-ubhtnJ22TQ .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #bbbbbb;
}
.cid-ubhtnJ22TQ .mbr-section-title {
  color: #767676;
  margin-bottom: 60px;
}
.cid-ubhtnJ22TQ .mbr-section-subtitle {
  color: #bbbbbb;
  margin-bottom: 35px;
}
.cid-ubhtnJ22TQ .card_body {
  margin-bottom: 40px;
}
.cid-ubhtnJ22TQ .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-ubhtnJ22TQ .card_body .list li {
  margin-bottom: 15px;
}
.cid-ubhtnJ22TQ .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-ubhtnJ22TQ .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #6592e6;
  font-size: inherit;
}
.cid-ubhtnJ22TQ .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #232323;
}
.cid-ubhtnJ22TQ .form_wrap {
  padding: 0px 65px;
}
.cid-ubhtnJ22TQ .form-group {
  margin-bottom: 30px;
}
.cid-ubhtnJ22TQ .form-control-label {
  margin-bottom: 18px;
  color: #ff6666;
  font-weight: 700;
}
.cid-ubhtnJ22TQ input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
}
.cid-ubhtnJ22TQ form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ubhtnJ22TQ form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
.cid-ubhtnJ22TQ textarea,
.cid-ubhtnJ22TQ .jqselect {
  border: 1px solid #bbbbbb !important;
}
@media (max-width: 991px) {
  .cid-ubhtnJ22TQ .signup_wrap {
    padding: 50px 0;
  }
  .cid-ubhtnJ22TQ .form_wrap,
  .cid-ubhtnJ22TQ .title_block {
    padding: 0px 45px;
  }
  .cid-ubhtnJ22TQ .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-ubhtnJ22TQ .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-ubhtnJ22TQ .signup_wrap {
    padding: 15px 30px;
  }
  .cid-ubhtnJ22TQ .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-ubhtnJ22TQ .form_wrap,
  .cid-ubhtnJ22TQ .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-ubhtnJ22TQ .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-ubhtnJ22TQ LABEL {
  color: #ff6666;
}
.cid-ubhtnJ22TQ .list,
.cid-ubhtnJ22TQ .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-ubhtnJ22TQ H5 {
  text-align: left;
}
.cid-ubnl5BcUo8 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ubnl5BcUo8 blockquote {
  border-color: #e43f3f;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-ubnl5BcUo8 .mbr-section-title {
  color: #404040;
}
.cid-ubnl5BcUo8 .mbr-text {
  color: #404040;
}
.cid-ubhtnKXaPc {
  padding-top: 255px;
  background-image: url("../../../assets/images/gva-groundhandling-2000x1333.jpg");
}
.cid-ubhtnKXaPc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubhtnKXaPc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubhtnLBwaQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-ubhtnLBwaQ .container {
  max-width: 1750px;
}
.cid-ubhtnLBwaQ .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-ubhtnLBwaQ img {
  width: 150px;
  display: inline-block;
}
.cid-ubhtnLBwaQ p {
  line-height: 1.8;
}
.cid-ubhtnLBwaQ .mbr-text {
  color: #353535;
}
.cid-ubhtnLBwaQ .mbr-section-title {
  color: #000000;
}
.cid-tKArDNVFd8 {
  background-image: url("../../../assets/images/static-image-dnata-switzerlandag-24-2000x1201.jpg");
}
.cid-tKArDNVFd8 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tKArDNVFd8 .mbr-text,
.cid-tKArDNVFd8 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uiV6MqRa1j {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/banners-template-2-2000x1000.png");
}
.cid-uiV6MqRa1j .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-uiV6MqRa1j .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uiV6MqRa1j .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uiV6MqRa1j .animated-element,
.cid-uiV6MqRa1j .typed-cursor {
  color: #ffffff;
}
.cid-uiV6MqRa1j .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-uiV6MqRa1j .typed-text {
    text-align: center;
  }
}
.cid-uiV6MqRa1j .mbr-section-title {
  text-align: center;
}
.cid-uiV6MqRa1j .mbr-section-subtitle,
.cid-uiV6MqRa1j .underline {
  text-align: center;
}
.cid-uiV6MsqvSR {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uiV6MsqvSR blockquote {
  border-color: #4479d9;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uiV6MsqvSR .mbr-section-title {
  color: #404040;
  text-align: center;
}
.cid-uiV6MsqvSR .mbr-text {
  color: #404040;
  text-align: center;
}
.cid-uiVaFUmSnn {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uiVaFUmSnn .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uiVaFUmSnn .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-uiVaFUmSnn .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #6592e6;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-uiVaFUmSnn .link:hover:before {
  background: #47b5ed;
}
.cid-uiVaFUmSnn .mbr-section-title {
  color: #000000;
}
.cid-uiVaFUmSnn .mbr-text,
.cid-uiVaFUmSnn .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uiVaFUmSnn .link,
.cid-uiVaFUmSnn .link-wrap {
  color: #000000;
}
.cid-uiVaFUmSnn .mbr-title {
  color: #4479d9;
  text-align: left;
}
.cid-uiVaFUmSnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiVaFUmSnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiV6MsBKFh {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uiV6MsBKFh .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uiV6MsBKFh .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-uiV6MsBKFh .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #6592e6;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-uiV6MsBKFh .link:hover:before {
  background: #47b5ed;
}
.cid-uiV6MsBKFh .mbr-section-title {
  color: #000000;
}
.cid-uiV6MsBKFh .mbr-text,
.cid-uiV6MsBKFh .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uiV6MsBKFh .link,
.cid-uiV6MsBKFh .link-wrap {
  color: #000000;
}
.cid-uiV6MsBKFh .mbr-title {
  color: #e43f3f;
  text-align: left;
}
.cid-uiV6MsBKFh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiV6MsBKFh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiV6MsMUDT {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uiV6MsMUDT .container {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 50px 15px;
  border-radius: 50px;
  background-color: #9fdbf8;
  max-width: 80%;
}
@media (max-width: 768px) {
  .cid-uiV6MsMUDT .container {
    padding: 50px 15px !important;
  }
  .cid-uiV6MsMUDT .timelines-container {
    padding: 50px 21px !important;
  }
}
.cid-uiV6MsMUDT .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  font-weight: 300;
}
.cid-uiV6MsMUDT .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #130947;
  margin-right: 2rem;
  border-radius: 40px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uiV6MsMUDT .timeline-text-content p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uiV6MsMUDT .timeline-text-content {
    padding: 1.5rem 0.5rem;
  }
}
.cid-uiV6MsMUDT .mbr-timeline-title,
.cid-uiV6MsMUDT .mbr-timeline-text {
  color: #ffffff;
}
.cid-uiV6MsMUDT .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.cid-uiV6MsMUDT .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uiV6MsMUDT .reverse .timeline-text-content {
  margin-left: 2rem;
  margin-right: 0;
}
.cid-uiV6MsMUDT .iconsBackground {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #130947;
  top: 20px;
  margin-left: -30px;
}
.cid-uiV6MsMUDT .iconsBackground span {
  color: #ffffff;
}
.cid-uiV6MsMUDT .mbr-iconfont {
  position: absolute;
  text-align: center;
  font-size: 35px;
  display: inline-block;
  z-index: 3;
  top: 13px;
  left: 13px;
}
.cid-uiV6MsMUDT .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #130947;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
.cid-uiV6MsMUDT .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 768px) {
  .cid-uiV6MsMUDT .iconsBackground {
    left: 1.5rem;
  }
  .cid-uiV6MsMUDT .separline:before {
    left: calc(1.5rem - 1px);
  }
  .cid-uiV6MsMUDT .timeline-text-content {
    margin-left: 3rem !important;
    margin-right: 0 !important;
  }
  .cid-uiV6MsMUDT .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-uiV6MsMUDT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiV6MsMUDT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiV6MsMUDT .mbr-section-title {
  text-align: left;
  color: #404040;
}
.cid-uiV6MsMUDT .mbr-timeline-text {
  color: #ffffff;
}
.cid-uiV6MtIuWj {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uiV6MtIuWj .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uiV6MtIuWj .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uiV6MtIuWj .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uiV6MtIuWj .main-title.display-2 {
  line-height: 1.375;
}
.cid-uiV6MtIuWj .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uiV6MtIuWj .mbr-text {
  color: #606060;
}
.cid-uiV6MtIuWj .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uiV6MtIuWj .mbr-section-btn {
  margin-top: 24px;
}
.cid-uiV6MtIuWj .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uiV6MtIuWj .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uiV6MtIuWj .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uiV6MtIuWj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiV6MtIuWj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiV6MtIuWj .badge,
.cid-uiV6MtIuWj .badge_wrap,
.cid-uiV6MtIuWj .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uiV6MtZ4Ew {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uiV6MtZ4Ew .mbr-section-title {
  color: #000000;
}
.cid-uiV6MtZ4Ew .link,
.cid-uiV6MtZ4Ew .link-wrap {
  color: #000000;
}
.cid-uiV6MtZ4Ew .mbr-title {
  color: #404040;
}
.cid-uiV6MtZ4Ew .position {
  margin: 0;
  color: #bbbbbb;
}
.cid-uiV6MtZ4Ew .d-flex {
  padding: 0;
  margin-top: 2rem;
}
.cid-uiV6MtZ4Ew .bottom {
  overflow: visible;
  position: relative;
}
.cid-uiV6MtZ4Ew .bottom:before {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid #3098f3;
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  content: '';
}
.cid-uiV6MtZ4Ew .pb {
  margin-bottom: 2rem;
}
.cid-uiV6MtZ4Ew .card-wrapper {
  background: #3098f3;
  padding: 1.5rem;
  height: 100%;
  border-radius: 16px;
}
.cid-uiV6MtZ4Ew .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uiV6MtZ4Ew .image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  margin-left: 1rem;
}
.cid-uiV6MtZ4Ew .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uiV6MtZ4Ew .mbr-text,
.cid-uiV6MtZ4Ew .mbr-section-btn {
  color: #000000;
}
.cid-uiV6MtZ4Ew .name {
  color: #bbbbbb;
}
.cid-uiV6MtZ4Ew .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiV6MtZ4Ew .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiVbpZagal {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uiVbpZagal .mbr-section-title {
  color: #000000;
}
.cid-uiVbpZagal .link,
.cid-uiVbpZagal .link-wrap {
  color: #000000;
}
.cid-uiVbpZagal .mbr-title {
  color: #404040;
}
.cid-uiVbpZagal .position {
  margin: 0;
  color: #bbbbbb;
}
.cid-uiVbpZagal .d-flex {
  padding: 0;
  margin-top: 2rem;
}
.cid-uiVbpZagal .bottom {
  overflow: visible;
  position: relative;
}
.cid-uiVbpZagal .bottom:before {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid #3098f3;
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  content: '';
}
.cid-uiVbpZagal .pb {
  margin-bottom: 2rem;
}
.cid-uiVbpZagal .card-wrapper {
  background: #3098f3;
  padding: 1.5rem;
  height: 100%;
  border-radius: 16px;
}
.cid-uiVbpZagal .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uiVbpZagal .image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  margin-left: 1rem;
}
.cid-uiVbpZagal .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uiVbpZagal .mbr-text,
.cid-uiVbpZagal .mbr-section-btn {
  color: #000000;
}
.cid-uiVbpZagal .name {
  color: #bbbbbb;
}
.cid-uiVbpZagal .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiVbpZagal .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiV6MvI0wx {
  padding-top: 240px;
  background-image: url("../../../assets/images/microsoftteams-image-3-2216x376.png");
}
.cid-uiV6MvI0wx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiV6MvI0wx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiV6MvYOJc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-uiV6MvYOJc .container {
  max-width: 1750px;
}
.cid-uiV6MvYOJc .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uiV6MvYOJc img {
  width: 150px;
  display: inline-block;
}
.cid-uiV6MvYOJc p {
  line-height: 1.8;
}
.cid-uiV6MvYOJc .mbr-text {
  color: #353535;
}
.cid-uiV6MvYOJc .mbr-section-title {
  color: #000000;
}
.cid-uLiZzsdKbd {
  background-color: #ffffff;
}
.cid-uLiZzsdKbd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLiZzsdKbd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLiZzsdKbd .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uLiZzsdKbd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLiZzsdKbd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uLiZzsdKbd .text-wrapper {
    padding: 2rem;
  }
}
.cid-uLiZzsdKbd .mbr-text {
  color: #bbbbbb;
}
.cid-uLiZsQJXpx {
  padding-top: 270px;
  background-image: url("../../../assets/images/microsoftteams-image-3-2216x376.png");
}
.cid-uLiZsQJXpx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLiZsQJXpx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtdftoh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uLuxtdftoh .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uLuxtdftoh .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uLuxtdftoh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uLuxtdftoh .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uLuxtdftoh .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uLuxtdftoh .container {
    padding: 0 1rem;
  }
}
.cid-uLuxtdftoh .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uLuxtdftoh .nav-link {
  position: relative;
}
.cid-uLuxtdftoh .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uLuxtdftoh nav.navbar {
  position: fixed;
}
.cid-uLuxtdftoh .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uLuxtdftoh .navbar.opened {
  transition: all 0.3s;
}
.cid-uLuxtdftoh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLuxtdftoh .navbar .navbar-logo img {
  width: auto;
}
.cid-uLuxtdftoh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLuxtdftoh .navbar.collapsed {
  justify-content: center;
}
.cid-uLuxtdftoh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLuxtdftoh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLuxtdftoh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uLuxtdftoh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLuxtdftoh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLuxtdftoh .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-uLuxtdftoh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLuxtdftoh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLuxtdftoh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLuxtdftoh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLuxtdftoh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLuxtdftoh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLuxtdftoh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLuxtdftoh .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-uLuxtdftoh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLuxtdftoh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLuxtdftoh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLuxtdftoh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLuxtdftoh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLuxtdftoh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uLuxtdftoh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLuxtdftoh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLuxtdftoh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLuxtdftoh .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-uLuxtdftoh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLuxtdftoh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLuxtdftoh .dropdown-item:hover,
.cid-uLuxtdftoh .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uLuxtdftoh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLuxtdftoh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLuxtdftoh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uLuxtdftoh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLuxtdftoh .dropdown-menu,
.cid-uLuxtdftoh .navbar.opened {
  background: #ffffff !important;
}
.cid-uLuxtdftoh .nav-item:focus,
.cid-uLuxtdftoh .nav-link:focus {
  outline: none;
}
.cid-uLuxtdftoh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLuxtdftoh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLuxtdftoh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLuxtdftoh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLuxtdftoh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLuxtdftoh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLuxtdftoh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLuxtdftoh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLuxtdftoh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLuxtdftoh .dropdown-item.active,
.cid-uLuxtdftoh .dropdown-item:active {
  background-color: transparent;
}
.cid-uLuxtdftoh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLuxtdftoh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLuxtdftoh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLuxtdftoh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLuxtdftoh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLuxtdftoh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLuxtdftoh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLuxtdftoh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLuxtdftoh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLuxtdftoh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLuxtdftoh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLuxtdftoh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLuxtdftoh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLuxtdftoh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLuxtdftoh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLuxtdftoh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLuxtdftoh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLuxtdftoh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLuxtdftoh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uLuxtdftoh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLuxtdftoh .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-uLuxtdftoh .navbar {
    height: 70px;
  }
  .cid-uLuxtdftoh .navbar.opened {
    height: auto;
  }
  .cid-uLuxtdftoh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLuxtefLS7 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/static-image-dnata-switzerlandag-24-2000x1201.jpeg");
}
.cid-uLuxtefLS7 .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-uLuxtefLS7 .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uLuxtefLS7 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uLuxtefLS7 .animated-element,
.cid-uLuxtefLS7 .typed-cursor {
  color: #ffffff;
}
.cid-uLuxtefLS7 .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-uLuxtefLS7 .typed-text {
    text-align: center;
  }
}
.cid-uLuxtefLS7 .mbr-section-title {
  text-align: left;
}
.cid-uLuxtefLS7 .mbr-section-subtitle,
.cid-uLuxtefLS7 .underline {
  text-align: left;
}
.cid-uLuxteHzxr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLuxteHzxr .row {
  padding: 0 1rem;
}
.cid-uLuxteHzxr .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLuxteHzxr .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uLuxteHzxr .card-wrapper {
    width: fit-content;
    flex-direction: column;
  }
  .cid-uLuxteHzxr .card-wrapper .card-icon {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uLuxteHzxr .align-right {
    text-align: center;
  }
}
.cid-uLuxteHzxr .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
.cid-uLuxteHzxr .item-wrapper {
  background-image: url("../../../assets/images/dna-2-2000x1124.jpeg");
  background-size: cover;
  min-width: 100%;
  background-position: center;
  display: flex;
  margin: 2rem;
  padding: 1rem 2rem;
}
@media (max-width: 992px) {
  .cid-uLuxteHzxr .item-wrapper {
    padding: 2rem;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-uLuxteHzxr .item-wrapper {
    padding: 2rem 0rem;
  }
}
.cid-uLuxteHzxr .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-uLuxteHzxr .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uLuxteHzxr .card-title,
.cid-uLuxteHzxr .card-icon {
  color: #ffffff;
}
.cid-uLuxteHzxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxteHzxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxteYLWl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uLuxteYLWl H1 {
  color: #57468b;
}
.cid-uLuxteYLWl .mbr-text,
.cid-uLuxteYLWl .mbr-section-btn {
  color: #716c80;
}
.cid-uLuxteYLWl .author-box {
  display: flex;
  flex-direction: row;
}
.cid-uLuxteYLWl .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-uLuxteYLWl .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-uLuxteYLWl h3,
.cid-uLuxteYLWl h4 {
  margin: 0;
  padding: 0;
}
.cid-uLuxteYLWl H3 {
  color: #404040;
}
.cid-uLuxteYLWl H4 {
  color: #bbbbbb;
}
@media (max-width: 576px) {
  .cid-uLuxteYLWl .author-box {
    justify-content: center;
  }
}
.cid-uLuxteYLWl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxteYLWl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtfgQJ0 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uLuxtfgQJ0 H1 {
  color: #57468b;
}
.cid-uLuxtfgQJ0 .mbr-text,
.cid-uLuxtfgQJ0 .mbr-section-btn {
  color: #716c80;
}
.cid-uLuxtfgQJ0 .author-box {
  display: flex;
  flex-direction: row;
}
.cid-uLuxtfgQJ0 .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-uLuxtfgQJ0 .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-uLuxtfgQJ0 h3,
.cid-uLuxtfgQJ0 h4 {
  margin: 0;
  padding: 0;
}
.cid-uLuxtfgQJ0 H3 {
  color: #404040;
}
.cid-uLuxtfgQJ0 H4 {
  color: #bbbbbb;
}
@media (max-width: 576px) {
  .cid-uLuxtfgQJ0 .author-box {
    justify-content: center;
  }
}
.cid-uLuxtfgQJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtfgQJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtfB3zm {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uLuxtfB3zm H1 {
  color: #57468b;
}
.cid-uLuxtfB3zm .mbr-text,
.cid-uLuxtfB3zm .mbr-section-btn {
  color: #716c80;
}
.cid-uLuxtfB3zm .author-box {
  display: flex;
  flex-direction: row;
}
.cid-uLuxtfB3zm .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-uLuxtfB3zm .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-uLuxtfB3zm h3,
.cid-uLuxtfB3zm h4 {
  margin: 0;
  padding: 0;
}
.cid-uLuxtfB3zm H3 {
  color: #404040;
}
.cid-uLuxtfB3zm H4 {
  color: #bbbbbb;
}
@media (max-width: 576px) {
  .cid-uLuxtfB3zm .author-box {
    justify-content: center;
  }
}
.cid-uLuxtfB3zm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtfB3zm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtfSrHO {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uLuxtfSrHO H1 {
  color: #57468b;
}
.cid-uLuxtfSrHO .mbr-text,
.cid-uLuxtfSrHO .mbr-section-btn {
  color: #716c80;
}
.cid-uLuxtfSrHO .author-box {
  display: flex;
  flex-direction: row;
}
.cid-uLuxtfSrHO .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-uLuxtfSrHO .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-uLuxtfSrHO h3,
.cid-uLuxtfSrHO h4 {
  margin: 0;
  padding: 0;
}
.cid-uLuxtfSrHO H3 {
  color: #404040;
}
.cid-uLuxtfSrHO H4 {
  color: #bbbbbb;
}
@media (max-width: 576px) {
  .cid-uLuxtfSrHO .author-box {
    justify-content: center;
  }
}
.cid-uLuxtfSrHO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtfSrHO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtg9nsK {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uLuxtg9nsK .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uLuxtg9nsK .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uLuxtg9nsK .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uLuxtg9nsK .main-title.display-2 {
  line-height: 1.375;
}
.cid-uLuxtg9nsK .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uLuxtg9nsK .mbr-text {
  color: #606060;
}
.cid-uLuxtg9nsK .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uLuxtg9nsK .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLuxtg9nsK .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uLuxtg9nsK .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uLuxtg9nsK .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uLuxtg9nsK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtg9nsK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtg9nsK .badge,
.cid-uLuxtg9nsK .badge_wrap,
.cid-uLuxtg9nsK .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uLuxtgvgw0 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLuxtgvgw0 blockquote {
  border-color: #4479d9;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uLuxtgvgw0 .mbr-section-title {
  color: #404040;
}
.cid-uLuxtgvgw0 .mbr-text {
  color: #404040;
}
.cid-uLuxtgM8wG {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLuxtgM8wG .link-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uLuxtgM8wG .link {
  padding-left: 2.5rem;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
}
.cid-uLuxtgM8wG .link:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  font-size: 1rem;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s;
  background: #6592e6;
  font-family: 'Moririse2' !important;
  content: "\e909";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cid-uLuxtgM8wG .link:hover:before {
  background: #47b5ed;
}
.cid-uLuxtgM8wG .mbr-section-title {
  color: #000000;
}
.cid-uLuxtgM8wG .mbr-text,
.cid-uLuxtgM8wG .mbr-section-btn {
  color: #000000;
}
.cid-uLuxtgM8wG .link,
.cid-uLuxtgM8wG .link-wrap {
  color: #000000;
}
.cid-uLuxtgM8wG .mbr-title {
  color: #4479d9;
}
.cid-uLuxtgM8wG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtgM8wG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxth5Fgs {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLuxth5Fgs .container {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 50px 15px;
  border-radius: 50px;
  background-color: #fff0b0;
  max-width: 80%;
}
@media (max-width: 768px) {
  .cid-uLuxth5Fgs .container {
    padding: 50px 15px !important;
  }
  .cid-uLuxth5Fgs .timelines-container {
    padding: 50px 21px !important;
  }
}
.cid-uLuxth5Fgs .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  font-weight: 300;
}
.cid-uLuxth5Fgs .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #130947;
  margin-right: 2rem;
  border-radius: 40px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uLuxth5Fgs .timeline-text-content p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uLuxth5Fgs .timeline-text-content {
    padding: 1.5rem 0.5rem;
  }
}
.cid-uLuxth5Fgs .mbr-timeline-title,
.cid-uLuxth5Fgs .mbr-timeline-text {
  color: #ffffff;
}
.cid-uLuxth5Fgs .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.cid-uLuxth5Fgs .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uLuxth5Fgs .reverse .timeline-text-content {
  margin-left: 2rem;
  margin-right: 0;
}
.cid-uLuxth5Fgs .iconsBackground {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #130947;
  top: 20px;
  margin-left: -30px;
}
.cid-uLuxth5Fgs .iconsBackground span {
  color: #ffffff;
}
.cid-uLuxth5Fgs .mbr-iconfont {
  position: absolute;
  text-align: center;
  font-size: 35px;
  display: inline-block;
  z-index: 3;
  top: 13px;
  left: 13px;
}
.cid-uLuxth5Fgs .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #130947;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
.cid-uLuxth5Fgs .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 768px) {
  .cid-uLuxth5Fgs .iconsBackground {
    left: 1.5rem;
  }
  .cid-uLuxth5Fgs .separline:before {
    left: calc(1.5rem - 1px);
  }
  .cid-uLuxth5Fgs .timeline-text-content {
    margin-left: 3rem !important;
    margin-right: 0 !important;
  }
  .cid-uLuxth5Fgs .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-uLuxth5Fgs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxth5Fgs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxth5Fgs .mbr-section-title {
  text-align: left;
  color: #404040;
}
.cid-uLuxth5Fgs .mbr-timeline-text {
  color: #ffffff;
}
.cid-uLuxthFSqk {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-uLuxthFSqk .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uLuxthFSqk .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uLuxthFSqk .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uLuxthFSqk .main-title.display-2 {
  line-height: 1.375;
}
.cid-uLuxthFSqk .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uLuxthFSqk .mbr-text {
  color: #606060;
}
.cid-uLuxthFSqk .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uLuxthFSqk .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLuxthFSqk .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uLuxthFSqk .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uLuxthFSqk .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uLuxthFSqk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxthFSqk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxthFSqk .badge,
.cid-uLuxthFSqk .badge_wrap,
.cid-uLuxthFSqk .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uLuxthX0Vl {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-uLuxthX0Vl .nav-tabs .nav-item.open .nav-link:focus,
.cid-uLuxthX0Vl .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uLuxthX0Vl .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-uLuxthX0Vl .nav-tabs .nav-item {
  padding: 0.8rem 3rem 0.8rem 0rem;
  border-bottom: 1px solid #f9f7f6;
}
.cid-uLuxthX0Vl .quote {
  padding-top: 0.8rem;
  color: #404040;
  font-weight: 700;
}
.cid-uLuxthX0Vl .col-md-12 {
  flex-direction: row;
  display: flex;
}
.cid-uLuxthX0Vl .nav {
  flex-direction: column;
}
.cid-uLuxthX0Vl .nav-tabs .nav-link {
  padding: 0.2rem 1rem;
  color: #c3c3c3;
  font-style: normal;
  font-weight: 700;
  transition: all 0.5s;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-uLuxthX0Vl .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #4479d9;
  border-left: 3px solid #4479d9;
}
.cid-uLuxthX0Vl .nav-tabs .nav-link.active {
  font-weight: 700;
  color: #4479d9;
  font-style: normal;
  border-left: 3px solid #4479d9;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uLuxthX0Vl .nav-tabs {
    flex-direction: row;
    border-right: 0px;
    padding-right: 0rem;
  }
  .cid-uLuxthX0Vl .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-uLuxthX0Vl p {
    padding-left: 0rem;
  }
  .cid-uLuxthX0Vl .quote {
    padding-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uLuxthX0Vl .mbr-text {
    padding-left: 2rem;
  }
}
@media (max-width: 576px) {
  .cid-uLuxthX0Vl .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-uLuxthX0Vl .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    flex-direction: column;
  }
  .cid-uLuxthX0Vl p {
    padding-left: 0rem;
  }
}
.cid-uLuxthX0Vl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxthX0Vl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxthX0Vl P {
  color: #353535;
}
.cid-uLuzTmK52B {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uLuzTmK52B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuzTmK52B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuzTmK52B .nav-tabs .nav-item.open .nav-link:focus,
.cid-uLuzTmK52B .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uLuzTmK52B .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #6592e6;
}
@media (max-width: 767px) {
  .cid-uLuzTmK52B .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-uLuzTmK52B .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-uLuzTmK52B .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-uLuzTmK52B .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-uLuzTmK52B .nav-link,
.cid-uLuzTmK52B .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uLuzTmK52B .nav-tabs .nav-link.active {
  color: #6592e6;
  border-bottom: 3px solid #6592e6;
}
.cid-uLuzTmK52B H4 {
  text-align: left;
}
.cid-uLuzTmK52B H3 {
  text-align: left;
}
.cid-uLuxtijc9v {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-uLuxtijc9v .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uLuxtijc9v .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uLuxtijc9v .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uLuxtijc9v .main-title.display-2 {
  line-height: 1.375;
}
.cid-uLuxtijc9v .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uLuxtijc9v .mbr-text {
  color: #606060;
}
.cid-uLuxtijc9v .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uLuxtijc9v .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLuxtijc9v .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uLuxtijc9v .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uLuxtijc9v .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uLuxtijc9v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtijc9v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtijc9v .badge,
.cid-uLuxtijc9v .badge_wrap,
.cid-uLuxtijc9v .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uLuxtiFl0k {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uLuxtiFl0k .mbr-section-title {
  color: #000000;
}
.cid-uLuxtiFl0k .link,
.cid-uLuxtiFl0k .link-wrap {
  color: #000000;
}
.cid-uLuxtiFl0k .mbr-title {
  color: #404040;
}
.cid-uLuxtiFl0k .position {
  margin: 0;
  color: #bbbbbb;
}
.cid-uLuxtiFl0k .d-flex {
  padding: 0;
  margin-top: 2rem;
}
.cid-uLuxtiFl0k .bottom {
  overflow: visible;
  position: relative;
}
.cid-uLuxtiFl0k .bottom:before {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid #3098f3;
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  content: '';
}
.cid-uLuxtiFl0k .pb {
  margin-bottom: 2rem;
}
.cid-uLuxtiFl0k .card-wrapper {
  background: #3098f3;
  padding: 1.5rem;
  height: 100%;
  border-radius: 16px;
}
.cid-uLuxtiFl0k .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLuxtiFl0k .image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  margin-left: 1rem;
}
.cid-uLuxtiFl0k .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uLuxtiFl0k .mbr-text,
.cid-uLuxtiFl0k .mbr-section-btn {
  color: #000000;
}
.cid-uLuxtiFl0k .name {
  color: #bbbbbb;
}
.cid-uLuxtiFl0k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtiFl0k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtiYoK9 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLuxtiYoK9 .mbr-section-title {
  color: #000000;
}
.cid-uLuxtiYoK9 .link,
.cid-uLuxtiYoK9 .link-wrap {
  color: #000000;
}
.cid-uLuxtiYoK9 .mbr-title {
  color: #bbbbbb;
}
.cid-uLuxtiYoK9 .position {
  margin: 0;
  color: #bbbbbb;
}
.cid-uLuxtiYoK9 .d-flex {
  padding: 0;
  margin-top: 2rem;
}
.cid-uLuxtiYoK9 .bottom {
  overflow: visible;
  position: relative;
}
.cid-uLuxtiYoK9 .bottom:before {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid #bbbbbb;
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  content: '';
}
.cid-uLuxtiYoK9 .pb {
  margin-bottom: 2rem;
}
.cid-uLuxtiYoK9 .card-wrapper {
  background: #bbbbbb;
  padding: 1.5rem;
  height: 100%;
  border-radius: 16px;
}
.cid-uLuxtiYoK9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLuxtiYoK9 .image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  margin-left: 1rem;
}
.cid-uLuxtiYoK9 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uLuxtiYoK9 .mbr-text,
.cid-uLuxtiYoK9 .mbr-section-btn {
  color: #000000;
}
.cid-uLuxtiYoK9 .name {
  color: #000000;
}
.cid-uLuxtiYoK9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtiYoK9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtjowmh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLuxtjowmh .mbr-section-title {
  color: #000000;
}
.cid-uLuxtjowmh .link,
.cid-uLuxtjowmh .link-wrap {
  color: #000000;
}
.cid-uLuxtjowmh .mbr-title {
  color: #bbbbbb;
}
.cid-uLuxtjowmh .position {
  margin: 0;
  color: #bbbbbb;
}
.cid-uLuxtjowmh .d-flex {
  padding: 0;
  margin-top: 2rem;
}
.cid-uLuxtjowmh .bottom {
  overflow: visible;
  position: relative;
}
.cid-uLuxtjowmh .bottom:before {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid #bbbbbb;
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  content: '';
}
.cid-uLuxtjowmh .pb {
  margin-bottom: 2rem;
}
.cid-uLuxtjowmh .card-wrapper {
  background: #bbbbbb;
  padding: 1.5rem;
  height: 100%;
  border-radius: 16px;
}
.cid-uLuxtjowmh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLuxtjowmh .image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  margin-left: 1rem;
}
.cid-uLuxtjowmh .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uLuxtjowmh .mbr-text,
.cid-uLuxtjowmh .mbr-section-btn {
  color: #000000;
}
.cid-uLuxtjowmh .name {
  color: #e43f3f;
}
.cid-uLuxtjowmh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtjowmh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtjKFRX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLuxtjKFRX .img-row {
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-uLuxtjKFRX .img-row {
    flex-wrap: nowrap;
  }
}
.cid-uLuxtjKFRX .item:focus,
.cid-uLuxtjKFRX span:focus {
  outline: none;
}
.cid-uLuxtjKFRX .mbr-section-title {
  color: #111111;
  margin-bottom: 20px;
}
.cid-uLuxtjKFRX .item-img {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-uLuxtjKFRX .item-img {
    margin-bottom: 40px;
  }
}
.cid-uLuxtjKFRX .item-img img {
  height: 100px;
  width: auto;
  object-fit: cover;
}
.cid-uLuxtjKFRX .btn-item {
  width: 100%;
}
.cid-uLuxtjKFRX .mbr-section-btn {
  font-weight: 500;
}
@media (max-width: 575px) {
  .cid-uLuxtjKFRX .mbr-section-btn {
    flex-wrap: wrap;
    display: flex;
  }
  .cid-uLuxtjKFRX .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uLuxtjKFRX .label-text {
  text-align: left;
}
.cid-uLuxtk5nGw {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLuxtk5nGw .head_block {
  background: #22a5e5;
  border-radius: 4px;
  padding: 40px;
}
@media (max-width: 767px) {
  .cid-uLuxtk5nGw .head_block {
    padding: 20px;
  }
}
.cid-uLuxtk5nGw .mbr-section-subtitle,
.cid-uLuxtk5nGw .mbr-text {
  margin-bottom: 12px;
}
.cid-uLuxtk5nGw .mbr-text {
  margin-top: 2rem;
}
.cid-uLuxtk5nGw .subscribe_form {
  padding-bottom: 50px;
}
.cid-uLuxtk5nGw .form-group {
  margin-bottom: 0;
  padding-right: 0;
}
.cid-uLuxtk5nGw .form-control {
  border: none !important;
  padding: 14px 18px;
  background-color: #fef2ed !important;
  font-size: 16px;
  color: #010a44;
  border-radius: 4px;
  background-color: transparent !important;
  border: 1px solid #f14105 !important;
}
.cid-uLuxtk5nGw .input-group-btn {
  padding-left: 0;
}
.cid-uLuxtk5nGw .input-group-btn .btn {
  font-weight: 600;
  padding: 11px 18px;
  width: 100%;
}
.cid-uLuxtk5nGw .mbr-form .input-group-btn .btn {
  border-radius: 4px !important;
}
.cid-uLuxtk5nGw .mbr-form .btn {
  margin: 0;
}
.cid-uLuxtk5nGw input::-webkit-input-placeholder {
  color: #010a44;
  opacity: .6;
}
.cid-uLuxtk5nGw input::-moz-placeholder {
  color: #010a44;
  opacity: .6;
}
.cid-uLuxtk5nGw .line {
  background-color: #22a5e5;
  height: 1px;
}
.cid-uLuxtk5nGw .textGDPR {
  font-size: 14px;
  text-align: left;
}
.cid-uLuxtk5nGw .textGDPR input[name='gdpr'] {
  top: 0 !important;
}
.cid-uLuxtk5nGw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtk5nGw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtk5nGw .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uLuxtktHl3 {
  padding-top: 255px;
  background-image: url("../../../assets/images/microsoftteams-image-scaled-1-2000x339.jpg");
}
.cid-uLuxtktHl3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLuxtktHl3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLuxtkMt88 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-uLuxtkMt88 .container {
  max-width: 1750px;
}
.cid-uLuxtkMt88 .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uLuxtkMt88 img {
  width: 150px;
  display: inline-block;
}
.cid-uLuxtkMt88 p {
  line-height: 1.8;
}
.cid-uLuxtkMt88 .mbr-text {
  color: #353535;
}
.cid-uLuxtkMt88 .mbr-section-title {
  color: #000000;
}
.cid-uLuKJrTHiB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uLuKJrTHiB .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uLuKJrTHiB .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uLuKJrTHiB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uLuKJrTHiB .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uLuKJrTHiB .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uLuKJrTHiB .container {
    padding: 0 1rem;
  }
}
.cid-uLuKJrTHiB .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uLuKJrTHiB .nav-link {
  position: relative;
}
.cid-uLuKJrTHiB .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uLuKJrTHiB nav.navbar {
  position: fixed;
}
.cid-uLuKJrTHiB .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uLuKJrTHiB .navbar.opened {
  transition: all 0.3s;
}
.cid-uLuKJrTHiB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLuKJrTHiB .navbar .navbar-logo img {
  width: auto;
}
.cid-uLuKJrTHiB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLuKJrTHiB .navbar.collapsed {
  justify-content: center;
}
.cid-uLuKJrTHiB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLuKJrTHiB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLuKJrTHiB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uLuKJrTHiB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLuKJrTHiB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLuKJrTHiB .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-uLuKJrTHiB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLuKJrTHiB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLuKJrTHiB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLuKJrTHiB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLuKJrTHiB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLuKJrTHiB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLuKJrTHiB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLuKJrTHiB .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-uLuKJrTHiB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLuKJrTHiB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLuKJrTHiB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLuKJrTHiB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLuKJrTHiB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLuKJrTHiB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uLuKJrTHiB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLuKJrTHiB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLuKJrTHiB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLuKJrTHiB .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-uLuKJrTHiB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLuKJrTHiB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLuKJrTHiB .dropdown-item:hover,
.cid-uLuKJrTHiB .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uLuKJrTHiB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLuKJrTHiB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLuKJrTHiB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uLuKJrTHiB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLuKJrTHiB .dropdown-menu,
.cid-uLuKJrTHiB .navbar.opened {
  background: #ffffff !important;
}
.cid-uLuKJrTHiB .nav-item:focus,
.cid-uLuKJrTHiB .nav-link:focus {
  outline: none;
}
.cid-uLuKJrTHiB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLuKJrTHiB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLuKJrTHiB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLuKJrTHiB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLuKJrTHiB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLuKJrTHiB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLuKJrTHiB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLuKJrTHiB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLuKJrTHiB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLuKJrTHiB .dropdown-item.active,
.cid-uLuKJrTHiB .dropdown-item:active {
  background-color: transparent;
}
.cid-uLuKJrTHiB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLuKJrTHiB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLuKJrTHiB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLuKJrTHiB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLuKJrTHiB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLuKJrTHiB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLuKJrTHiB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLuKJrTHiB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLuKJrTHiB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLuKJrTHiB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLuKJrTHiB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLuKJrTHiB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLuKJrTHiB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLuKJrTHiB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLuKJrTHiB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLuKJrTHiB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLuKJrTHiB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLuKJrTHiB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLuKJrTHiB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uLuKJrTHiB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLuKJrTHiB .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-uLuKJrTHiB .navbar {
    height: 70px;
  }
  .cid-uLuKJrTHiB .navbar.opened {
    height: auto;
  }
  .cid-uLuKJrTHiB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMx3CFWf28 {
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.cid-uMx3CFWf28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMx3CFWf28 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/theemiratesgrouprsquostotalworkforcegrewby10to112406employees-scaled.jpg-2000x1500.jpg");
}
.cid-uMx3CFWf28 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uMx3CFWf28 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uMx3CFWf28 .frame-wrapper {
  outline: 10rem solid #ffffff;
  border-radius: 20px;
}
.cid-uMx3CFWf28 .content-wrapper {
  min-height: 720px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uMx3CFWf28 .content-wrapper {
    padding: 0 20px;
  }
}
.cid-uMx3CFWf28 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uMx3CFWf28 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  margin: 200px 0 200px;
}
@media (max-width: 992px) {
  .cid-uMx3CFWf28 .content-wrapper .content-wrap {
    margin: 150px 0;
  }
}
@media (max-width: 768px) {
  .cid-uMx3CFWf28 .content-wrapper .content-wrap {
    margin: 46px 0;
  }
}
.cid-uMx3CFWf28 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uMx3CFWf28 .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  justify-content: center;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uMx3CFWf28 .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uMx3CFWf28 .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cid-uMx3CFWf28 .content-wrapper .mbr-section-btn {
    margin-bottom: 46px;
  }
}
.cid-uMx3CFWf28 .mbr-section-title {
  color: #ffffff;
}
.cid-uMx3CFWf28 .mbr-text,
.cid-uMx3CFWf28 .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uMx3CFWf28 .mbr-section-title,
.cid-uMx3CFWf28 .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMx3CFWf28 .content-wrapper {
    min-height: 360px;
  }
}
.cid-uLuKQdBJ1C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLuKQdBJ1C .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-uLuKQdBJ1C .card-wrapper {
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uLuKQdBJ1C .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uLuKQdBJ1C .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid #ffffff;
  border-radius: 30px;
}
.cid-uLuKQdBJ1C .card-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-uLuKQdBJ1C .mbr-section-title,
.cid-uLuKQdBJ1C .mbr-section-subtitle,
.cid-uLuKQdBJ1C .mbr-text,
.cid-uLuKQdBJ1C .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uLuKQdBJ1C .mbr-section-title {
  color: #263d5a;
  text-align: left;
}
.cid-uLuKQdBJ1C .mbr-text,
.cid-uLuKQdBJ1C .mbr-section-btn {
  color: #18212d;
  text-align: left;
}
.cid-uLuKQdBJ1C .mbr-section-subtitle {
  text-align: left;
  color: #18212d;
}
.cid-uLuKQGO8ly {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLuKQGO8ly .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-uLuKQGO8ly p {
  margin: 0;
}
.cid-uLuKQGO8ly .row-border {
  border-bottom: 1px solid #e4e4e4;
  align-items: center;
  padding: 1rem 0;
}
.cid-uLuKQGO8ly .card {
  padding: 0;
}
.cid-uLuKQGO8ly .card-wrapper {
  align-items: center;
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 4rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uLuKQGO8ly .card-wrapper {
    padding: 2rem 2rem;
  }
}
.cid-uLuKQGO8ly .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid #ffffff;
  border-radius: 30px;
}
.cid-uLuKQGO8ly .card-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-uLuKQGO8ly .row {
  position: relative;
  z-index: 1;
}
.cid-uLuKQGO8ly .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uLuKQGO8ly .mbr-text {
  color: #263d5a;
  text-align: left;
}
.cid-uLuKQGO8ly .mbr-section-subtitle {
  color: #263d5a;
  text-align: left;
}
.cid-uLuKW5tXKL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLuKW5tXKL h4 {
  margin: 0;
}
.cid-uLuKW5tXKL .row {
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uLuKW5tXKL .row {
    padding: 2rem 1rem;
  }
}
.cid-uLuKW5tXKL .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid #ffffff;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uLuKW5tXKL .row:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-uLuKW5tXKL .card-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uLuKW5tXKL .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-uLuKW5tXKL .title,
.cid-uLuKW5tXKL .card {
  position: relative;
  z-index: 1;
}
.cid-uLuKW5tXKL .mbr-iconfont {
  font-size: 2rem;
  color: #263d5a;
  padding-right: 1.5rem;
}
.cid-uLuKW5tXKL .title {
  text-align: center;
  color: #000000;
}
.cid-uLuKW5tXKL .card-title {
  color: #263d5a;
  text-align: left;
}
.cid-uLuKW5tXKL .title DIV {
  text-align: center;
}
.cid-uLuKW5tXKL .card-text {
  text-align: left;
}
.cid-uLuKJudpW8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-uLuKJudpW8 .container {
  max-width: 1750px;
}
.cid-uLuKJudpW8 .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uLuKJudpW8 img {
  width: 150px;
  display: inline-block;
}
.cid-uLuKJudpW8 p {
  line-height: 1.8;
}
.cid-uLuKJudpW8 .mbr-text {
  color: #353535;
}
.cid-uLuKJudpW8 .mbr-section-title {
  color: #000000;
}
.cid-uMx28Whctw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMx28Whctw .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uMx28Whctw .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uMx28Whctw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uMx28Whctw .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uMx28Whctw .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uMx28Whctw .container {
    padding: 0 1rem;
  }
}
.cid-uMx28Whctw .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uMx28Whctw .nav-link {
  position: relative;
}
.cid-uMx28Whctw .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uMx28Whctw nav.navbar {
  position: fixed;
}
.cid-uMx28Whctw .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uMx28Whctw .navbar.opened {
  transition: all 0.3s;
}
.cid-uMx28Whctw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMx28Whctw .navbar .navbar-logo img {
  width: auto;
}
.cid-uMx28Whctw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMx28Whctw .navbar.collapsed {
  justify-content: center;
}
.cid-uMx28Whctw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMx28Whctw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMx28Whctw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uMx28Whctw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMx28Whctw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMx28Whctw .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-uMx28Whctw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMx28Whctw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMx28Whctw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMx28Whctw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMx28Whctw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMx28Whctw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMx28Whctw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMx28Whctw .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-uMx28Whctw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMx28Whctw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMx28Whctw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMx28Whctw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMx28Whctw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMx28Whctw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMx28Whctw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMx28Whctw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMx28Whctw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMx28Whctw .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-uMx28Whctw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMx28Whctw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMx28Whctw .dropdown-item:hover,
.cid-uMx28Whctw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uMx28Whctw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMx28Whctw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMx28Whctw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uMx28Whctw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMx28Whctw .dropdown-menu,
.cid-uMx28Whctw .navbar.opened {
  background: #ffffff !important;
}
.cid-uMx28Whctw .nav-item:focus,
.cid-uMx28Whctw .nav-link:focus {
  outline: none;
}
.cid-uMx28Whctw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMx28Whctw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMx28Whctw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMx28Whctw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMx28Whctw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMx28Whctw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMx28Whctw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMx28Whctw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMx28Whctw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMx28Whctw .dropdown-item.active,
.cid-uMx28Whctw .dropdown-item:active {
  background-color: transparent;
}
.cid-uMx28Whctw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMx28Whctw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMx28Whctw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMx28Whctw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMx28Whctw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMx28Whctw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMx28Whctw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMx28Whctw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMx28Whctw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMx28Whctw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMx28Whctw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMx28Whctw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMx28Whctw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMx28Whctw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMx28Whctw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMx28Whctw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMx28Whctw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMx28Whctw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMx28Whctw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMx28Whctw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMx28Whctw .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-uMx28Whctw .navbar {
    height: 70px;
  }
  .cid-uMx28Whctw .navbar.opened {
    height: auto;
  }
  .cid-uMx28Whctw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMx28XlvOQ {
  background-color: #4bf700;
}
.cid-uMx28XlvOQ .row {
  position: relative;
}
.cid-uMx28XlvOQ .container {
  max-width: 1500px;
}
.cid-uMx28XlvOQ h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-uMx28XlvOQ .content-wrapper {
  max-width: 800px;
}
.cid-uMx28XlvOQ H1 {
  color: #000000;
}
.cid-uMx28XlvOQ .mbr-text,
.cid-uMx28XlvOQ .mbr-section-btn {
  color: #000000;
}
.cid-uMx28XlvOQ H3 {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-uMx28XlvOQ .container {
    padding: 0 4rem;
  }
}
.cid-uMx28XlvOQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMx28XlvOQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1wExpDFqn {
  background-color: #f9a600;
}
.cid-v1wExpDFqn .row {
  position: relative;
}
.cid-v1wExpDFqn .container {
  max-width: 1500px;
}
.cid-v1wExpDFqn h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-v1wExpDFqn .content-wrapper {
  max-width: 800px;
}
.cid-v1wExpDFqn H1 {
  color: #000000;
}
.cid-v1wExpDFqn .mbr-text,
.cid-v1wExpDFqn .mbr-section-btn {
  color: #000000;
}
.cid-v1wExpDFqn H3 {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-v1wExpDFqn .container {
    padding: 0 4rem;
  }
}
.cid-v1wExpDFqn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1wExpDFqn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1wEz92yil {
  background-color: #ff6666;
}
.cid-v1wEz92yil .row {
  position: relative;
}
.cid-v1wEz92yil .container {
  max-width: 1500px;
}
.cid-v1wEz92yil h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-v1wEz92yil .content-wrapper {
  max-width: 800px;
}
.cid-v1wEz92yil H1 {
  color: #000000;
}
.cid-v1wEz92yil .mbr-text,
.cid-v1wEz92yil .mbr-section-btn {
  color: #000000;
}
.cid-v1wEz92yil H3 {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-v1wEz92yil .container {
    padding: 0 4rem;
  }
}
.cid-v1wEz92yil .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1wEz92yil .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMx290NFlk {
  padding-top: 255px;
  background-image: url("../../../assets/images/microsoftteams-image-3-2216x376.png");
}
.cid-uMx290NFlk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMx290NFlk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMx29148MQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-uMx29148MQ .container {
  max-width: 1750px;
}
.cid-uMx29148MQ .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uMx29148MQ img {
  width: 150px;
  display: inline-block;
}
.cid-uMx29148MQ p {
  line-height: 1.8;
}
.cid-uMx29148MQ .mbr-text {
  color: #353535;
}
.cid-uMx29148MQ .mbr-section-title {
  color: #000000;
}
.cid-sKa9YHLp8O {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sKa9YHLp8O .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-sKa9YHLp8O .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-sKa9YHLp8O .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sKa9YHLp8O .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-sKa9YHLp8O .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sKa9YHLp8O .container {
    padding: 0 1rem;
  }
}
.cid-sKa9YHLp8O .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-sKa9YHLp8O .nav-link {
  position: relative;
}
.cid-sKa9YHLp8O .nav-link:hover {
  color: #47b5ed !important;
}
.cid-sKa9YHLp8O nav.navbar {
  position: fixed;
}
.cid-sKa9YHLp8O .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sKa9YHLp8O .navbar.opened {
  transition: all 0.3s;
}
.cid-sKa9YHLp8O .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sKa9YHLp8O .navbar .navbar-logo img {
  width: auto;
}
.cid-sKa9YHLp8O .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sKa9YHLp8O .navbar.collapsed {
  justify-content: center;
}
.cid-sKa9YHLp8O .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sKa9YHLp8O .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sKa9YHLp8O .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sKa9YHLp8O .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sKa9YHLp8O .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sKa9YHLp8O .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-sKa9YHLp8O .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sKa9YHLp8O .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sKa9YHLp8O .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sKa9YHLp8O .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sKa9YHLp8O .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sKa9YHLp8O .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sKa9YHLp8O .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sKa9YHLp8O .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-sKa9YHLp8O .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sKa9YHLp8O .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sKa9YHLp8O .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sKa9YHLp8O .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sKa9YHLp8O .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sKa9YHLp8O .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sKa9YHLp8O .navbar.navbar-short {
  min-height: 60px;
}
.cid-sKa9YHLp8O .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sKa9YHLp8O .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sKa9YHLp8O .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-sKa9YHLp8O .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sKa9YHLp8O .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sKa9YHLp8O .dropdown-item:hover,
.cid-sKa9YHLp8O .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sKa9YHLp8O .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sKa9YHLp8O .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sKa9YHLp8O .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-sKa9YHLp8O .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sKa9YHLp8O .dropdown-menu,
.cid-sKa9YHLp8O .navbar.opened {
  background: #ffffff !important;
}
.cid-sKa9YHLp8O .nav-item:focus,
.cid-sKa9YHLp8O .nav-link:focus {
  outline: none;
}
.cid-sKa9YHLp8O .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sKa9YHLp8O .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sKa9YHLp8O .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sKa9YHLp8O .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sKa9YHLp8O .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sKa9YHLp8O .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sKa9YHLp8O .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sKa9YHLp8O .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sKa9YHLp8O .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sKa9YHLp8O .dropdown-item.active,
.cid-sKa9YHLp8O .dropdown-item:active {
  background-color: transparent;
}
.cid-sKa9YHLp8O .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sKa9YHLp8O .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sKa9YHLp8O .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sKa9YHLp8O .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sKa9YHLp8O .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sKa9YHLp8O .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sKa9YHLp8O ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sKa9YHLp8O .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sKa9YHLp8O button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sKa9YHLp8O button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sKa9YHLp8O button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sKa9YHLp8O button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sKa9YHLp8O button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sKa9YHLp8O button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sKa9YHLp8O nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sKa9YHLp8O nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sKa9YHLp8O nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sKa9YHLp8O nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sKa9YHLp8O .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sKa9YHLp8O a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sKa9YHLp8O .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-sKa9YHLp8O .navbar {
    height: 70px;
  }
  .cid-sKa9YHLp8O .navbar.opened {
    height: auto;
  }
  .cid-sKa9YHLp8O .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2F07JBCHN {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-v2F07JBCHN .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2F07JBCHN .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2F07JBCHN .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2F07JBCHN .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2F07JBCHN .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2F07JBCHN .mbr-text {
  color: #606060;
}
.cid-v2F07JBCHN .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2F07JBCHN .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2F07JBCHN .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2F07JBCHN .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2F07JBCHN .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2F07JBCHN .mbr-section-subtitle,
.cid-v2F07JBCHN .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2F07JBCHN .badge,
.cid-v2F07JBCHN .badge_wrap,
.cid-v2F07JBCHN .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2F07JBCHN .main-title,
.cid-v2F07JBCHN .mbr-section-btn {
  color: #404040;
}
.cid-sKa9YKTl8g {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKa9YKTl8g .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-sKa9YKTl8g .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sKa9YKTl8g .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sKa9YKTl8g .main-title.display-2 {
  line-height: 1.375;
}
.cid-sKa9YKTl8g .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sKa9YKTl8g .mbr-text {
  color: #606060;
}
.cid-sKa9YKTl8g .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sKa9YKTl8g .mbr-section-btn {
  margin-top: 24px;
}
.cid-sKa9YKTl8g .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-sKa9YKTl8g .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sKa9YKTl8g .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uMxirkL9Md {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uMxirkL9Md .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uMxirkL9Md .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uMxirkL9Md .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uMxirkL9Md .main-title.display-2 {
  line-height: 1.375;
}
.cid-uMxirkL9Md .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uMxirkL9Md .mbr-text {
  color: #606060;
}
.cid-uMxirkL9Md .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uMxirkL9Md .mbr-section-btn {
  margin-top: 24px;
}
.cid-uMxirkL9Md .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-uMxirkL9Md .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uMxirkL9Md .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uMxiID34P1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uMxiID34P1 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uMxiID34P1 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uMxiID34P1 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uMxiID34P1 .main-title.display-2 {
  line-height: 1.375;
}
.cid-uMxiID34P1 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uMxiID34P1 .mbr-text {
  color: #606060;
}
.cid-uMxiID34P1 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uMxiID34P1 .mbr-section-btn {
  margin-top: 24px;
}
.cid-uMxiID34P1 .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-uMxiID34P1 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uMxiID34P1 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uMxjE9rD2M {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uMxjE9rD2M .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uMxjE9rD2M .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uMxjE9rD2M .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uMxjE9rD2M .main-title.display-2 {
  line-height: 1.375;
}
.cid-uMxjE9rD2M .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uMxjE9rD2M .mbr-text {
  color: #606060;
}
.cid-uMxjE9rD2M .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uMxjE9rD2M .mbr-section-btn {
  margin-top: 24px;
}
.cid-uMxjE9rD2M .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-uMxjE9rD2M .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uMxjE9rD2M .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sKaclQaykv {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sKaclQaykv .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  background-color: #000000;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
}
.cid-sKaclQaykv .card {
  margin-bottom: 1.5rem;
}
.cid-sKaclQaykv .card-wrapper {
  padding: 3rem 2.5rem;
  background-color: #fafafa;
  border-width: 0 0 4px 0;
  border-style: solid;
}
.cid-sKaclQaykv .card-wrapper-1 {
  border-color: #22a5e5;
}
.cid-sKaclQaykv .card-wrapper-2 {
  border-color: #fc3f7b;
}
.cid-sKaclQaykv .card-wrapper-3 {
  border-color: #bcd9df;
}
.cid-sKaclQaykv .card-wrapper-4 {
  border-color: #67beb0;
}
.cid-sKaclQaykv .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
}
.cid-sKaclQaykv .card-text {
  color: #000000;
  text-align: left;
}
.cid-sKaclQaykv .card-title,
.cid-sKaclQaykv .icon-wrap {
  color: #000000;
  text-align: left;
}
.cid-sKaclQaykv .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sKaclQaykv .card-subtitle {
  text-align: left;
}
.cid-sUXQdSAA9P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-sUXQdSAA9P .container {
  max-width: 1750px;
}
.cid-sUXQdSAA9P .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-sUXQdSAA9P img {
  width: 150px;
  display: inline-block;
}
.cid-sUXQdSAA9P p {
  line-height: 1.8;
}
.cid-sUXQdSAA9P .mbr-text {
  color: #353535;
}
.cid-sUXQdSAA9P .mbr-section-title {
  color: #000000;
}
.cid-uMxm0FyPeZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMxm0FyPeZ .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uMxm0FyPeZ .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uMxm0FyPeZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uMxm0FyPeZ .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uMxm0FyPeZ .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uMxm0FyPeZ .container {
    padding: 0 1rem;
  }
}
.cid-uMxm0FyPeZ .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uMxm0FyPeZ .nav-link {
  position: relative;
}
.cid-uMxm0FyPeZ .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uMxm0FyPeZ nav.navbar {
  position: fixed;
}
.cid-uMxm0FyPeZ .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uMxm0FyPeZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uMxm0FyPeZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMxm0FyPeZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uMxm0FyPeZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMxm0FyPeZ .navbar.collapsed {
  justify-content: center;
}
.cid-uMxm0FyPeZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMxm0FyPeZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMxm0FyPeZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uMxm0FyPeZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMxm0FyPeZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMxm0FyPeZ .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-uMxm0FyPeZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMxm0FyPeZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMxm0FyPeZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMxm0FyPeZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMxm0FyPeZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMxm0FyPeZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMxm0FyPeZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMxm0FyPeZ .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-uMxm0FyPeZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMxm0FyPeZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMxm0FyPeZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMxm0FyPeZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMxm0FyPeZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMxm0FyPeZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMxm0FyPeZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMxm0FyPeZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMxm0FyPeZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMxm0FyPeZ .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-uMxm0FyPeZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMxm0FyPeZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMxm0FyPeZ .dropdown-item:hover,
.cid-uMxm0FyPeZ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uMxm0FyPeZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMxm0FyPeZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMxm0FyPeZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uMxm0FyPeZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMxm0FyPeZ .dropdown-menu,
.cid-uMxm0FyPeZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uMxm0FyPeZ .nav-item:focus,
.cid-uMxm0FyPeZ .nav-link:focus {
  outline: none;
}
.cid-uMxm0FyPeZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMxm0FyPeZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMxm0FyPeZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMxm0FyPeZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMxm0FyPeZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMxm0FyPeZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMxm0FyPeZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMxm0FyPeZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMxm0FyPeZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMxm0FyPeZ .dropdown-item.active,
.cid-uMxm0FyPeZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uMxm0FyPeZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMxm0FyPeZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMxm0FyPeZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMxm0FyPeZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMxm0FyPeZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMxm0FyPeZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMxm0FyPeZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMxm0FyPeZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMxm0FyPeZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMxm0FyPeZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMxm0FyPeZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMxm0FyPeZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMxm0FyPeZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMxm0FyPeZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMxm0FyPeZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMxm0FyPeZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMxm0FyPeZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMxm0FyPeZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMxm0FyPeZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMxm0FyPeZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMxm0FyPeZ .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-uMxm0FyPeZ .navbar {
    height: 70px;
  }
  .cid-uMxm0FyPeZ .navbar.opened {
    height: auto;
  }
  .cid-uMxm0FyPeZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2EZzq6cM2 {
  padding-top: 135px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-v2EZzq6cM2 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2EZzq6cM2 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2EZzq6cM2 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2EZzq6cM2 .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2EZzq6cM2 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2EZzq6cM2 .mbr-text {
  color: #606060;
}
.cid-v2EZzq6cM2 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2EZzq6cM2 .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2EZzq6cM2 .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2EZzq6cM2 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2EZzq6cM2 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2EZzq6cM2 .mbr-section-subtitle,
.cid-v2EZzq6cM2 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2EZzq6cM2 .badge,
.cid-v2EZzq6cM2 .badge_wrap,
.cid-v2EZzq6cM2 .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2EZzq6cM2 .main-title,
.cid-v2EZzq6cM2 .mbr-section-btn {
  color: #404040;
}
.cid-uMxm0HO1JW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uMxm0HO1JW img,
.cid-uMxm0HO1JW .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uMxm0HO1JW .item:focus,
.cid-uMxm0HO1JW span:focus {
  outline: none;
}
.cid-uMxm0HO1JW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMxm0HO1JW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMxm0HO1JW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMxm0HO1JW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMxm0HO1JW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMxm0HO1JW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMxm0HO1JW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMxm0HO1JW .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uMxm0HO1JW .mbr-text,
.cid-uMxm0HO1JW .mbr-section-btn {
  text-align: left;
  color: #606060;
}
.cid-uMxm0HO1JW .item-title {
  text-align: center;
}
.cid-uMxm0HO1JW .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uMxm0HO1JW .mbr-section-subtitle {
  color: #606060;
  text-align: left;
}
.cid-uMxn3wyoPd {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-uMxn3wyoPd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMxn3wyoPd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMxn3wyoPd .mbr-section-title,
.cid-uMxn3wyoPd .mbr-section-subtitle {
  text-align: center;
}
.cid-uMxn3wyoPd .cost {
  word-break: normal;
}
.cid-uMxn3wyoPd .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #ffffff;
}
.cid-uMxn3wyoPd .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-uMxn3wyoPd .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMxn3wyoPd .card-wrapper {
    padding: 1rem;
  }
}
.cid-uMxn3wyoPd P {
  color: #4479d9;
}
.cid-uMxn3wyoPd .card-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-uMxm0Ilrkv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-uMxm0Ilrkv .container {
  max-width: 1750px;
}
.cid-uMxm0Ilrkv .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uMxm0Ilrkv img {
  width: 150px;
  display: inline-block;
}
.cid-uMxm0Ilrkv p {
  line-height: 1.8;
}
.cid-uMxm0Ilrkv .mbr-text {
  color: #353535;
}
.cid-uMxm0Ilrkv .mbr-section-title {
  color: #000000;
}
.cid-uN0knXq1wq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uN0knXq1wq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uN0knXq1wq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uN0knXq1wq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uN0knXq1wq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uN0knXq1wq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uN0knXq1wq .container {
    padding: 0 1rem;
  }
}
.cid-uN0knXq1wq .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uN0knXq1wq .nav-link {
  position: relative;
}
.cid-uN0knXq1wq .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uN0knXq1wq nav.navbar {
  position: fixed;
}
.cid-uN0knXq1wq .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uN0knXq1wq .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0knXq1wq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0knXq1wq .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0knXq1wq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0knXq1wq .navbar.collapsed {
  justify-content: center;
}
.cid-uN0knXq1wq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0knXq1wq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0knXq1wq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0knXq1wq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0knXq1wq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0knXq1wq .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-uN0knXq1wq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0knXq1wq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0knXq1wq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0knXq1wq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0knXq1wq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0knXq1wq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0knXq1wq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0knXq1wq .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-uN0knXq1wq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0knXq1wq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0knXq1wq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0knXq1wq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0knXq1wq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0knXq1wq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0knXq1wq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0knXq1wq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0knXq1wq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0knXq1wq .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-uN0knXq1wq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0knXq1wq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0knXq1wq .dropdown-item:hover,
.cid-uN0knXq1wq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uN0knXq1wq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0knXq1wq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0knXq1wq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uN0knXq1wq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0knXq1wq .dropdown-menu,
.cid-uN0knXq1wq .navbar.opened {
  background: #ffffff !important;
}
.cid-uN0knXq1wq .nav-item:focus,
.cid-uN0knXq1wq .nav-link:focus {
  outline: none;
}
.cid-uN0knXq1wq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0knXq1wq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0knXq1wq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0knXq1wq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0knXq1wq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0knXq1wq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0knXq1wq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0knXq1wq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0knXq1wq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0knXq1wq .dropdown-item.active,
.cid-uN0knXq1wq .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0knXq1wq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0knXq1wq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0knXq1wq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0knXq1wq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uN0knXq1wq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0knXq1wq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0knXq1wq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0knXq1wq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0knXq1wq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0knXq1wq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0knXq1wq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0knXq1wq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0knXq1wq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0knXq1wq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0knXq1wq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0knXq1wq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0knXq1wq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0knXq1wq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0knXq1wq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0knXq1wq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0knXq1wq .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-uN0knXq1wq .navbar {
    height: 70px;
  }
  .cid-uN0knXq1wq .navbar.opened {
    height: auto;
  }
  .cid-uN0knXq1wq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2F2KhvsHv {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-v2F2KhvsHv .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2F2KhvsHv .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2F2KhvsHv .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2F2KhvsHv .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2F2KhvsHv .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2F2KhvsHv .mbr-text {
  color: #606060;
}
.cid-v2F2KhvsHv .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2F2KhvsHv .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2F2KhvsHv .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2F2KhvsHv .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2F2KhvsHv .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2F2KhvsHv .mbr-section-subtitle,
.cid-v2F2KhvsHv .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2F2KhvsHv .badge,
.cid-v2F2KhvsHv .badge_wrap,
.cid-v2F2KhvsHv .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2F2KhvsHv .main-title,
.cid-v2F2KhvsHv .mbr-section-btn {
  color: #404040;
}
.cid-uN0lbiKZvr {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uN0lbiKZvr .row {
  flex-direction: row-reverse;
}
.cid-uN0lbiKZvr .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uN0lbiKZvr .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uN0lbiKZvr .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uN0lbiKZvr .mbr-card-title {
  color: #000000;
}
.cid-uN0lbiKZvr .mbr-card-subtitle {
  color: #bbbbbb;
  text-align: left;
}
.cid-uN0lbiKZvr .mbr-text,
.cid-uN0lbiKZvr .mbr-section-btn {
  text-align: left;
}
.cid-uN0lbiKZvr .row {
  align-items: center;
}
.cid-uN0lQWgIxN {
  padding-top: 255px;
  background-image: url("../../../assets/images/microsoftteams-image-1-scaled-1-2000x339.jpg");
}
.cid-uN0lQWgIxN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0lQWgIxN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0knZ54XV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-uN0knZ54XV .container {
  max-width: 1750px;
}
.cid-uN0knZ54XV .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uN0knZ54XV img {
  width: 150px;
  display: inline-block;
}
.cid-uN0knZ54XV p {
  line-height: 1.8;
}
.cid-uN0knZ54XV .mbr-text {
  color: #353535;
}
.cid-uN0knZ54XV .mbr-section-title {
  color: #000000;
}
.cid-uMls22BhX0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMls22BhX0 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uMls22BhX0 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uMls22BhX0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uMls22BhX0 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uMls22BhX0 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uMls22BhX0 .container {
    padding: 0 1rem;
  }
}
.cid-uMls22BhX0 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uMls22BhX0 .nav-link {
  position: relative;
}
.cid-uMls22BhX0 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uMls22BhX0 nav.navbar {
  position: fixed;
}
.cid-uMls22BhX0 .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uMls22BhX0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMls22BhX0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMls22BhX0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uMls22BhX0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMls22BhX0 .navbar.collapsed {
  justify-content: center;
}
.cid-uMls22BhX0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMls22BhX0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMls22BhX0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uMls22BhX0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMls22BhX0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMls22BhX0 .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-uMls22BhX0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMls22BhX0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMls22BhX0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMls22BhX0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMls22BhX0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMls22BhX0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMls22BhX0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMls22BhX0 .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-uMls22BhX0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMls22BhX0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMls22BhX0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMls22BhX0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMls22BhX0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMls22BhX0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMls22BhX0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMls22BhX0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMls22BhX0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMls22BhX0 .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-uMls22BhX0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMls22BhX0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMls22BhX0 .dropdown-item:hover,
.cid-uMls22BhX0 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uMls22BhX0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMls22BhX0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMls22BhX0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uMls22BhX0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMls22BhX0 .dropdown-menu,
.cid-uMls22BhX0 .navbar.opened {
  background: #ffffff !important;
}
.cid-uMls22BhX0 .nav-item:focus,
.cid-uMls22BhX0 .nav-link:focus {
  outline: none;
}
.cid-uMls22BhX0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMls22BhX0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMls22BhX0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMls22BhX0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMls22BhX0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMls22BhX0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMls22BhX0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMls22BhX0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMls22BhX0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMls22BhX0 .dropdown-item.active,
.cid-uMls22BhX0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMls22BhX0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMls22BhX0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMls22BhX0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMls22BhX0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMls22BhX0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMls22BhX0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMls22BhX0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMls22BhX0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMls22BhX0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMls22BhX0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMls22BhX0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMls22BhX0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMls22BhX0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMls22BhX0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMls22BhX0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMls22BhX0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMls22BhX0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMls22BhX0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMls22BhX0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMls22BhX0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMls22BhX0 .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-uMls22BhX0 .navbar {
    height: 70px;
  }
  .cid-uMls22BhX0 .navbar.opened {
    height: auto;
  }
  .cid-uMls22BhX0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2EJXQRoBq {
  padding-top: 135px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-v2EJXQRoBq .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2EJXQRoBq .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2EJXQRoBq .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2EJXQRoBq .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2EJXQRoBq .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2EJXQRoBq .mbr-text {
  color: #606060;
}
.cid-v2EJXQRoBq .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2EJXQRoBq .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2EJXQRoBq .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2EJXQRoBq .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2EJXQRoBq .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2EJXQRoBq .mbr-section-subtitle,
.cid-v2EJXQRoBq .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2EJXQRoBq .badge,
.cid-v2EJXQRoBq .badge_wrap,
.cid-v2EJXQRoBq .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2EJXQRoBq .main-title,
.cid-v2EJXQRoBq .mbr-section-btn {
  color: #404040;
}
.cid-v2EK0hPcxD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2EK0hPcxD img,
.cid-v2EK0hPcxD .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v2EK0hPcxD .item:focus,
.cid-v2EK0hPcxD span:focus {
  outline: none;
}
.cid-v2EK0hPcxD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2EK0hPcxD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2EK0hPcxD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2EK0hPcxD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2EK0hPcxD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2EK0hPcxD .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-v2EK0hPcxD .mbr-text,
.cid-v2EK0hPcxD .mbr-section-btn {
  text-align: left;
}
.cid-v2EK0hPcxD .item-title {
  text-align: left;
}
.cid-v2EK0hPcxD .item-subtitle {
  text-align: center;
}
.cid-v2EK0hPcxD .mbr-section-subtitle {
  text-align: left;
  color: #22a5e5;
}
.cid-v2ELPRvd5K {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2ELPRvd5K img,
.cid-v2ELPRvd5K .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v2ELPRvd5K .item:focus,
.cid-v2ELPRvd5K span:focus {
  outline: none;
}
.cid-v2ELPRvd5K .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2ELPRvd5K .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2ELPRvd5K .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2ELPRvd5K .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2ELPRvd5K .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2ELPRvd5K .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-v2ELPRvd5K .mbr-text,
.cid-v2ELPRvd5K .mbr-section-btn {
  text-align: left;
}
.cid-v2ELPRvd5K .item-title {
  text-align: left;
}
.cid-v2ELPRvd5K .item-subtitle {
  text-align: center;
}
.cid-v2ELPRvd5K .mbr-section-subtitle {
  text-align: left;
  color: #22a5e5;
}
.cid-v2ELXcAbO3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2ELXcAbO3 img,
.cid-v2ELXcAbO3 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v2ELXcAbO3 .item:focus,
.cid-v2ELXcAbO3 span:focus {
  outline: none;
}
.cid-v2ELXcAbO3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2ELXcAbO3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2ELXcAbO3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2ELXcAbO3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2ELXcAbO3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2ELXcAbO3 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-v2ELXcAbO3 .mbr-text,
.cid-v2ELXcAbO3 .mbr-section-btn {
  text-align: left;
}
.cid-v2ELXcAbO3 .item-title {
  text-align: left;
}
.cid-v2ELXcAbO3 .item-subtitle {
  text-align: center;
}
.cid-v2ELXcAbO3 .mbr-section-subtitle {
  text-align: left;
  color: #22a5e5;
}
.cid-v2EJZdPoWe {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2EJZdPoWe blockquote {
  border-color: #e43f3f;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-v2EJZdPoWe .mbr-section-title {
  color: #353535;
}
.cid-v2EJZdPoWe .mbr-text {
  color: #353535;
}
.cid-uMls242ECl {
  padding-top: 255px;
  background-image: url("../../../assets/images/banner-dnata3-1300x250.jpg");
}
.cid-uMls242ECl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMls242ECl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMls24dRFB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-uMls24dRFB .container {
  max-width: 1750px;
}
.cid-uMls24dRFB .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uMls24dRFB img {
  width: 150px;
  display: inline-block;
}
.cid-uMls24dRFB p {
  line-height: 1.8;
}
.cid-uMls24dRFB .mbr-text {
  color: #353535;
}
.cid-uMls24dRFB .mbr-section-title {
  color: #000000;
}
.cid-v2EM6FSQx2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2EM6FSQx2 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v2EM6FSQx2 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v2EM6FSQx2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v2EM6FSQx2 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v2EM6FSQx2 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v2EM6FSQx2 .container {
    padding: 0 1rem;
  }
}
.cid-v2EM6FSQx2 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v2EM6FSQx2 .nav-link {
  position: relative;
}
.cid-v2EM6FSQx2 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v2EM6FSQx2 nav.navbar {
  position: fixed;
}
.cid-v2EM6FSQx2 .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v2EM6FSQx2 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2EM6FSQx2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2EM6FSQx2 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2EM6FSQx2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2EM6FSQx2 .navbar.collapsed {
  justify-content: center;
}
.cid-v2EM6FSQx2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2EM6FSQx2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2EM6FSQx2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v2EM6FSQx2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2EM6FSQx2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2EM6FSQx2 .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-v2EM6FSQx2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2EM6FSQx2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2EM6FSQx2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2EM6FSQx2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2EM6FSQx2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2EM6FSQx2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2EM6FSQx2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2EM6FSQx2 .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-v2EM6FSQx2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2EM6FSQx2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2EM6FSQx2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2EM6FSQx2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2EM6FSQx2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2EM6FSQx2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2EM6FSQx2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2EM6FSQx2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2EM6FSQx2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2EM6FSQx2 .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-v2EM6FSQx2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2EM6FSQx2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2EM6FSQx2 .dropdown-item:hover,
.cid-v2EM6FSQx2 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v2EM6FSQx2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2EM6FSQx2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2EM6FSQx2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v2EM6FSQx2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2EM6FSQx2 .dropdown-menu,
.cid-v2EM6FSQx2 .navbar.opened {
  background: #ffffff !important;
}
.cid-v2EM6FSQx2 .nav-item:focus,
.cid-v2EM6FSQx2 .nav-link:focus {
  outline: none;
}
.cid-v2EM6FSQx2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2EM6FSQx2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2EM6FSQx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2EM6FSQx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2EM6FSQx2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2EM6FSQx2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2EM6FSQx2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2EM6FSQx2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2EM6FSQx2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2EM6FSQx2 .dropdown-item.active,
.cid-v2EM6FSQx2 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2EM6FSQx2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2EM6FSQx2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2EM6FSQx2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2EM6FSQx2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v2EM6FSQx2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2EM6FSQx2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2EM6FSQx2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2EM6FSQx2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2EM6FSQx2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2EM6FSQx2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2EM6FSQx2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2EM6FSQx2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2EM6FSQx2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2EM6FSQx2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2EM6FSQx2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2EM6FSQx2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2EM6FSQx2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2EM6FSQx2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2EM6FSQx2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2EM6FSQx2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2EM6FSQx2 .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-v2EM6FSQx2 .navbar {
    height: 70px;
  }
  .cid-v2EM6FSQx2 .navbar.opened {
    height: auto;
  }
  .cid-v2EM6FSQx2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2EYt6qSjf {
  background: #ffffff;
  padding-top: 105px;
  padding-bottom: 60px;
}
.cid-v2EYt6qSjf .image-block img {
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .cid-v2EYt6qSjf {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  .cid-v2EYt6qSjf .container {
    padding: 0 1rem;
  }
  .cid-v2EYt6qSjf .image-block {
    width: 100% !important;
  }
}
.cid-v2EYt6qSjf .container-fluid {
  padding: 0;
}
.cid-v2EM6GLzjf {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v2EM6GLzjf .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2EM6GLzjf .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2EM6GLzjf .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2EM6GLzjf .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2EM6GLzjf .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2EM6GLzjf .mbr-text {
  color: #606060;
}
.cid-v2EM6GLzjf .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2EM6GLzjf .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2EM6GLzjf .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2EM6GLzjf .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2EM6GLzjf .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2EM6GLzjf .mbr-section-subtitle,
.cid-v2EM6GLzjf .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2EM6GLzjf .badge,
.cid-v2EM6GLzjf .badge_wrap,
.cid-v2EM6GLzjf .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2EM6GLzjf .main-title,
.cid-v2EM6GLzjf .mbr-section-btn {
  color: #404040;
}
.cid-v2EP3ZWzYV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2EP3ZWzYV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2EP3ZWzYV .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-v2EP3ZWzYV .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v2EP3ZWzYV .container {
    padding: 0 24px;
  }
}
.cid-v2EP3ZWzYV .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1440px) {
  .cid-v2EP3ZWzYV .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-v2EP3ZWzYV .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-v2EP3ZWzYV .item {
  margin-bottom: 32px;
}
.cid-v2EP3ZWzYV .item .item-wrapper {
  min-height: 630px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2rem !important;
  background-color: #fbfaf9;
  border: 1px solid #edeceb;
  padding: 48px;
}
@media (max-width: 1200px) {
  .cid-v2EP3ZWzYV .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2EP3ZWzYV .item .item-wrapper {
    padding: 24px;
    min-height: auto;
  }
}
.cid-v2EP3ZWzYV .item .item-wrapper .item-number {
  margin-bottom: 32px;
}
.cid-v2EP3ZWzYV .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-v2EP3ZWzYV .item .item-wrapper .card-box .item-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-v2EP3ZWzYV .item-title {
  color: #18212d;
}
.cid-v2EP3ZWzYV .item-text {
  color: #18212d;
}
.cid-v2EP3ZWzYV .item-number {
  color: #18212d;
}
.cid-v2ETzFJQFP {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2ETzFJQFP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ETzFJQFP .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-v2ETzFJQFP .container {
    padding: 0 20px;
  }
}
.cid-v2ETzFJQFP .row {
  justify-content: center;
}
.cid-v2ETzFJQFP .content-wrapper {
  display: flex;
  padding: 30px;
  border-radius: 2rem;
  background-color: #18212d;
}
@media (max-width: 992px) {
  .cid-v2ETzFJQFP .content-wrapper {
    display: block;
    padding: 20px;
  }
}
.cid-v2ETzFJQFP .content-wrapper .card {
  justify-content: center;
}
.cid-v2ETzFJQFP .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v2ETzFJQFP .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-v2ETzFJQFP .content-wrapper .image-wrapper img {
  height: 720px;
  object-fit: cover;
  border-radius: 20px !important;
}
@media (max-width: 992px) {
  .cid-v2ETzFJQFP .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-v2ETzFJQFP .content-wrapper .content-wrap {
  width: 50%;
  padding: 0 200px 0 60px;
}
@media (max-width: 1440px) {
  .cid-v2ETzFJQFP .content-wrapper .content-wrap {
    padding: 0 100px 0 60px;
  }
}
@media (max-width: 1199px) {
  .cid-v2ETzFJQFP .content-wrapper .content-wrap {
    padding: 0 40px 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-v2ETzFJQFP .content-wrapper .content-wrap {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-v2ETzFJQFP .content-wrapper .content-wrap .title-wrapper {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v2ETzFJQFP .content-wrapper .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2ETzFJQFP .content-wrapper .content-wrap .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  border-radius: 100vw;
  padding: 14px 15px;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.cid-v2ETzFJQFP .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2ETzFJQFP .content-wrapper .content-wrap .mbr-text {
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: .5;
}
.cid-v2ETzFJQFP .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-v2ETzFJQFP .mbr-text {
  color: #ffffff;
}
.cid-v2ETzFJQFP .mbr-desc {
  color: #0f1d07;
}
.cid-v2ETzFJQFP .mbr-desc,
.cid-v2ETzFJQFP .desc-wrapper {
  text-align: left;
}
.cid-v2ETzFJQFP .mbr-text,
.cid-v2ETzFJQFP .mbr-section-btn {
  text-align: left;
}
.cid-v2EV3mKK41 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2EV3mKK41 .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  background-color: #000000;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
}
.cid-v2EV3mKK41 .card {
  margin-bottom: 1.5rem;
}
.cid-v2EV3mKK41 .card-wrapper {
  padding: 3rem 2.5rem;
  background-color: #ffffff;
  border-width: 0 0 4px 0;
  border-style: solid;
}
.cid-v2EV3mKK41 .card-wrapper-1 {
  border-color: #ff6666;
}
.cid-v2EV3mKK41 .card-wrapper-2 {
  border-color: #6592e6;
}
.cid-v2EV3mKK41 .card-wrapper-3 {
  border-color: #bcd9df;
}
.cid-v2EV3mKK41 .card-wrapper-4 {
  border-color: #67beb0;
}
.cid-v2EV3mKK41 .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
}
.cid-v2EV3mKK41 .card-text {
  color: #000000;
  text-align: left;
}
.cid-v2EV3mKK41 .card-title,
.cid-v2EV3mKK41 .icon-wrap {
  color: #000000;
  text-align: left;
}
.cid-v2EV3mKK41 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-v2EV3mKK41 .card-subtitle {
  text-align: left;
}
.cid-v2EV3mKK41 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2EV3mKK41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2EM6HikRu {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2EM6HikRu img,
.cid-v2EM6HikRu .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v2EM6HikRu .item:focus,
.cid-v2EM6HikRu span:focus {
  outline: none;
}
.cid-v2EM6HikRu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2EM6HikRu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2EM6HikRu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2EM6HikRu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2EM6HikRu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2EM6HikRu .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-v2EM6HikRu .mbr-text,
.cid-v2EM6HikRu .mbr-section-btn {
  text-align: left;
}
.cid-v2EM6HikRu .item-title {
  text-align: left;
}
.cid-v2EM6HikRu .item-subtitle {
  text-align: center;
}
.cid-v2EM6HikRu .mbr-section-subtitle {
  text-align: left;
  color: #22a5e5;
}
.cid-v2EM6H4CGN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2EM6H4CGN blockquote {
  border-color: #e43f3f;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-v2EM6H4CGN .mbr-section-title {
  color: #353535;
}
.cid-v2EM6H4CGN .mbr-text {
  color: #353535;
}
.cid-v2EM6ICGDO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-v2EM6ICGDO .container {
  max-width: 1750px;
}
.cid-v2EM6ICGDO .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-v2EM6ICGDO img {
  width: 150px;
  display: inline-block;
}
.cid-v2EM6ICGDO p {
  line-height: 1.8;
}
.cid-v2EM6ICGDO .mbr-text {
  color: #353535;
}
.cid-v2EM6ICGDO .mbr-section-title {
  color: #000000;
}
.cid-v2F3mTGMi5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2F3mTGMi5 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v2F3mTGMi5 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v2F3mTGMi5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v2F3mTGMi5 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v2F3mTGMi5 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v2F3mTGMi5 .container {
    padding: 0 1rem;
  }
}
.cid-v2F3mTGMi5 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v2F3mTGMi5 .nav-link {
  position: relative;
}
.cid-v2F3mTGMi5 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v2F3mTGMi5 nav.navbar {
  position: fixed;
}
.cid-v2F3mTGMi5 .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v2F3mTGMi5 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2F3mTGMi5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2F3mTGMi5 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2F3mTGMi5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2F3mTGMi5 .navbar.collapsed {
  justify-content: center;
}
.cid-v2F3mTGMi5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2F3mTGMi5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2F3mTGMi5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v2F3mTGMi5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2F3mTGMi5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2F3mTGMi5 .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-v2F3mTGMi5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2F3mTGMi5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2F3mTGMi5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2F3mTGMi5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2F3mTGMi5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2F3mTGMi5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2F3mTGMi5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2F3mTGMi5 .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-v2F3mTGMi5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2F3mTGMi5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2F3mTGMi5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2F3mTGMi5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2F3mTGMi5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2F3mTGMi5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2F3mTGMi5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2F3mTGMi5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2F3mTGMi5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2F3mTGMi5 .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-v2F3mTGMi5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2F3mTGMi5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2F3mTGMi5 .dropdown-item:hover,
.cid-v2F3mTGMi5 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v2F3mTGMi5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2F3mTGMi5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2F3mTGMi5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v2F3mTGMi5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2F3mTGMi5 .dropdown-menu,
.cid-v2F3mTGMi5 .navbar.opened {
  background: #ffffff !important;
}
.cid-v2F3mTGMi5 .nav-item:focus,
.cid-v2F3mTGMi5 .nav-link:focus {
  outline: none;
}
.cid-v2F3mTGMi5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2F3mTGMi5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2F3mTGMi5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2F3mTGMi5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2F3mTGMi5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2F3mTGMi5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2F3mTGMi5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2F3mTGMi5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2F3mTGMi5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2F3mTGMi5 .dropdown-item.active,
.cid-v2F3mTGMi5 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2F3mTGMi5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2F3mTGMi5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2F3mTGMi5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2F3mTGMi5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v2F3mTGMi5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2F3mTGMi5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2F3mTGMi5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2F3mTGMi5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2F3mTGMi5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2F3mTGMi5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2F3mTGMi5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2F3mTGMi5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2F3mTGMi5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2F3mTGMi5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2F3mTGMi5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2F3mTGMi5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2F3mTGMi5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2F3mTGMi5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2F3mTGMi5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2F3mTGMi5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2F3mTGMi5 .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-v2F3mTGMi5 .navbar {
    height: 70px;
  }
  .cid-v2F3mTGMi5 .navbar.opened {
    height: auto;
  }
  .cid-v2F3mTGMi5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2F3UKhiZU {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/dnata-revised-2000x1125.jpeg");
}
.cid-v2F3UKhiZU .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-v2F3UKhiZU .mbr-arrow i {
  color: #ffffff !important;
}
.cid-v2F3UKhiZU .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-v2F3UKhiZU .animated-element,
.cid-v2F3UKhiZU .typed-cursor {
  color: #ffffff;
}
.cid-v2F3UKhiZU .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-v2F3UKhiZU .typed-text {
    text-align: center;
  }
}
.cid-v2F3UKhiZU .mbr-section-title {
  text-align: left;
}
.cid-v2F3mUsiJC {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v2F3mUsiJC .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2F3mUsiJC .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2F3mUsiJC .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2F3mUsiJC .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2F3mUsiJC .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2F3mUsiJC .mbr-text {
  color: #606060;
}
.cid-v2F3mUsiJC .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2F3mUsiJC .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2F3mUsiJC .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2F3mUsiJC .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2F3mUsiJC .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2F3mUsiJC .mbr-section-subtitle,
.cid-v2F3mUsiJC .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2F3mUsiJC .badge,
.cid-v2F3mUsiJC .badge_wrap,
.cid-v2F3mUsiJC .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2F3mUsiJC .main-title,
.cid-v2F3mUsiJC .mbr-section-btn {
  color: #404040;
}
.cid-v2F4hLB2ge {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2F3mWqiIS {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2F3mWqiIS img,
.cid-v2F3mWqiIS .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v2F3mWqiIS .item:focus,
.cid-v2F3mWqiIS span:focus {
  outline: none;
}
.cid-v2F3mWqiIS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2F3mWqiIS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2F3mWqiIS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2F3mWqiIS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2F3mWqiIS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2F3mWqiIS .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-v2F3mWqiIS .mbr-text,
.cid-v2F3mWqiIS .mbr-section-btn {
  text-align: left;
}
.cid-v2F3mWqiIS .item-title {
  text-align: left;
}
.cid-v2F3mWqiIS .item-subtitle {
  text-align: center;
}
.cid-v2F3mWqiIS .mbr-section-subtitle {
  text-align: left;
  color: #22a5e5;
}
.cid-v2F3mXwKzJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-v2F3mXwKzJ .container {
  max-width: 1750px;
}
.cid-v2F3mXwKzJ .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-v2F3mXwKzJ img {
  width: 150px;
  display: inline-block;
}
.cid-v2F3mXwKzJ p {
  line-height: 1.8;
}
.cid-v2F3mXwKzJ .mbr-text {
  color: #353535;
}
.cid-v2F3mXwKzJ .mbr-section-title {
  color: #000000;
}
.cid-v2F65zH37x {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2F65zH37x .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v2F65zH37x .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v2F65zH37x .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v2F65zH37x .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v2F65zH37x .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v2F65zH37x .container {
    padding: 0 1rem;
  }
}
.cid-v2F65zH37x .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v2F65zH37x .nav-link {
  position: relative;
}
.cid-v2F65zH37x .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v2F65zH37x nav.navbar {
  position: fixed;
}
.cid-v2F65zH37x .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v2F65zH37x .navbar.opened {
  transition: all 0.3s;
}
.cid-v2F65zH37x .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2F65zH37x .navbar .navbar-logo img {
  width: auto;
}
.cid-v2F65zH37x .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2F65zH37x .navbar.collapsed {
  justify-content: center;
}
.cid-v2F65zH37x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2F65zH37x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2F65zH37x .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v2F65zH37x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2F65zH37x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2F65zH37x .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-v2F65zH37x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2F65zH37x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2F65zH37x .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2F65zH37x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2F65zH37x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2F65zH37x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2F65zH37x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2F65zH37x .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-v2F65zH37x .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2F65zH37x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2F65zH37x .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2F65zH37x .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2F65zH37x .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2F65zH37x .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2F65zH37x .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2F65zH37x .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2F65zH37x .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2F65zH37x .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-v2F65zH37x .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2F65zH37x .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2F65zH37x .dropdown-item:hover,
.cid-v2F65zH37x .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v2F65zH37x .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2F65zH37x .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2F65zH37x .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v2F65zH37x .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2F65zH37x .dropdown-menu,
.cid-v2F65zH37x .navbar.opened {
  background: #ffffff !important;
}
.cid-v2F65zH37x .nav-item:focus,
.cid-v2F65zH37x .nav-link:focus {
  outline: none;
}
.cid-v2F65zH37x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2F65zH37x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2F65zH37x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2F65zH37x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2F65zH37x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2F65zH37x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2F65zH37x .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2F65zH37x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2F65zH37x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2F65zH37x .dropdown-item.active,
.cid-v2F65zH37x .dropdown-item:active {
  background-color: transparent;
}
.cid-v2F65zH37x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2F65zH37x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2F65zH37x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2F65zH37x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v2F65zH37x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2F65zH37x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2F65zH37x ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2F65zH37x .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2F65zH37x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2F65zH37x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2F65zH37x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2F65zH37x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2F65zH37x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2F65zH37x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2F65zH37x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2F65zH37x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2F65zH37x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2F65zH37x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2F65zH37x .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2F65zH37x a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2F65zH37x .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-v2F65zH37x .navbar {
    height: 70px;
  }
  .cid-v2F65zH37x .navbar.opened {
    height: auto;
  }
  .cid-v2F65zH37x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2F65AXSLp {
  padding-top: 135px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-v2F65AXSLp .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2F65AXSLp .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2F65AXSLp .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2F65AXSLp .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2F65AXSLp .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2F65AXSLp .mbr-text {
  color: #606060;
}
.cid-v2F65AXSLp .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2F65AXSLp .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2F65AXSLp .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2F65AXSLp .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2F65AXSLp .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2F65AXSLp .mbr-section-subtitle,
.cid-v2F65AXSLp .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2F65AXSLp .badge,
.cid-v2F65AXSLp .badge_wrap,
.cid-v2F65AXSLp .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2F65AXSLp .main-title,
.cid-v2F65AXSLp .mbr-section-btn {
  color: #404040;
}
.cid-v2F65Bx73R {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v2F65Bx73R img,
.cid-v2F65Bx73R .item-img {
  height: 100%;
  height: 100px;
  object-fit: cover;
}
.cid-v2F65Bx73R .item:focus,
.cid-v2F65Bx73R span:focus {
  outline: none;
}
.cid-v2F65Bx73R .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2F65Bx73R .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2F65Bx73R .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2F65Bx73R .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2F65Bx73R .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2F65Bx73R .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-v2F65Bx73R .mbr-text,
.cid-v2F65Bx73R .mbr-section-btn {
  text-align: left;
  color: #606060;
}
.cid-v2F65Bx73R .item-title {
  text-align: center;
}
.cid-v2F65Bx73R .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-v2F65Bx73R .mbr-section-subtitle {
  color: #606060;
  text-align: left;
}
.cid-v2F65C71m7 {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-v2F65C71m7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2F65C71m7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2F65C71m7 .mbr-section-title,
.cid-v2F65C71m7 .mbr-section-subtitle {
  text-align: center;
}
.cid-v2F65C71m7 .cost {
  word-break: normal;
}
.cid-v2F65C71m7 .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #ffffff;
}
.cid-v2F65C71m7 .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-v2F65C71m7 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2F65C71m7 .card-wrapper {
    padding: 1rem;
  }
}
.cid-v2F65C71m7 P {
  color: #4479d9;
}
.cid-v2F65C71m7 .card-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-v2F65CH6rL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-v2F65CH6rL .container {
  max-width: 1750px;
}
.cid-v2F65CH6rL .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-v2F65CH6rL img {
  width: 150px;
  display: inline-block;
}
.cid-v2F65CH6rL p {
  line-height: 1.8;
}
.cid-v2F65CH6rL .mbr-text {
  color: #353535;
}
.cid-v2F65CH6rL .mbr-section-title {
  color: #000000;
}
.cid-v2NZ57CKXH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2NZ57CKXH .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v2NZ57CKXH .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v2NZ57CKXH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v2NZ57CKXH .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v2NZ57CKXH .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v2NZ57CKXH .container {
    padding: 0 1rem;
  }
}
.cid-v2NZ57CKXH .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v2NZ57CKXH .nav-link {
  position: relative;
}
.cid-v2NZ57CKXH .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v2NZ57CKXH nav.navbar {
  position: fixed;
}
.cid-v2NZ57CKXH .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v2NZ57CKXH .navbar.opened {
  transition: all 0.3s;
}
.cid-v2NZ57CKXH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2NZ57CKXH .navbar .navbar-logo img {
  width: auto;
}
.cid-v2NZ57CKXH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2NZ57CKXH .navbar.collapsed {
  justify-content: center;
}
.cid-v2NZ57CKXH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2NZ57CKXH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2NZ57CKXH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v2NZ57CKXH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2NZ57CKXH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2NZ57CKXH .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-v2NZ57CKXH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2NZ57CKXH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2NZ57CKXH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2NZ57CKXH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2NZ57CKXH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2NZ57CKXH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2NZ57CKXH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2NZ57CKXH .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-v2NZ57CKXH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2NZ57CKXH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2NZ57CKXH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2NZ57CKXH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2NZ57CKXH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2NZ57CKXH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2NZ57CKXH .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2NZ57CKXH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2NZ57CKXH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2NZ57CKXH .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-v2NZ57CKXH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2NZ57CKXH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2NZ57CKXH .dropdown-item:hover,
.cid-v2NZ57CKXH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v2NZ57CKXH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2NZ57CKXH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2NZ57CKXH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v2NZ57CKXH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2NZ57CKXH .dropdown-menu,
.cid-v2NZ57CKXH .navbar.opened {
  background: #ffffff !important;
}
.cid-v2NZ57CKXH .nav-item:focus,
.cid-v2NZ57CKXH .nav-link:focus {
  outline: none;
}
.cid-v2NZ57CKXH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2NZ57CKXH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2NZ57CKXH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2NZ57CKXH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2NZ57CKXH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2NZ57CKXH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2NZ57CKXH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2NZ57CKXH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2NZ57CKXH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2NZ57CKXH .dropdown-item.active,
.cid-v2NZ57CKXH .dropdown-item:active {
  background-color: transparent;
}
.cid-v2NZ57CKXH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2NZ57CKXH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2NZ57CKXH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2NZ57CKXH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v2NZ57CKXH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2NZ57CKXH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2NZ57CKXH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2NZ57CKXH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2NZ57CKXH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2NZ57CKXH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2NZ57CKXH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2NZ57CKXH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2NZ57CKXH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2NZ57CKXH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2NZ57CKXH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2NZ57CKXH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2NZ57CKXH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2NZ57CKXH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2NZ57CKXH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2NZ57CKXH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2NZ57CKXH .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-v2NZ57CKXH .navbar {
    height: 70px;
  }
  .cid-v2NZ57CKXH .navbar.opened {
    height: auto;
  }
  .cid-v2NZ57CKXH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2NZ59ZPdx {
  background-image: url("../../../assets/images/banners-template-2-2000x1000.png");
}
.cid-v2NZ59ZPdx .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-v2NZ59ZPdx .mbr-arrow i {
  color: #ffffff !important;
}
.cid-v2NZ59ZPdx .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-v2NZ59ZPdx .animated-element,
.cid-v2NZ59ZPdx .typed-cursor {
  color: #ffffff;
}
.cid-v2NZ59ZPdx .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-v2NZ59ZPdx .typed-text {
    text-align: center;
  }
}
.cid-v2NZ59ZPdx .mbr-section-title {
  text-align: center;
}
.cid-v2NZ59ZPdx .mbr-section-subtitle,
.cid-v2NZ59ZPdx .underline {
  text-align: center;
}
.cid-v2NZhFxmUK {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-v2NZhFxmUK .row {
  background: #ffffff;
  padding: 0rem 0rem;
  margin: 0rem;
  margin-top: 1rem;
  border-radius: 10px;
}
.cid-v2NZhFxmUK img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  transform: scale(1.2);
  transform-origin: bottom;
}
@media (max-width: 992px) {
  .cid-v2NZhFxmUK img {
    width: 50%;
    transform: scaleY(1);
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-v2NZhFxmUK img {
    width: 90%;
    transform: scaleY(1);
    margin: auto;
  }
}
.cid-v2NZhFxmUK .card {
  padding: 3rem 3rem;
}
@media (max-width: 992px) {
  .cid-v2NZhFxmUK .card {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2NZhFxmUK .card {
    padding: 2rem 0rem;
  }
}
.cid-v2NZhFxmUK .mbr-text,
.cid-v2NZhFxmUK .mbr-section-btn {
  color: #777777;
}
.cid-v2NZhFxmUK .mbr-section-subtitle {
  color: #14191e;
}
.cid-v2NZhFxmUK .mbr-section-title {
  color: #777777;
}
.cid-v2O0GLQitc {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-v2O1m7TY2t {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2O1m7TY2t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2O1m7TY2t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2O1m7TY2t .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-v2O1m7TY2t .item {
    margin-bottom: 4rem;
  }
}
.cid-v2O1m7TY2t .item:last-child .icon-box:before {
  display: none;
}
.cid-v2O1m7TY2t .item.last .icon-box:before {
  display: none;
}
.cid-v2O1m7TY2t .icon-box {
  background: #18212d;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-v2O1m7TY2t .icon-box {
    margin-right: 1rem;
  }
}
.cid-v2O1m7TY2t .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  top: 100%;
  color: #18212d;
  transform: translate(-50%, 0);
}
.cid-v2O1m7TY2t span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2O1m7TY2t .card {
    margin-bottom: 2rem;
  }
  .cid-v2O1m7TY2t .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-v2O1m7TY2t .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-v2O1m7TY2t .icon-box::before {
    top: 114%;
  }
}
.cid-v2O1m7TY2t .card-title,
.cid-v2O1m7TY2t .card-box {
  text-align: left;
}
.cid-v2O5iVeohs {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2O5iVeohs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2O5iVeohs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2O5iVeohs .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-v2O5iVeohs .panel-group {
  border: none;
}
.cid-v2O5iVeohs .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v2O5iVeohs .panel-body,
.cid-v2O5iVeohs .card-header {
  padding: 1rem 0;
}
.cid-v2O5iVeohs .panel-title-edit {
  color: #000000;
}
.cid-v2O5iVeohs .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v2O5iVeohs H3 {
  text-align: left;
}
.cid-v2O63PvueV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2O63PvueV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2O63PvueV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2O63PvueV .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-v2O63PvueV .panel-group {
  border: none;
}
.cid-v2O63PvueV .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v2O63PvueV .panel-body,
.cid-v2O63PvueV .card-header {
  padding: 1rem 0;
}
.cid-v2O63PvueV .panel-title-edit {
  color: #000000;
}
.cid-v2O63PvueV .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v2O63PvueV H3 {
  text-align: left;
}
.cid-v2O6t6Va4F {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2O6t6Va4F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2O6t6Va4F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2O6t6Va4F .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-v2O6t6Va4F .panel-group {
  border: none;
}
.cid-v2O6t6Va4F .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v2O6t6Va4F .panel-body,
.cid-v2O6t6Va4F .card-header {
  padding: 1rem 0;
}
.cid-v2O6t6Va4F .panel-title-edit {
  color: #000000;
}
.cid-v2O6t6Va4F .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v2O6t6Va4F H3 {
  text-align: left;
}
.cid-v2NZ5gqFlo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-v2NZ5gqFlo .container {
  max-width: 1750px;
}
.cid-v2NZ5gqFlo .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-v2NZ5gqFlo img {
  width: 150px;
  display: inline-block;
}
.cid-v2NZ5gqFlo p {
  line-height: 1.8;
}
.cid-v2NZ5gqFlo .mbr-text {
  color: #353535;
}
.cid-v2NZ5gqFlo .mbr-section-title {
  color: #000000;
}
.cid-v2PIflu2IA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2PIflu2IA .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v2PIflu2IA .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v2PIflu2IA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v2PIflu2IA .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v2PIflu2IA .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v2PIflu2IA .container {
    padding: 0 1rem;
  }
}
.cid-v2PIflu2IA .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v2PIflu2IA .nav-link {
  position: relative;
}
.cid-v2PIflu2IA .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v2PIflu2IA nav.navbar {
  position: fixed;
}
.cid-v2PIflu2IA .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v2PIflu2IA .navbar.opened {
  transition: all 0.3s;
}
.cid-v2PIflu2IA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2PIflu2IA .navbar .navbar-logo img {
  width: auto;
}
.cid-v2PIflu2IA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2PIflu2IA .navbar.collapsed {
  justify-content: center;
}
.cid-v2PIflu2IA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2PIflu2IA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2PIflu2IA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v2PIflu2IA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2PIflu2IA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2PIflu2IA .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-v2PIflu2IA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2PIflu2IA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2PIflu2IA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2PIflu2IA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2PIflu2IA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2PIflu2IA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2PIflu2IA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2PIflu2IA .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-v2PIflu2IA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2PIflu2IA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2PIflu2IA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2PIflu2IA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2PIflu2IA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2PIflu2IA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2PIflu2IA .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2PIflu2IA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2PIflu2IA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2PIflu2IA .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-v2PIflu2IA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2PIflu2IA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2PIflu2IA .dropdown-item:hover,
.cid-v2PIflu2IA .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v2PIflu2IA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2PIflu2IA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2PIflu2IA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v2PIflu2IA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2PIflu2IA .dropdown-menu,
.cid-v2PIflu2IA .navbar.opened {
  background: #ffffff !important;
}
.cid-v2PIflu2IA .nav-item:focus,
.cid-v2PIflu2IA .nav-link:focus {
  outline: none;
}
.cid-v2PIflu2IA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2PIflu2IA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2PIflu2IA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2PIflu2IA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2PIflu2IA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2PIflu2IA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2PIflu2IA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2PIflu2IA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2PIflu2IA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2PIflu2IA .dropdown-item.active,
.cid-v2PIflu2IA .dropdown-item:active {
  background-color: transparent;
}
.cid-v2PIflu2IA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2PIflu2IA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2PIflu2IA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2PIflu2IA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v2PIflu2IA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2PIflu2IA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2PIflu2IA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2PIflu2IA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2PIflu2IA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2PIflu2IA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2PIflu2IA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2PIflu2IA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2PIflu2IA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2PIflu2IA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2PIflu2IA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PIflu2IA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2PIflu2IA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2PIflu2IA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PIflu2IA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2PIflu2IA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2PIflu2IA .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-v2PIflu2IA .navbar {
    height: 70px;
  }
  .cid-v2PIflu2IA .navbar.opened {
    height: auto;
  }
  .cid-v2PIflu2IA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2PIfmthIs {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-v2PIfmthIs .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2PIfmthIs .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2PIfmthIs .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2PIfmthIs .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2PIfmthIs .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2PIfmthIs .mbr-text {
  color: #606060;
}
.cid-v2PIfmthIs .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2PIfmthIs .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2PIfmthIs .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2PIfmthIs .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2PIfmthIs .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2PIfmthIs .mbr-section-subtitle,
.cid-v2PIfmthIs .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2PIfmthIs .badge,
.cid-v2PIfmthIs .badge_wrap,
.cid-v2PIfmthIs .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2PIfmthIs .main-title,
.cid-v2PIfmthIs .mbr-section-btn {
  color: #404040;
}
.cid-v2PISgLqaq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2PISgLqaq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PISgLqaq .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-v2PISgLqaq .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v2PISgLqaq .container {
    padding: 0 24px;
  }
}
.cid-v2PISgLqaq .image-wrapper {
  position: sticky;
  top: 32px;
}
@media (max-width: 992px) {
  .cid-v2PISgLqaq .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2PISgLqaq .image-wrapper img {
  height: 90vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v2PISgLqaq .image-wrapper img {
    height: 400px;
  }
}
.cid-v2PISgLqaq .content-wrapper {
  padding: 64px;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
}
@media (max-width: 992px) {
  .cid-v2PISgLqaq .content-wrapper {
    padding: 24px;
  }
}
.cid-v2PISgLqaq .content-wrapper .content-wrap {
  margin-bottom: 32px;
}
.cid-v2PISgLqaq .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-v2PISgLqaq .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2PISgLqaq .content-wrapper .content-wrap .mbr-text_1 {
  opacity: .5;
  margin-bottom: 0;
}
.cid-v2PISgLqaq .content-wrapper .content-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-v2PISgLqaq .content-wrapper .content-wrap .mbr-text_2 {
  margin-bottom: 0;
}
.cid-v2PISgLqaq .content-wrapper .person-wrapper {
  margin-bottom: 48px;
}
.cid-v2PISgLqaq .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  border-radius: 1rem;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  padding: 16px;
}
.cid-v2PISgLqaq .content-wrapper .person-wrapper .person-wrap img {
  width: 50px;
  height: 50px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 16px;
}
.cid-v2PISgLqaq .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-v2PISgLqaq .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  opacity: .5;
  margin-bottom: 0;
}
.cid-v2PISgLqaq .mbr-section-title {
  color: #18212d;
}
.cid-v2PISgLqaq .mbr-section-subtitle {
  color: #18212d;
}
.cid-v2PISgLqaq .mbr-desc {
  color: #18212d;
}
.cid-v2PISgLqaq .mbr-text_1 {
  color: #18212d;
}
.cid-v2PISgLqaq .mbr-text_2 {
  color: #18212d;
}
.cid-v2PISgLqaq .mbr-role {
  color: #18212d;
}
.cid-v2PISgLqaq .mbr-name {
  color: #18212d;
}
.cid-v2PJ7BppGo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2PJ7BppGo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PJ7BppGo .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-v2PJ7BppGo .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v2PJ7BppGo .container {
    padding: 0 24px;
  }
}
.cid-v2PJ7BppGo .image-wrapper {
  position: sticky;
  top: 32px;
}
@media (max-width: 992px) {
  .cid-v2PJ7BppGo .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2PJ7BppGo .image-wrapper img {
  height: 90vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v2PJ7BppGo .image-wrapper img {
    height: 400px;
  }
}
.cid-v2PJ7BppGo .content-wrapper {
  padding: 64px;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
}
@media (max-width: 992px) {
  .cid-v2PJ7BppGo .content-wrapper {
    padding: 24px;
  }
}
.cid-v2PJ7BppGo .content-wrapper .content-wrap {
  margin-bottom: 32px;
}
.cid-v2PJ7BppGo .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-v2PJ7BppGo .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2PJ7BppGo .content-wrapper .content-wrap .mbr-text_1 {
  opacity: .5;
  margin-bottom: 0;
}
.cid-v2PJ7BppGo .content-wrapper .content-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-v2PJ7BppGo .content-wrapper .content-wrap .mbr-text_2 {
  margin-bottom: 0;
}
.cid-v2PJ7BppGo .content-wrapper .person-wrapper {
  margin-bottom: 48px;
}
.cid-v2PJ7BppGo .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  border-radius: 1rem;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  padding: 16px;
}
.cid-v2PJ7BppGo .content-wrapper .person-wrapper .person-wrap img {
  width: 50px;
  height: 50px;
  border-radius: 100% !important;
  object-fit: cover;
  margin-right: 16px;
}
.cid-v2PJ7BppGo .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-v2PJ7BppGo .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  opacity: .5;
  margin-bottom: 0;
}
.cid-v2PJ7BppGo .mbr-section-title {
  color: #18212d;
}
.cid-v2PJ7BppGo .mbr-section-subtitle {
  color: #18212d;
}
.cid-v2PJ7BppGo .mbr-desc {
  color: #18212d;
}
.cid-v2PJ7BppGo .mbr-text_1 {
  color: #18212d;
}
.cid-v2PJ7BppGo .mbr-text_2 {
  color: #18212d;
}
.cid-v2PJ7BppGo .mbr-role {
  color: #18212d;
}
.cid-v2PJ7BppGo .mbr-name {
  color: #18212d;
}
.cid-v2PIfnLYaQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2PIfnLYaQ img,
.cid-v2PIfnLYaQ .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v2PIfnLYaQ .item:focus,
.cid-v2PIfnLYaQ span:focus {
  outline: none;
}
.cid-v2PIfnLYaQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2PIfnLYaQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2PIfnLYaQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2PIfnLYaQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2PIfnLYaQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2PIfnLYaQ .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-v2PIfnLYaQ .mbr-text,
.cid-v2PIfnLYaQ .mbr-section-btn {
  text-align: left;
}
.cid-v2PIfnLYaQ .item-title {
  text-align: left;
}
.cid-v2PIfnLYaQ .item-subtitle {
  text-align: center;
}
.cid-v2PIfnLYaQ .mbr-section-subtitle {
  text-align: left;
  color: #22a5e5;
}
.cid-v2PIfmPpNE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2PIfmPpNE blockquote {
  border-color: #e43f3f;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-v2PIfmPpNE .mbr-section-title {
  color: #353535;
}
.cid-v2PIfmPpNE .mbr-text {
  color: #353535;
}
.cid-v2PIfo5z4V {
  padding-top: 255px;
  background-image: url("../../../assets/images/microsoftteams-image-1-scaled-1-2000x339.jpg");
}
.cid-v2PIfo5z4V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PIfo5z4V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PIfomoSp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-v2PIfomoSp .container {
  max-width: 1750px;
}
.cid-v2PIfomoSp .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-v2PIfomoSp img {
  width: 150px;
  display: inline-block;
}
.cid-v2PIfomoSp p {
  line-height: 1.8;
}
.cid-v2PIfomoSp .mbr-text {
  color: #353535;
}
.cid-v2PIfomoSp .mbr-section-title {
  color: #000000;
}
.cid-v2PKizELCl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2PKizELCl .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v2PKizELCl .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v2PKizELCl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v2PKizELCl .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v2PKizELCl .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v2PKizELCl .container {
    padding: 0 1rem;
  }
}
.cid-v2PKizELCl .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v2PKizELCl .nav-link {
  position: relative;
}
.cid-v2PKizELCl .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v2PKizELCl nav.navbar {
  position: fixed;
}
.cid-v2PKizELCl .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v2PKizELCl .navbar.opened {
  transition: all 0.3s;
}
.cid-v2PKizELCl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2PKizELCl .navbar .navbar-logo img {
  width: auto;
}
.cid-v2PKizELCl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2PKizELCl .navbar.collapsed {
  justify-content: center;
}
.cid-v2PKizELCl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2PKizELCl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2PKizELCl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v2PKizELCl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2PKizELCl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2PKizELCl .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-v2PKizELCl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2PKizELCl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2PKizELCl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2PKizELCl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2PKizELCl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2PKizELCl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2PKizELCl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2PKizELCl .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-v2PKizELCl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2PKizELCl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2PKizELCl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2PKizELCl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2PKizELCl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2PKizELCl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2PKizELCl .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2PKizELCl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2PKizELCl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2PKizELCl .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-v2PKizELCl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2PKizELCl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2PKizELCl .dropdown-item:hover,
.cid-v2PKizELCl .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v2PKizELCl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2PKizELCl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2PKizELCl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v2PKizELCl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2PKizELCl .dropdown-menu,
.cid-v2PKizELCl .navbar.opened {
  background: #ffffff !important;
}
.cid-v2PKizELCl .nav-item:focus,
.cid-v2PKizELCl .nav-link:focus {
  outline: none;
}
.cid-v2PKizELCl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2PKizELCl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2PKizELCl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2PKizELCl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2PKizELCl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2PKizELCl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2PKizELCl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2PKizELCl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2PKizELCl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2PKizELCl .dropdown-item.active,
.cid-v2PKizELCl .dropdown-item:active {
  background-color: transparent;
}
.cid-v2PKizELCl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2PKizELCl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2PKizELCl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2PKizELCl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v2PKizELCl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2PKizELCl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2PKizELCl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2PKizELCl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2PKizELCl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2PKizELCl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v2PKizELCl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2PKizELCl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2PKizELCl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2PKizELCl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2PKizELCl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PKizELCl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2PKizELCl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2PKizELCl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2PKizELCl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2PKizELCl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2PKizELCl .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-v2PKizELCl .navbar {
    height: 70px;
  }
  .cid-v2PKizELCl .navbar.opened {
    height: auto;
  }
  .cid-v2PKizELCl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2PKiAA7Ih {
  padding-top: 135px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-v2PKiAA7Ih .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2PKiAA7Ih .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2PKiAA7Ih .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2PKiAA7Ih .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2PKiAA7Ih .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2PKiAA7Ih .mbr-text {
  color: #606060;
}
.cid-v2PKiAA7Ih .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2PKiAA7Ih .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2PKiAA7Ih .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2PKiAA7Ih .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2PKiAA7Ih .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2PKiAA7Ih .mbr-section-subtitle,
.cid-v2PKiAA7Ih .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2PKiAA7Ih .badge,
.cid-v2PKiAA7Ih .badge_wrap,
.cid-v2PKiAA7Ih .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2PKiAA7Ih .main-title,
.cid-v2PKiAA7Ih .mbr-section-btn {
  color: #404040;
}
.cid-v2PKiASCd2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v2PKiASCd2 img,
.cid-v2PKiASCd2 .item-img {
  height: 100%;
  height: 100px;
  object-fit: cover;
}
.cid-v2PKiASCd2 .item:focus,
.cid-v2PKiASCd2 span:focus {
  outline: none;
}
.cid-v2PKiASCd2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2PKiASCd2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2PKiASCd2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2PKiASCd2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2PKiASCd2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2PKiASCd2 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-v2PKiASCd2 .mbr-text,
.cid-v2PKiASCd2 .mbr-section-btn {
  text-align: left;
  color: #606060;
}
.cid-v2PKiASCd2 .item-title {
  text-align: center;
}
.cid-v2PKiASCd2 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-v2PKiASCd2 .mbr-section-subtitle {
  color: #606060;
  text-align: left;
}
.cid-v2PLnKPwNy {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v2PLnKPwNy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PLnKPwNy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PLnKPwNy .mbr-section-title,
.cid-v2PLnKPwNy .mbr-section-subtitle {
  text-align: center;
}
.cid-v2PLnKPwNy .cost {
  word-break: normal;
}
.cid-v2PLnKPwNy .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #ffffff;
}
.cid-v2PLnKPwNy .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-v2PLnKPwNy .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2PLnKPwNy .card-wrapper {
    padding: 1rem;
  }
}
.cid-v2PLnKPwNy P {
  color: #4479d9;
}
.cid-v2PLnKPwNy .card-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-v2PLhBUbhH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v2PLhBUbhH img,
.cid-v2PLhBUbhH .item-img {
  height: 100%;
  height: 100px;
  object-fit: cover;
}
.cid-v2PLhBUbhH .item:focus,
.cid-v2PLhBUbhH span:focus {
  outline: none;
}
.cid-v2PLhBUbhH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2PLhBUbhH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2PLhBUbhH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2PLhBUbhH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2PLhBUbhH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2PLhBUbhH .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-v2PLhBUbhH .mbr-text,
.cid-v2PLhBUbhH .mbr-section-btn {
  text-align: left;
  color: #606060;
}
.cid-v2PLhBUbhH .item-title {
  text-align: center;
}
.cid-v2PLhBUbhH .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-v2PLhBUbhH .mbr-section-subtitle {
  color: #606060;
  text-align: left;
}
.cid-v2PKiBftef {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-v2PKiBftef .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2PKiBftef .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2PKiBftef .mbr-section-title,
.cid-v2PKiBftef .mbr-section-subtitle {
  text-align: center;
}
.cid-v2PKiBftef .cost {
  word-break: normal;
}
.cid-v2PKiBftef .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #ffffff;
}
.cid-v2PKiBftef .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-v2PKiBftef .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2PKiBftef .card-wrapper {
    padding: 1rem;
  }
}
.cid-v2PKiBftef P {
  color: #4479d9;
}
.cid-v2PKiBftef .card-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-v38u3l1BAF {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-v38u3l1BAF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v38u3l1BAF .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-v38u3l1BAF .container {
    padding: 0 20px;
  }
}
.cid-v38u3l1BAF .row {
  justify-content: center;
}
.cid-v38u3l1BAF .content-wrapper {
  display: flex;
  padding: 30px;
  border-radius: 2rem;
  background-color: #18212d;
}
@media (max-width: 992px) {
  .cid-v38u3l1BAF .content-wrapper {
    display: block;
    padding: 20px;
  }
}
.cid-v38u3l1BAF .content-wrapper .card {
  justify-content: center;
}
.cid-v38u3l1BAF .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v38u3l1BAF .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-v38u3l1BAF .content-wrapper .image-wrapper img {
  height: 720px;
  object-fit: cover;
  border-radius: 20px !important;
}
@media (max-width: 992px) {
  .cid-v38u3l1BAF .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-v38u3l1BAF .content-wrapper .content-wrap {
  width: 50%;
  padding: 0 200px 0 60px;
}
@media (max-width: 1440px) {
  .cid-v38u3l1BAF .content-wrapper .content-wrap {
    padding: 0 100px 0 60px;
  }
}
@media (max-width: 1199px) {
  .cid-v38u3l1BAF .content-wrapper .content-wrap {
    padding: 0 40px 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-v38u3l1BAF .content-wrapper .content-wrap {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-v38u3l1BAF .content-wrapper .content-wrap .title-wrapper {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v38u3l1BAF .content-wrapper .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v38u3l1BAF .content-wrapper .content-wrap .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  border-radius: 100vw;
  padding: 14px 15px;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.cid-v38u3l1BAF .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v38u3l1BAF .content-wrapper .content-wrap .mbr-text {
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: .5;
}
.cid-v38u3l1BAF .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-v38u3l1BAF .mbr-text {
  color: #ffffff;
}
.cid-v38u3l1BAF .mbr-desc {
  color: #0f1d07;
}
.cid-v38u3l1BAF .mbr-desc,
.cid-v38u3l1BAF .desc-wrapper {
  text-align: left;
}
.cid-v38u3l1BAF .mbr-text,
.cid-v38u3l1BAF .mbr-section-btn {
  text-align: left;
}
.cid-v38xLFCNje {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v38xLFCNje .mbr-fallback-image.disabled {
  display: none;
}
.cid-v38xLFCNje .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v38xLFCNje .content-wrapper {
  position: relative;
  padding: 100px 100px 105px;
  border-radius: 30px;
  background-color: #fafafa;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-v38xLFCNje .content-wrapper {
    padding: 46px 22px;
  }
}
.cid-v38xLFCNje .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-v38xLFCNje .content-wrapper .content-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-v38xLFCNje .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 56px;
}
.cid-v38xLFCNje .content-wrapper .content-wrap .mbr-section-title span {
  color: #4479d9;
}
@media (max-width: 992px) {
  .cid-v38xLFCNje .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-v38xLFCNje .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v38xLFCNje .content-wrapper .image-wrapper {
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 400px;
  height: 400px;
}
@media (max-width: 992px) {
  .cid-v38xLFCNje .content-wrapper .image-wrapper {
    right: -20px;
    bottom: -75px;
    width: 200px;
    height: 200px;
  }
}
.cid-v38xLFCNje .content-wrapper .image-wrapper img {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v38xLFCNje .content-wrapper .image-wrapper img {
    width: 200px;
    height: 200px;
  }
}
.cid-v38xLFCNje .mbr-section-title {
  color: #212529;
}
.cid-v38xLFCNje .mbr-desc {
  color: #212529;
  text-align: left;
}
.cid-v38xLFCNje .mbr-section-title,
.cid-v38xLFCNje .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-v2PKiBCywq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-v2PKiBCywq .container {
  max-width: 1750px;
}
.cid-v2PKiBCywq .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-v2PKiBCywq img {
  width: 150px;
  display: inline-block;
}
.cid-v2PKiBCywq p {
  line-height: 1.8;
}
.cid-v2PKiBCywq .mbr-text {
  color: #353535;
}
.cid-v2PKiBCywq .mbr-section-title {
  color: #000000;
}
.cid-v38udt8F5y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v38udt8F5y .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v38udt8F5y .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v38udt8F5y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v38udt8F5y .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v38udt8F5y .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v38udt8F5y .container {
    padding: 0 1rem;
  }
}
.cid-v38udt8F5y .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v38udt8F5y .nav-link {
  position: relative;
}
.cid-v38udt8F5y .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v38udt8F5y nav.navbar {
  position: fixed;
}
.cid-v38udt8F5y .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v38udt8F5y .navbar.opened {
  transition: all 0.3s;
}
.cid-v38udt8F5y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v38udt8F5y .navbar .navbar-logo img {
  width: auto;
}
.cid-v38udt8F5y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v38udt8F5y .navbar.collapsed {
  justify-content: center;
}
.cid-v38udt8F5y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v38udt8F5y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v38udt8F5y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v38udt8F5y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v38udt8F5y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v38udt8F5y .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-v38udt8F5y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v38udt8F5y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v38udt8F5y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v38udt8F5y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v38udt8F5y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v38udt8F5y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v38udt8F5y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v38udt8F5y .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-v38udt8F5y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v38udt8F5y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v38udt8F5y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v38udt8F5y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v38udt8F5y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v38udt8F5y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v38udt8F5y .navbar.navbar-short {
  min-height: 60px;
}
.cid-v38udt8F5y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v38udt8F5y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v38udt8F5y .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-v38udt8F5y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v38udt8F5y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v38udt8F5y .dropdown-item:hover,
.cid-v38udt8F5y .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v38udt8F5y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v38udt8F5y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v38udt8F5y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v38udt8F5y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v38udt8F5y .dropdown-menu,
.cid-v38udt8F5y .navbar.opened {
  background: #ffffff !important;
}
.cid-v38udt8F5y .nav-item:focus,
.cid-v38udt8F5y .nav-link:focus {
  outline: none;
}
.cid-v38udt8F5y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v38udt8F5y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v38udt8F5y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v38udt8F5y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v38udt8F5y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v38udt8F5y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v38udt8F5y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v38udt8F5y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v38udt8F5y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v38udt8F5y .dropdown-item.active,
.cid-v38udt8F5y .dropdown-item:active {
  background-color: transparent;
}
.cid-v38udt8F5y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v38udt8F5y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v38udt8F5y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v38udt8F5y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v38udt8F5y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v38udt8F5y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v38udt8F5y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v38udt8F5y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v38udt8F5y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v38udt8F5y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v38udt8F5y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v38udt8F5y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v38udt8F5y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v38udt8F5y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v38udt8F5y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v38udt8F5y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v38udt8F5y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v38udt8F5y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v38udt8F5y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v38udt8F5y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v38udt8F5y .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-v38udt8F5y .navbar {
    height: 70px;
  }
  .cid-v38udt8F5y .navbar.opened {
    height: auto;
  }
  .cid-v38udt8F5y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v38udtXOzK {
  padding-top: 135px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-v38udtXOzK .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v38udtXOzK .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v38udtXOzK .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v38udtXOzK .main-title.display-2 {
  line-height: 1.375;
}
.cid-v38udtXOzK .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v38udtXOzK .mbr-text {
  color: #606060;
}
.cid-v38udtXOzK .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v38udtXOzK .mbr-section-btn {
  margin-top: 24px;
}
.cid-v38udtXOzK .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v38udtXOzK .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v38udtXOzK .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v38udtXOzK .mbr-section-subtitle,
.cid-v38udtXOzK .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v38udtXOzK .badge,
.cid-v38udtXOzK .badge_wrap,
.cid-v38udtXOzK .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v38udtXOzK .main-title,
.cid-v38udtXOzK .mbr-section-btn {
  color: #404040;
}
.cid-v38v5wDk3J {
  background-image: url("../../../assets/images/1920-retouched2024-05-01-emirates-1165.jpg-1920x1185.jpg");
  align-items: flex-end;
}
.cid-v38v5wDk3J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v38v5wDk3J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v38v5wDk3J .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-v38v5wDk3J .container {
    height: auto;
  }
}
@media (max-width: 992px) {
  .cid-v38v5wDk3J .container {
    padding: 0 20px;
  }
}
.cid-v38v5wDk3J .row {
  height: 100%;
}
.cid-v38v5wDk3J .row .card {
  justify-content: flex-end;
}
.cid-v38v5wDk3J .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v38v5wDk3J .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-v38v5wDk3J .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v38v5wDk3J .mbr-section-btn {
    text-align: left;
  }
}
.cid-v38v5wDk3J .mbr-section-title {
  color: #ffffff;
}
.cid-v38udv7n0q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-v38udv7n0q .container {
  max-width: 1750px;
}
.cid-v38udv7n0q .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-v38udv7n0q img {
  width: 150px;
  display: inline-block;
}
.cid-v38udv7n0q p {
  line-height: 1.8;
}
.cid-v38udv7n0q .mbr-text {
  color: #353535;
}
.cid-v38udv7n0q .mbr-section-title {
  color: #000000;
}
.cid-uLdziRls8Q .mbr-section-title {
  color: #ffffff;
}
.cid-uLdziRls8Q .mbr-text,
.cid-uLdziRls8Q .mbr-section-btn {
  color: #ffffff;
}
.cid-v3BDEkN1Zw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3BDEkN1Zw .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-v3BDEkN1Zw .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-v3BDEkN1Zw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-v3BDEkN1Zw .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v3BDEkN1Zw .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v3BDEkN1Zw .container {
    padding: 0 1rem;
  }
}
.cid-v3BDEkN1Zw .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-v3BDEkN1Zw .nav-link {
  position: relative;
}
.cid-v3BDEkN1Zw .nav-link:hover {
  color: #47b5ed !important;
}
.cid-v3BDEkN1Zw nav.navbar {
  position: fixed;
}
.cid-v3BDEkN1Zw .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v3BDEkN1Zw .navbar.opened {
  transition: all 0.3s;
}
.cid-v3BDEkN1Zw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3BDEkN1Zw .navbar .navbar-logo img {
  width: auto;
}
.cid-v3BDEkN1Zw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3BDEkN1Zw .navbar.collapsed {
  justify-content: center;
}
.cid-v3BDEkN1Zw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3BDEkN1Zw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3BDEkN1Zw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v3BDEkN1Zw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3BDEkN1Zw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3BDEkN1Zw .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-v3BDEkN1Zw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3BDEkN1Zw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3BDEkN1Zw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3BDEkN1Zw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3BDEkN1Zw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3BDEkN1Zw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3BDEkN1Zw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3BDEkN1Zw .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-v3BDEkN1Zw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3BDEkN1Zw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3BDEkN1Zw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3BDEkN1Zw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3BDEkN1Zw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3BDEkN1Zw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3BDEkN1Zw .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3BDEkN1Zw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3BDEkN1Zw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3BDEkN1Zw .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-v3BDEkN1Zw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3BDEkN1Zw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3BDEkN1Zw .dropdown-item:hover,
.cid-v3BDEkN1Zw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v3BDEkN1Zw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3BDEkN1Zw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3BDEkN1Zw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-v3BDEkN1Zw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3BDEkN1Zw .dropdown-menu,
.cid-v3BDEkN1Zw .navbar.opened {
  background: #ffffff !important;
}
.cid-v3BDEkN1Zw .nav-item:focus,
.cid-v3BDEkN1Zw .nav-link:focus {
  outline: none;
}
.cid-v3BDEkN1Zw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3BDEkN1Zw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3BDEkN1Zw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3BDEkN1Zw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3BDEkN1Zw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3BDEkN1Zw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3BDEkN1Zw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3BDEkN1Zw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3BDEkN1Zw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3BDEkN1Zw .dropdown-item.active,
.cid-v3BDEkN1Zw .dropdown-item:active {
  background-color: transparent;
}
.cid-v3BDEkN1Zw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3BDEkN1Zw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3BDEkN1Zw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3BDEkN1Zw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v3BDEkN1Zw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3BDEkN1Zw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3BDEkN1Zw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3BDEkN1Zw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3BDEkN1Zw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3BDEkN1Zw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3BDEkN1Zw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3BDEkN1Zw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3BDEkN1Zw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3BDEkN1Zw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3BDEkN1Zw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3BDEkN1Zw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3BDEkN1Zw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3BDEkN1Zw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3BDEkN1Zw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3BDEkN1Zw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3BDEkN1Zw .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-v3BDEkN1Zw .navbar {
    height: 70px;
  }
  .cid-v3BDEkN1Zw .navbar.opened {
    height: auto;
  }
  .cid-v3BDEkN1Zw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3BDElfNO3 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/static-image-dnata-switzerlandag-12-1902x1198.png");
}
.cid-v3BDElfNO3 .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-v3BDElfNO3 .mbr-arrow i {
  color: #ffffff !important;
}
.cid-v3BDElfNO3 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-v3BDElfNO3 .animated-element,
.cid-v3BDElfNO3 .typed-cursor {
  color: #ffffff;
}
.cid-v3BDElfNO3 .animated-element {
  border-bottom: 5px solid #f7aa4a;
}
@media (max-width: 767px) {
  .cid-v3BDElfNO3 .typed-text {
    text-align: center;
  }
}
.cid-v3BDElfNO3 .mbr-section-title {
  text-align: left;
}
.cid-v3BDElyrEk {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-v3BDElyrEk .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-v3BDElyrEk .signup_wrap {
  padding: 60px 0px;
  background-color: #ffffff;
  box-shadow: 0px 30px 60px 0px rgba(38, 59, 94, 0.1);
}
.cid-v3BDElyrEk .title_block {
  padding: 0px 65px;
  height: 100%;
  margin-right: -15px;
  border-right: 1px solid #e0e5ff;
}
.cid-v3BDElyrEk .mbr-section-title {
  color: #232323;
  margin-bottom: 60px;
}
.cid-v3BDElyrEk .mbr-section-subtitle {
  color: #bbbbbb;
  margin-bottom: 35px;
}
.cid-v3BDElyrEk .card_body {
  margin-bottom: 40px;
}
.cid-v3BDElyrEk .card_body .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-v3BDElyrEk .card_body .list li {
  margin-bottom: 15px;
}
.cid-v3BDElyrEk .card_body .list li:last-child {
  margin-bottom: 0;
}
.cid-v3BDElyrEk .card_body .mbr-iconfont {
  margin-right: 20px;
  color: #6592e6;
  font-size: inherit;
}
.cid-v3BDElyrEk .form_title {
  margin-bottom: 40px;
  margin-left: 15px;
  color: #404040;
}
.cid-v3BDElyrEk .form_wrap {
  padding: 0px 65px;
}
.cid-v3BDElyrEk .form-group {
  margin-bottom: 30px;
}
.cid-v3BDElyrEk .form-control-label {
  margin-bottom: 18px;
  color: #ff6666;
  font-weight: 700;
}
.cid-v3BDElyrEk input.form-control {
  height: 60px;
  padding: 0px 30px;
  border-radius: 45px;
  width: 100%;
  box-shadow: none;
  border: 1px solid #e0e5ff !important;
  background-color: #ffffff;
}
.cid-v3BDElyrEk form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-v3BDElyrEk form.mbr-form .mbr-section-btn .btn {
  line-height: 31.5px !important;
  width: 100%;
}
.cid-v3BDElyrEk textarea,
.cid-v3BDElyrEk .jqselect {
  border: 1px solid #e0e5ff !important;
}
@media (max-width: 991px) {
  .cid-v3BDElyrEk .signup_wrap {
    padding: 50px 0;
  }
  .cid-v3BDElyrEk .form_wrap,
  .cid-v3BDElyrEk .title_block {
    padding: 0px 45px;
  }
  .cid-v3BDElyrEk .mbr-section-title {
    margin-bottom: 40px;
  }
  .cid-v3BDElyrEk .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-v3BDElyrEk .signup_wrap {
    padding: 15px 30px;
  }
  .cid-v3BDElyrEk .title_block {
    margin: 0;
    margin-bottom: 50px;
    border-right: 0;
  }
  .cid-v3BDElyrEk .form_wrap,
  .cid-v3BDElyrEk .title_block {
    padding: 0;
  }
}
@media (max-width: 567px) {
  .cid-v3BDElyrEk .signup_wrap {
    padding: 0;
    box-shadow: none;
  }
}
.cid-v3BDElyrEk LABEL {
  color: #ff6666;
}
.cid-v3BDElRwmp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-v3BDElRwmp .container {
  max-width: 1750px;
}
.cid-v3BDElRwmp .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-v3BDElRwmp img {
  width: 150px;
  display: inline-block;
}
.cid-v3BDElRwmp p {
  line-height: 1.8;
}
.cid-v3BDElRwmp .mbr-text {
  color: #353535;
}
.cid-v3BDElRwmp .mbr-section-title {
  color: #000000;
}
.cid-uN0j6Jjtv8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uN0j6Jjtv8 .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uN0j6Jjtv8 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uN0j6Jjtv8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uN0j6Jjtv8 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uN0j6Jjtv8 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uN0j6Jjtv8 .container {
    padding: 0 1rem;
  }
}
.cid-uN0j6Jjtv8 .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uN0j6Jjtv8 .nav-link {
  position: relative;
}
.cid-uN0j6Jjtv8 .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uN0j6Jjtv8 nav.navbar {
  position: fixed;
}
.cid-uN0j6Jjtv8 .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uN0j6Jjtv8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uN0j6Jjtv8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN0j6Jjtv8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uN0j6Jjtv8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN0j6Jjtv8 .navbar.collapsed {
  justify-content: center;
}
.cid-uN0j6Jjtv8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN0j6Jjtv8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN0j6Jjtv8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uN0j6Jjtv8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN0j6Jjtv8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN0j6Jjtv8 .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-uN0j6Jjtv8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN0j6Jjtv8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN0j6Jjtv8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN0j6Jjtv8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN0j6Jjtv8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN0j6Jjtv8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN0j6Jjtv8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN0j6Jjtv8 .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-uN0j6Jjtv8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN0j6Jjtv8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN0j6Jjtv8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN0j6Jjtv8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN0j6Jjtv8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN0j6Jjtv8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN0j6Jjtv8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN0j6Jjtv8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN0j6Jjtv8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN0j6Jjtv8 .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-uN0j6Jjtv8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN0j6Jjtv8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN0j6Jjtv8 .dropdown-item:hover,
.cid-uN0j6Jjtv8 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uN0j6Jjtv8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN0j6Jjtv8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN0j6Jjtv8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uN0j6Jjtv8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN0j6Jjtv8 .dropdown-menu,
.cid-uN0j6Jjtv8 .navbar.opened {
  background: #ffffff !important;
}
.cid-uN0j6Jjtv8 .nav-item:focus,
.cid-uN0j6Jjtv8 .nav-link:focus {
  outline: none;
}
.cid-uN0j6Jjtv8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN0j6Jjtv8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN0j6Jjtv8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN0j6Jjtv8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN0j6Jjtv8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN0j6Jjtv8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN0j6Jjtv8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uN0j6Jjtv8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN0j6Jjtv8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN0j6Jjtv8 .dropdown-item.active,
.cid-uN0j6Jjtv8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uN0j6Jjtv8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN0j6Jjtv8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN0j6Jjtv8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN0j6Jjtv8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uN0j6Jjtv8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN0j6Jjtv8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN0j6Jjtv8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN0j6Jjtv8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN0j6Jjtv8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN0j6Jjtv8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN0j6Jjtv8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN0j6Jjtv8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0j6Jjtv8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN0j6Jjtv8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN0j6Jjtv8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0j6Jjtv8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN0j6Jjtv8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN0j6Jjtv8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN0j6Jjtv8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uN0j6Jjtv8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN0j6Jjtv8 .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-uN0j6Jjtv8 .navbar {
    height: 70px;
  }
  .cid-uN0j6Jjtv8 .navbar.opened {
    height: auto;
  }
  .cid-uN0j6Jjtv8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2F29VzdNh {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-v2F29VzdNh .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2F29VzdNh .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2F29VzdNh .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2F29VzdNh .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2F29VzdNh .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2F29VzdNh .mbr-text {
  color: #606060;
}
.cid-v2F29VzdNh .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2F29VzdNh .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2F29VzdNh .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2F29VzdNh .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2F29VzdNh .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2F29VzdNh .mbr-section-subtitle,
.cid-v2F29VzdNh .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2F29VzdNh .badge,
.cid-v2F29VzdNh .badge_wrap,
.cid-v2F29VzdNh .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2F29VzdNh .main-title,
.cid-v2F29VzdNh .mbr-section-btn {
  color: #404040;
}
.cid-uN0jhn6nnU {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uN0jhn6nnU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0jhn6nnU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0jhn6nnU .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uN0jhn6nnU .panel-group {
  border: none;
}
.cid-uN0jhn6nnU .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uN0jhn6nnU .panel-body,
.cid-uN0jhn6nnU .card-header {
  padding: 1rem 0;
}
.cid-uN0jhn6nnU .panel-title-edit {
  color: #000000;
}
.cid-uN0jhn6nnU .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uN0jhn6nnU H3 {
  text-align: left;
}
.cid-uN0jsOswYD {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uN0jsOswYD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN0jsOswYD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN0jsOswYD .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uN0jsOswYD .panel-group {
  border: none;
}
.cid-uN0jsOswYD .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uN0jsOswYD .panel-body,
.cid-uN0jsOswYD .card-header {
  padding: 1rem 0;
}
.cid-uN0jsOswYD .panel-title-edit {
  color: #000000;
}
.cid-uN0jsOswYD .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uN0jsOswYD H3 {
  text-align: left;
}
.cid-uN0j6LnJZ6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-uN0j6LnJZ6 .container {
  max-width: 1750px;
}
.cid-uN0j6LnJZ6 .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uN0j6LnJZ6 img {
  width: 150px;
  display: inline-block;
}
.cid-uN0j6LnJZ6 p {
  line-height: 1.8;
}
.cid-uN0j6LnJZ6 .mbr-text {
  color: #353535;
}
.cid-uN0j6LnJZ6 .mbr-section-title {
  color: #000000;
}
.cid-uMlyzbRyRq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uMlyzbRyRq .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uMlyzbRyRq .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uMlyzbRyRq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uMlyzbRyRq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uMlyzbRyRq .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uMlyzbRyRq .container {
    padding: 0 1rem;
  }
}
.cid-uMlyzbRyRq .menu-tite {
  background: #6592e6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uMlyzbRyRq .nav-link {
  position: relative;
}
.cid-uMlyzbRyRq .nav-link:hover {
  color: #47b5ed !important;
}
.cid-uMlyzbRyRq nav.navbar {
  position: fixed;
}
.cid-uMlyzbRyRq .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uMlyzbRyRq .navbar.opened {
  transition: all 0.3s;
}
.cid-uMlyzbRyRq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMlyzbRyRq .navbar .navbar-logo img {
  width: auto;
}
.cid-uMlyzbRyRq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMlyzbRyRq .navbar.collapsed {
  justify-content: center;
}
.cid-uMlyzbRyRq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMlyzbRyRq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMlyzbRyRq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uMlyzbRyRq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMlyzbRyRq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMlyzbRyRq .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-uMlyzbRyRq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMlyzbRyRq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMlyzbRyRq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMlyzbRyRq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMlyzbRyRq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMlyzbRyRq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMlyzbRyRq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMlyzbRyRq .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-uMlyzbRyRq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMlyzbRyRq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMlyzbRyRq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMlyzbRyRq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMlyzbRyRq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMlyzbRyRq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMlyzbRyRq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMlyzbRyRq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMlyzbRyRq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMlyzbRyRq .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-uMlyzbRyRq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMlyzbRyRq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMlyzbRyRq .dropdown-item:hover,
.cid-uMlyzbRyRq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uMlyzbRyRq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMlyzbRyRq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMlyzbRyRq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uMlyzbRyRq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMlyzbRyRq .dropdown-menu,
.cid-uMlyzbRyRq .navbar.opened {
  background: #ffffff !important;
}
.cid-uMlyzbRyRq .nav-item:focus,
.cid-uMlyzbRyRq .nav-link:focus {
  outline: none;
}
.cid-uMlyzbRyRq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMlyzbRyRq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMlyzbRyRq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMlyzbRyRq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMlyzbRyRq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMlyzbRyRq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMlyzbRyRq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMlyzbRyRq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMlyzbRyRq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMlyzbRyRq .dropdown-item.active,
.cid-uMlyzbRyRq .dropdown-item:active {
  background-color: transparent;
}
.cid-uMlyzbRyRq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMlyzbRyRq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMlyzbRyRq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMlyzbRyRq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uMlyzbRyRq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMlyzbRyRq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMlyzbRyRq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMlyzbRyRq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMlyzbRyRq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMlyzbRyRq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMlyzbRyRq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMlyzbRyRq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMlyzbRyRq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMlyzbRyRq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMlyzbRyRq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMlyzbRyRq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMlyzbRyRq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMlyzbRyRq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMlyzbRyRq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uMlyzbRyRq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMlyzbRyRq .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-uMlyzbRyRq .navbar {
    height: 70px;
  }
  .cid-uMlyzbRyRq .navbar.opened {
    height: auto;
  }
  .cid-uMlyzbRyRq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2F0xTsdY3 {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-v2F0xTsdY3 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #6592e6;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-v2F0xTsdY3 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v2F0xTsdY3 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-v2F0xTsdY3 .main-title.display-2 {
  line-height: 1.375;
}
.cid-v2F0xTsdY3 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v2F0xTsdY3 .mbr-text {
  color: #606060;
}
.cid-v2F0xTsdY3 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-v2F0xTsdY3 .mbr-section-btn {
  margin-top: 24px;
}
.cid-v2F0xTsdY3 .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-v2F0xTsdY3 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v2F0xTsdY3 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v2F0xTsdY3 .mbr-section-subtitle,
.cid-v2F0xTsdY3 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v2F0xTsdY3 .badge,
.cid-v2F0xTsdY3 .badge_wrap,
.cid-v2F0xTsdY3 .mbr-section-btn {
  color: #bbbbbb;
}
.cid-v2F0xTsdY3 .main-title,
.cid-v2F0xTsdY3 .mbr-section-btn {
  color: #404040;
}
.cid-uMlz2Pfxle {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMlz2Pfxle .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMlz2Pfxle .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMlz2Pfxle .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uMlz2Pfxle .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uMlz2Pfxle .container {
    padding: 0 26px;
  }
}
.cid-uMlz2Pfxle .row {
  justify-content: center;
}
.cid-uMlz2Pfxle .content-wrapper {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  background-color: #fafafa;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-uMlz2Pfxle .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uMlz2Pfxle .content-wrapper .content-wrap {
  width: 50%;
  padding-right: 45px;
  padding-right: 0;
  padding-left: 45px;
}
@media (max-width: 992px) {
  .cid-uMlz2Pfxle .content-wrapper .content-wrap {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uMlz2Pfxle .content-wrapper .content-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uMlz2Pfxle .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uMlz2Pfxle .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uMlz2Pfxle .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-uMlz2Pfxle .content-wrapper .content-wrap .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uMlz2Pfxle .content-wrapper .content-wrap .mbr-section-btn .btn {
  width: 70%;
}
@media (max-width: 1200px) {
  .cid-uMlz2Pfxle .content-wrapper .content-wrap .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMlz2Pfxle .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uMlz2Pfxle .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uMlz2Pfxle .content-wrapper .image-wrapper img {
  height: 685px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uMlz2Pfxle .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uMlz2Pfxle .mbr-section-title {
  color: #000000;
}
.cid-uMlz2Pfxle .mbr-section-subtitle {
  color: #000000;
}
.cid-uMlz2Pfxle .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uMlz2Pfxle .mbr-section-title,
.cid-uMlz2Pfxle .mbr-section-btn {
  text-align: left;
}
.cid-uMlB2czNr9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMlB2czNr9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMlB2czNr9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMlB2czNr9 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uMlB2czNr9 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uMlB2czNr9 .container {
    padding: 0 26px;
  }
}
.cid-uMlB2czNr9 .row {
  justify-content: center;
}
.cid-uMlB2czNr9 .content-wrapper {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  background-color: #fafafa;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-uMlB2czNr9 .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uMlB2czNr9 .content-wrapper .content-wrap {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uMlB2czNr9 .content-wrapper .content-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uMlB2czNr9 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uMlB2czNr9 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uMlB2czNr9 .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-uMlB2czNr9 .content-wrapper .content-wrap .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uMlB2czNr9 .content-wrapper .content-wrap .mbr-section-btn .btn {
  width: 70%;
}
@media (max-width: 1200px) {
  .cid-uMlB2czNr9 .content-wrapper .content-wrap .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uMlB2czNr9 .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uMlB2czNr9 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uMlB2czNr9 .content-wrapper .image-wrapper img {
  height: 685px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uMlB2czNr9 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uMlB2czNr9 .mbr-section-title {
  color: #000000;
}
.cid-uMlB2czNr9 .mbr-section-subtitle {
  color: #000000;
}
.cid-uMlB2czNr9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uMlB2czNr9 .mbr-section-title,
.cid-uMlB2czNr9 .mbr-section-btn {
  text-align: left;
}
.cid-v49M9T9kny {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v49M9T9kny .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49M9T9kny .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49M9T9kny .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-v49M9T9kny .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-v49M9T9kny .container {
    padding: 0 26px;
  }
}
.cid-v49M9T9kny .row {
  justify-content: center;
}
.cid-v49M9T9kny .content-wrapper {
  display: flex;
  align-items: center;
  padding: 100px 60px;
  background-color: #fafafa;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-v49M9T9kny .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-v49M9T9kny .content-wrapper .content-wrap {
  width: 50%;
  padding-right: 45px;
  padding-right: 0;
  padding-left: 45px;
}
@media (max-width: 992px) {
  .cid-v49M9T9kny .content-wrapper .content-wrap {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-v49M9T9kny .content-wrapper .content-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-v49M9T9kny .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v49M9T9kny .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-v49M9T9kny .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cid-v49M9T9kny .content-wrapper .content-wrap .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v49M9T9kny .content-wrapper .content-wrap .mbr-section-btn .btn {
  width: 70%;
}
@media (max-width: 1200px) {
  .cid-v49M9T9kny .content-wrapper .content-wrap .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-v49M9T9kny .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v49M9T9kny .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-v49M9T9kny .content-wrapper .image-wrapper img {
  height: 685px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v49M9T9kny .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-v49M9T9kny .mbr-section-title {
  color: #000000;
}
.cid-v49M9T9kny .mbr-section-subtitle {
  color: #000000;
}
.cid-v49M9T9kny .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v49M9T9kny .mbr-section-title,
.cid-v49M9T9kny .mbr-section-btn {
  text-align: left;
}
.cid-v3e2MwxjPT {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v3e2MwxjPT img,
.cid-v3e2MwxjPT .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-v3e2MwxjPT .item:focus,
.cid-v3e2MwxjPT span:focus {
  outline: none;
}
.cid-v3e2MwxjPT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3e2MwxjPT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3e2MwxjPT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3e2MwxjPT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3e2MwxjPT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3e2MwxjPT .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-v3e2MwxjPT .mbr-text,
.cid-v3e2MwxjPT .mbr-section-btn {
  text-align: left;
}
.cid-v3e2MwxjPT .item-title {
  text-align: left;
}
.cid-v3e2MwxjPT .item-subtitle {
  text-align: center;
}
.cid-v3e2MwxjPT .mbr-section-subtitle {
  text-align: left;
  color: #22a5e5;
}
.cid-v2F1dEJzIr {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2F1dEJzIr blockquote {
  border-color: #e43f3f;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-v2F1dEJzIr .mbr-section-title {
  color: #353535;
}
.cid-v2F1dEJzIr .mbr-text {
  color: #353535;
}
.cid-uMlyzdFxOR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f0f0;
}
.cid-uMlyzdFxOR .container {
  max-width: 1750px;
}
.cid-uMlyzdFxOR .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-uMlyzdFxOR img {
  width: 150px;
  display: inline-block;
}
.cid-uMlyzdFxOR p {
  line-height: 1.8;
}
.cid-uMlyzdFxOR .mbr-text {
  color: #353535;
}
.cid-uMlyzdFxOR .mbr-section-title {
  color: #000000;
}
