body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #767575 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #767575 !important;
  border-color: #767575 !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: #4a4a4a !important;
  border-color: #4a4a4a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4a4a4a !important;
  border-color: #4a4a4a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #767575;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #4a4a4a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #767575 !important;
  border-color: #767575 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #767575 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #434242 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #767575;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-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: #767575;
  border-color: #767575;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #767575;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b6b5b5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', 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: #767575 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #767575;
}
/* 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: #767575;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #767575;
}
.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: #767575;
  border-bottom-color: #767575;
}
.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: #767575 !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='%23767575' %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-tEyhMyQ7Cn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEyhMyQ7Cn nav.navbar {
  position: fixed;
}
.cid-tEyhMyQ7Cn .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-tEyhMyQ7Cn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEyhMyQ7Cn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEyhMyQ7Cn .dropdown-item:hover,
.cid-tEyhMyQ7Cn .dropdown-item:focus {
  background: #767575 !important;
  color: white !important;
}
.cid-tEyhMyQ7Cn .dropdown-item:hover span {
  color: white;
}
.cid-tEyhMyQ7Cn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEyhMyQ7Cn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEyhMyQ7Cn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEyhMyQ7Cn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEyhMyQ7Cn .nav-link {
  position: relative;
}
.cid-tEyhMyQ7Cn .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tEyhMyQ7Cn .container {
    flex-wrap: nowrap;
  }
}
.cid-tEyhMyQ7Cn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEyhMyQ7Cn .dropdown-menu,
.cid-tEyhMyQ7Cn .navbar.opened {
  background: #ffffff !important;
}
.cid-tEyhMyQ7Cn .nav-item:focus,
.cid-tEyhMyQ7Cn .nav-link:focus {
  outline: none;
}
.cid-tEyhMyQ7Cn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEyhMyQ7Cn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEyhMyQ7Cn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEyhMyQ7Cn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEyhMyQ7Cn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEyhMyQ7Cn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEyhMyQ7Cn .navbar {
  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-tEyhMyQ7Cn .navbar.opened {
  transition: all 0.3s;
}
.cid-tEyhMyQ7Cn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEyhMyQ7Cn .navbar .navbar-logo img {
  width: auto;
}
.cid-tEyhMyQ7Cn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEyhMyQ7Cn .navbar.collapsed {
  justify-content: center;
}
.cid-tEyhMyQ7Cn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEyhMyQ7Cn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEyhMyQ7Cn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tEyhMyQ7Cn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEyhMyQ7Cn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEyhMyQ7Cn .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-tEyhMyQ7Cn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEyhMyQ7Cn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEyhMyQ7Cn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEyhMyQ7Cn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEyhMyQ7Cn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEyhMyQ7Cn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEyhMyQ7Cn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEyhMyQ7Cn .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-tEyhMyQ7Cn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEyhMyQ7Cn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEyhMyQ7Cn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEyhMyQ7Cn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEyhMyQ7Cn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEyhMyQ7Cn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEyhMyQ7Cn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEyhMyQ7Cn .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEyhMyQ7Cn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEyhMyQ7Cn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEyhMyQ7Cn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEyhMyQ7Cn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEyhMyQ7Cn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEyhMyQ7Cn .dropdown-item.active,
.cid-tEyhMyQ7Cn .dropdown-item:active {
  background-color: transparent;
}
.cid-tEyhMyQ7Cn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEyhMyQ7Cn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEyhMyQ7Cn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEyhMyQ7Cn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tEyhMyQ7Cn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEyhMyQ7Cn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEyhMyQ7Cn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEyhMyQ7Cn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEyhMyQ7Cn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEyhMyQ7Cn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-tEyhMyQ7Cn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEyhMyQ7Cn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEyhMyQ7Cn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEyhMyQ7Cn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEyhMyQ7Cn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEyhMyQ7Cn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEyhMyQ7Cn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEyhMyQ7Cn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEyhMyQ7Cn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEyhMyQ7Cn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEyhMyQ7Cn .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-tEyhMyQ7Cn .navbar {
    height: 70px;
  }
  .cid-tEyhMyQ7Cn .navbar.opened {
    height: auto;
  }
  .cid-tEyhMyQ7Cn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujrpxH5iil {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-ujrpxH5iil .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujrpxH5iil .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ujrpxH5iil .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ujrpxH5iil .row {
  flex-direction: row-reverse;
}
.cid-ujrpxH5iil img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ujrpxH5iil .text-wrapper {
    padding: 2rem;
  }
}
.cid-ujrpxH5iil .mbr-text {
  color: #2299aa;
}
.cid-ujrpxH5iil .mbr-section-title {
  color: #2299aa;
}
.cid-tEyjq1gAT4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEyjq1gAT4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEyjq1gAT4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tEyjq1gAT4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEyjq1gAT4 .row {
  flex-direction: row-reverse;
}
.cid-tEyjq1gAT4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEyjq1gAT4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEyjq1gAT4 .mbr-text {
  color: #2299aa;
}
.cid-tEyjq1gAT4 .mbr-section-title {
  color: #0b405a;
}
.cid-tEBNIh7q2L {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ededed;
}
.cid-tEBNIh7q2L img,
.cid-tEBNIh7q2L .item-img {
  width: 100%;
}
.cid-tEBNIh7q2L .item:focus,
.cid-tEBNIh7q2L span:focus {
  outline: none;
}
.cid-tEBNIh7q2L .item-wrapper {
  position: relative;
}
.cid-tEBNIh7q2L .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tEBNIh7q2L .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tEBNIh7q2L .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEBNIh7q2L .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tEBNIh7q2L .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tEBNIh7q2L .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tEBNIh7q2L .mbr-section-title {
  color: #0b405a;
}
.cid-tEBNIh7q2L .mbr-text,
.cid-tEBNIh7q2L .mbr-section-btn {
  text-align: center;
  color: #0b405a;
}
.cid-tEBNIh7q2L .item-title {
  text-align: center;
}
.cid-tEBNIh7q2L .item-subtitle {
  text-align: left;
}
.cid-tEBNIh7q2L .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tEBNIh7q2L .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tEBNIh7q2L .embla__button--next,
.cid-tEBNIh7q2L .embla__button--prev {
  display: flex;
}
.cid-tEBNIh7q2L .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tEBNIh7q2L .embla__button {
    display: none;
  }
}
.cid-tEBNIh7q2L .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tEBNIh7q2L .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tEBNIh7q2L .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEBNIh7q2L .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tEBNIh7q2L .embla__button {
    top: auto;
  }
}
.cid-tEBNIh7q2L .embla {
  position: relative;
  width: 100%;
}
.cid-tEBNIh7q2L .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tEBNIh7q2L .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tEBNIh7q2L .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tEBNIh7q2L .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ujrEtXPTMU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ededed;
}
.cid-ujrEtXPTMU img,
.cid-ujrEtXPTMU .item-img {
  width: 100%;
}
.cid-ujrEtXPTMU .item:focus,
.cid-ujrEtXPTMU span:focus {
  outline: none;
}
.cid-ujrEtXPTMU .item-wrapper {
  position: relative;
}
.cid-ujrEtXPTMU .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujrEtXPTMU .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ujrEtXPTMU .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujrEtXPTMU .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ujrEtXPTMU .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ujrEtXPTMU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujrEtXPTMU .mbr-section-title {
  color: #ff9966;
}
.cid-ujrEtXPTMU .mbr-text,
.cid-ujrEtXPTMU .mbr-section-btn {
  text-align: center;
  color: #0b405a;
}
.cid-ujrEtXPTMU .item-title {
  text-align: center;
}
.cid-ujrEtXPTMU .item-subtitle {
  text-align: left;
}
.cid-ujrEtXPTMU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ujrEtXPTMU .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ujrEtXPTMU .embla__button--next,
.cid-ujrEtXPTMU .embla__button--prev {
  display: flex;
}
.cid-ujrEtXPTMU .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-ujrEtXPTMU .embla__button {
    display: none;
  }
}
.cid-ujrEtXPTMU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ujrEtXPTMU .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ujrEtXPTMU .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ujrEtXPTMU .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ujrEtXPTMU .embla__button {
    top: auto;
  }
}
.cid-ujrEtXPTMU .embla {
  position: relative;
  width: 100%;
}
.cid-ujrEtXPTMU .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ujrEtXPTMU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ujrEtXPTMU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ujrEtXPTMU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ujvZADT9vD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ededed;
}
.cid-ujvZADT9vD img,
.cid-ujvZADT9vD .item-img {
  width: 100%;
}
.cid-ujvZADT9vD .item:focus,
.cid-ujvZADT9vD span:focus {
  outline: none;
}
.cid-ujvZADT9vD .item-wrapper {
  position: relative;
}
.cid-ujvZADT9vD .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujvZADT9vD .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ujvZADT9vD .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujvZADT9vD .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ujvZADT9vD .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ujvZADT9vD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujvZADT9vD .mbr-section-title {
  color: #ff9966;
}
.cid-ujvZADT9vD .mbr-text,
.cid-ujvZADT9vD .mbr-section-btn {
  text-align: center;
  color: #0b405a;
}
.cid-ujvZADT9vD .item-title {
  text-align: center;
}
.cid-ujvZADT9vD .item-subtitle {
  text-align: left;
}
.cid-ujvZADT9vD .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ujvZADT9vD .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ujvZADT9vD .embla__button--next,
.cid-ujvZADT9vD .embla__button--prev {
  display: flex;
}
.cid-ujvZADT9vD .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-ujvZADT9vD .embla__button {
    display: none;
  }
}
.cid-ujvZADT9vD .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ujvZADT9vD .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ujvZADT9vD .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ujvZADT9vD .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ujvZADT9vD .embla__button {
    top: auto;
  }
}
.cid-ujvZADT9vD .embla {
  position: relative;
  width: 100%;
}
.cid-ujvZADT9vD .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ujvZADT9vD .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ujvZADT9vD .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ujvZADT9vD .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ujvZznVM2D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ededed;
}
.cid-ujvZznVM2D img,
.cid-ujvZznVM2D .item-img {
  width: 100%;
}
.cid-ujvZznVM2D .item:focus,
.cid-ujvZznVM2D span:focus {
  outline: none;
}
.cid-ujvZznVM2D .item-wrapper {
  position: relative;
}
.cid-ujvZznVM2D .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujvZznVM2D .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ujvZznVM2D .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujvZznVM2D .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ujvZznVM2D .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ujvZznVM2D .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujvZznVM2D .mbr-section-title {
  color: #ff9966;
}
.cid-ujvZznVM2D .mbr-text,
.cid-ujvZznVM2D .mbr-section-btn {
  text-align: center;
  color: #0b405a;
}
.cid-ujvZznVM2D .item-title {
  text-align: center;
}
.cid-ujvZznVM2D .item-subtitle {
  text-align: left;
}
.cid-ujvZznVM2D .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ujvZznVM2D .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ujvZznVM2D .embla__button--next,
.cid-ujvZznVM2D .embla__button--prev {
  display: flex;
}
.cid-ujvZznVM2D .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-ujvZznVM2D .embla__button {
    display: none;
  }
}
.cid-ujvZznVM2D .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ujvZznVM2D .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ujvZznVM2D .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ujvZznVM2D .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ujvZznVM2D .embla__button {
    top: auto;
  }
}
.cid-ujvZznVM2D .embla {
  position: relative;
  width: 100%;
}
.cid-ujvZznVM2D .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ujvZznVM2D .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ujvZznVM2D .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ujvZznVM2D .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ujyGOgTdCn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ujyGOgTdCn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujyGOgTdCn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ujyGOgTdCn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ujyGOgTdCn .row {
  flex-direction: row-reverse;
}
.cid-ujyGOgTdCn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ujyGOgTdCn .text-wrapper {
    padding: 2rem;
  }
}
.cid-ujyGOgTdCn .mbr-text {
  color: #2299aa;
}
.cid-ujyGOgTdCn .mbr-section-title {
  color: #2299aa;
}
.cid-ujvZzM2vE4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ededed;
}
.cid-ujvZzM2vE4 img,
.cid-ujvZzM2vE4 .item-img {
  width: 100%;
}
.cid-ujvZzM2vE4 .item:focus,
.cid-ujvZzM2vE4 span:focus {
  outline: none;
}
.cid-ujvZzM2vE4 .item-wrapper {
  position: relative;
}
.cid-ujvZzM2vE4 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujvZzM2vE4 .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ujvZzM2vE4 .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujvZzM2vE4 .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ujvZzM2vE4 .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ujvZzM2vE4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujvZzM2vE4 .mbr-section-title {
  color: #0b405a;
}
.cid-ujvZzM2vE4 .mbr-text,
.cid-ujvZzM2vE4 .mbr-section-btn {
  text-align: center;
  color: #0b405a;
}
.cid-ujvZzM2vE4 .item-title {
  text-align: center;
}
.cid-ujvZzM2vE4 .item-subtitle {
  text-align: left;
}
.cid-ujvZzM2vE4 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ujvZzM2vE4 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ujvZzM2vE4 .embla__button--next,
.cid-ujvZzM2vE4 .embla__button--prev {
  display: flex;
}
.cid-ujvZzM2vE4 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-ujvZzM2vE4 .embla__button {
    display: none;
  }
}
.cid-ujvZzM2vE4 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ujvZzM2vE4 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ujvZzM2vE4 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ujvZzM2vE4 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ujvZzM2vE4 .embla__button {
    top: auto;
  }
}
.cid-ujvZzM2vE4 .embla {
  position: relative;
  width: 100%;
}
.cid-ujvZzM2vE4 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ujvZzM2vE4 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ujvZzM2vE4 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ujvZzM2vE4 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tPSRpX2794 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tPSRpX2794 img,
.cid-tPSRpX2794 .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tPSRpX2794 .item:focus,
.cid-tPSRpX2794 span:focus {
  outline: none;
}
.cid-tPSRpX2794 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tPSRpX2794 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tPSRpX2794 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tPSRpX2794 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tPSRpX2794 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tPSRpX2794 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tPSRpX2794 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tPSRpX2794 .mbr-section-title {
  color: #2299aa;
}
.cid-tPSRpX2794 .mbr-text,
.cid-tPSRpX2794 .mbr-section-btn {
  text-align: left;
  color: #0b405a;
}
.cid-tPSRpX2794 .item-title {
  text-align: left;
  color: #2299aa;
}
.cid-tPSRpX2794 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tPSRBjjlUh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tPSRBjjlUh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPSRBjjlUh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPSRBjjlUh .nav-tabs .nav-item.open .nav-link:focus,
.cid-tPSRBjjlUh .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tPSRBjjlUh .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #2299aa;
}
@media (max-width: 767px) {
  .cid-tPSRBjjlUh .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tPSRBjjlUh .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tPSRBjjlUh .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tPSRBjjlUh .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tPSRBjjlUh .nav-link,
.cid-tPSRBjjlUh .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tPSRBjjlUh .nav-tabs .nav-link.active {
  color: #2299aa;
  border-bottom: 3px solid #2299aa;
}
.cid-tPSRBjjlUh H4 {
  text-align: center;
}
.cid-tPSRBjjlUh H3 {
  text-align: center;
  color: #2299aa;
}
.cid-tPSRBjjlUh P {
  color: #2299aa;
  text-align: center;
}
.cid-tPUAdRoT4o {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tPUAdRoT4o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPUAdRoT4o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPUAdRoT4o .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tPUAdRoT4o .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tPUAdRoT4o .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tPUAdRoT4o .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tPUAdRoT4o .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPUAdRoT4o .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tPUAdRoT4o .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tPUAdRoT4o .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tPUAdRoT4o .card-title {
  color: #0b405a;
}
.cid-tPUAdRoT4o .mbr-text,
.cid-tPUAdRoT4o .mbr-section-btn {
  color: #2299aa;
}
.cid-tEyEHOWT9X {
  background-image: url("../../../assets/images/cadright-global-resources-office-1242x810.jpg");
}
.cid-tEyEHOWT9X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEyEHOWT9X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEyEHOWT9X .mbr-text,
.cid-tEyEHOWT9X .mbr-section-btn {
  color: #232323;
}
.cid-tEyEHOWT9X .btn {
  width: 100%;
}
.cid-tEyEHOWT9X .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tEyEHOWT9X H1 {
  color: #fafafa;
}
.cid-tEyEHOWT9X P {
  color: #ffffff;
}
.cid-tEyApG3Feg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tEyApG3Feg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEyApG3Feg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEyApG3Feg .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEyApG3Feg .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEyApG3Feg .row {
    text-align: center;
  }
  .cid-tEyApG3Feg .row > div {
    margin: auto;
  }
  .cid-tEyApG3Feg .social-row {
    justify-content: center;
  }
}
.cid-tEyApG3Feg .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEyApG3Feg .list {
  list-style: none;
  padding-left: 0;
  color: #2299aa;
}
@media (max-width: 991px) {
  .cid-tEyApG3Feg .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEyApG3Feg .list {
    margin-bottom: 0rem;
  }
}
.cid-tEyApG3Feg .mbr-text {
  color: #0b405a;
}
.cid-tEyApG3Feg .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEyApG3Feg .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEyApG3Feg div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEyApG3Feg H5 {
  color: #0b405a;
}
.cid-tELA0iUezv {
  background-color: #fafafa;
}
.cid-tELA0iUezv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tELA0iUezv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tELA0iUezv .mbr-text,
.cid-tELA0iUezv .mbr-section-btn {
  color: #0b405a;
}
.cid-tQ04JjnnoQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQ04JjnnoQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ04JjnnoQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEAU6sTaIs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEAU6sTaIs nav.navbar {
  position: fixed;
}
.cid-tEAU6sTaIs .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-tEAU6sTaIs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEAU6sTaIs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEAU6sTaIs .dropdown-item:hover,
.cid-tEAU6sTaIs .dropdown-item:focus {
  background: #767575 !important;
  color: white !important;
}
.cid-tEAU6sTaIs .dropdown-item:hover span {
  color: white;
}
.cid-tEAU6sTaIs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEAU6sTaIs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEAU6sTaIs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEAU6sTaIs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEAU6sTaIs .nav-link {
  position: relative;
}
.cid-tEAU6sTaIs .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tEAU6sTaIs .container {
    flex-wrap: nowrap;
  }
}
.cid-tEAU6sTaIs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEAU6sTaIs .dropdown-menu,
.cid-tEAU6sTaIs .navbar.opened {
  background: #ffffff !important;
}
.cid-tEAU6sTaIs .nav-item:focus,
.cid-tEAU6sTaIs .nav-link:focus {
  outline: none;
}
.cid-tEAU6sTaIs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEAU6sTaIs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEAU6sTaIs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEAU6sTaIs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEAU6sTaIs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEAU6sTaIs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEAU6sTaIs .navbar {
  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-tEAU6sTaIs .navbar.opened {
  transition: all 0.3s;
}
.cid-tEAU6sTaIs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEAU6sTaIs .navbar .navbar-logo img {
  width: auto;
}
.cid-tEAU6sTaIs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEAU6sTaIs .navbar.collapsed {
  justify-content: center;
}
.cid-tEAU6sTaIs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEAU6sTaIs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEAU6sTaIs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tEAU6sTaIs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEAU6sTaIs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEAU6sTaIs .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-tEAU6sTaIs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEAU6sTaIs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEAU6sTaIs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEAU6sTaIs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEAU6sTaIs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEAU6sTaIs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEAU6sTaIs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEAU6sTaIs .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-tEAU6sTaIs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEAU6sTaIs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEAU6sTaIs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEAU6sTaIs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEAU6sTaIs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEAU6sTaIs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEAU6sTaIs .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEAU6sTaIs .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEAU6sTaIs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEAU6sTaIs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEAU6sTaIs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEAU6sTaIs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEAU6sTaIs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEAU6sTaIs .dropdown-item.active,
.cid-tEAU6sTaIs .dropdown-item:active {
  background-color: transparent;
}
.cid-tEAU6sTaIs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEAU6sTaIs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEAU6sTaIs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEAU6sTaIs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tEAU6sTaIs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEAU6sTaIs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEAU6sTaIs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEAU6sTaIs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEAU6sTaIs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEAU6sTaIs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-tEAU6sTaIs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEAU6sTaIs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEAU6sTaIs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEAU6sTaIs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEAU6sTaIs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEAU6sTaIs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEAU6sTaIs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEAU6sTaIs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEAU6sTaIs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEAU6sTaIs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEAU6sTaIs .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-tEAU6sTaIs .navbar {
    height: 70px;
  }
  .cid-tEAU6sTaIs .navbar.opened {
    height: auto;
  }
  .cid-tEAU6sTaIs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEAU6r31No {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tEAU6r31No .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEAU6r31No .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tEAU6r31No .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEAU6r31No .row {
  flex-direction: row-reverse;
}
.cid-tEAU6r31No img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEAU6r31No .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEAU6r31No .mbr-text {
  color: #2299aa;
}
.cid-tEAU6r31No .mbr-section-title {
  color: #0b405a;
}
.cid-tGVnO44bog {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tGVnO44bog img,
.cid-tGVnO44bog .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tGVnO44bog .item:focus,
.cid-tGVnO44bog span:focus {
  outline: none;
}
.cid-tGVnO44bog .item-wrapper {
  position: relative;
}
.cid-tGVnO44bog .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGVnO44bog .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tGVnO44bog .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGVnO44bog .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tGVnO44bog .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tGVnO44bog .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tGVnO44bog .mbr-section-title {
  color: #ff9966;
}
.cid-tGVnO44bog .mbr-text,
.cid-tGVnO44bog .mbr-section-btn {
  text-align: center;
  color: #0b405a;
}
.cid-tGVnO44bog .item-title {
  text-align: center;
}
.cid-tGVnO44bog .item-subtitle {
  text-align: left;
}
.cid-tGVnO44bog .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tGVnO44bog .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGVnO44bog .embla__button--next,
.cid-tGVnO44bog .embla__button--prev {
  display: flex;
}
.cid-tGVnO44bog .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tGVnO44bog .embla__button {
    display: none;
  }
}
.cid-tGVnO44bog .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGVnO44bog .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tGVnO44bog .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGVnO44bog .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGVnO44bog .embla__button {
    top: auto;
  }
}
.cid-tGVnO44bog .embla {
  position: relative;
  width: 100%;
}
.cid-tGVnO44bog .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGVnO44bog .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGVnO44bog .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGVnO44bog .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tEAU6vsDfT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEAU6vsDfT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEAU6vsDfT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEAU6vsDfT .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tEAU6vsDfT .card {
    margin-bottom: 2rem!important;
  }
  .cid-tEAU6vsDfT .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEAU6vsDfT .link-wrap {
    align-items: center;
  }
}
.cid-tEAU6vsDfT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEAU6vsDfT .card-title,
.cid-tEAU6vsDfT .card-box {
  color: #2299aa;
}
.cid-tGVnITeHKj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tGVnITeHKj img,
.cid-tGVnITeHKj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tGVnITeHKj .item:focus,
.cid-tGVnITeHKj span:focus {
  outline: none;
}
.cid-tGVnITeHKj .item-wrapper {
  position: relative;
}
.cid-tGVnITeHKj .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGVnITeHKj .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tGVnITeHKj .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGVnITeHKj .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tGVnITeHKj .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tGVnITeHKj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tGVnITeHKj .mbr-section-title {
  color: #ff9966;
}
.cid-tGVnITeHKj .mbr-text,
.cid-tGVnITeHKj .mbr-section-btn {
  text-align: center;
  color: #0b405a;
}
.cid-tGVnITeHKj .item-title {
  text-align: center;
}
.cid-tGVnITeHKj .item-subtitle {
  text-align: left;
}
.cid-tGVnITeHKj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tGVnITeHKj .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGVnITeHKj .embla__button--next,
.cid-tGVnITeHKj .embla__button--prev {
  display: flex;
}
.cid-tGVnITeHKj .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tGVnITeHKj .embla__button {
    display: none;
  }
}
.cid-tGVnITeHKj .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGVnITeHKj .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tGVnITeHKj .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGVnITeHKj .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGVnITeHKj .embla__button {
    top: auto;
  }
}
.cid-tGVnITeHKj .embla {
  position: relative;
  width: 100%;
}
.cid-tGVnITeHKj .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGVnITeHKj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGVnITeHKj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGVnITeHKj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tEAU6w6vzw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEAU6w6vzw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEAU6w6vzw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEAU6w6vzw .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tEAU6w6vzw .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tEAU6w6vzw .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tEAU6w6vzw .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEAU6w6vzw .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tEAU6w6vzw .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tEAU6w6vzw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEAU6w6vzw .card-title {
  color: #2299aa;
}
.cid-tEAU6w6vzw .mbr-text,
.cid-tEAU6w6vzw .mbr-section-btn {
  color: #2299aa;
}
.cid-tEAU6wAnsF {
  background-image: url("../../../assets/images/cadright-global-resources-office-1242x810.jpg");
}
.cid-tEAU6wAnsF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEAU6wAnsF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEAU6wAnsF .mbr-text,
.cid-tEAU6wAnsF .mbr-section-btn {
  color: #232323;
}
.cid-tEAU6wAnsF .btn {
  width: 100%;
}
.cid-tEAU6wAnsF .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tEAU6wAnsF H1 {
  color: #fafafa;
}
.cid-tEAU6wAnsF P {
  color: #ffffff;
}
.cid-tEAU6xdrYf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tEAU6xdrYf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEAU6xdrYf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEAU6xdrYf .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEAU6xdrYf .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEAU6xdrYf .row {
    text-align: center;
  }
  .cid-tEAU6xdrYf .row > div {
    margin: auto;
  }
  .cid-tEAU6xdrYf .social-row {
    justify-content: center;
  }
}
.cid-tEAU6xdrYf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEAU6xdrYf .list {
  list-style: none;
  padding-left: 0;
  color: #2299aa;
}
@media (max-width: 991px) {
  .cid-tEAU6xdrYf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEAU6xdrYf .list {
    margin-bottom: 0rem;
  }
}
.cid-tEAU6xdrYf .mbr-text {
  color: #0b405a;
}
.cid-tEAU6xdrYf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEAU6xdrYf .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEAU6xdrYf div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEAU6xdrYf H5 {
  color: #0b405a;
}
.cid-tGXK9yvIXK {
  background-color: #fafafa;
}
.cid-tGXK9yvIXK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXK9yvIXK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGXK9yvIXK .mbr-text,
.cid-tGXK9yvIXK .mbr-section-btn {
  color: #0b405a;
}
.cid-tQ03xWIJvT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQ03xWIJvT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ03xWIJvT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEBFdBQlCg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEBFdBQlCg nav.navbar {
  position: fixed;
}
.cid-tEBFdBQlCg .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-tEBFdBQlCg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEBFdBQlCg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEBFdBQlCg .dropdown-item:hover,
.cid-tEBFdBQlCg .dropdown-item:focus {
  background: #767575 !important;
  color: white !important;
}
.cid-tEBFdBQlCg .dropdown-item:hover span {
  color: white;
}
.cid-tEBFdBQlCg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEBFdBQlCg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEBFdBQlCg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEBFdBQlCg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEBFdBQlCg .nav-link {
  position: relative;
}
.cid-tEBFdBQlCg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tEBFdBQlCg .container {
    flex-wrap: nowrap;
  }
}
.cid-tEBFdBQlCg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEBFdBQlCg .dropdown-menu,
.cid-tEBFdBQlCg .navbar.opened {
  background: #ffffff !important;
}
.cid-tEBFdBQlCg .nav-item:focus,
.cid-tEBFdBQlCg .nav-link:focus {
  outline: none;
}
.cid-tEBFdBQlCg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEBFdBQlCg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEBFdBQlCg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEBFdBQlCg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEBFdBQlCg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEBFdBQlCg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEBFdBQlCg .navbar {
  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-tEBFdBQlCg .navbar.opened {
  transition: all 0.3s;
}
.cid-tEBFdBQlCg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEBFdBQlCg .navbar .navbar-logo img {
  width: auto;
}
.cid-tEBFdBQlCg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEBFdBQlCg .navbar.collapsed {
  justify-content: center;
}
.cid-tEBFdBQlCg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEBFdBQlCg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEBFdBQlCg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tEBFdBQlCg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEBFdBQlCg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEBFdBQlCg .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-tEBFdBQlCg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEBFdBQlCg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEBFdBQlCg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEBFdBQlCg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEBFdBQlCg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEBFdBQlCg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEBFdBQlCg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEBFdBQlCg .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-tEBFdBQlCg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEBFdBQlCg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEBFdBQlCg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEBFdBQlCg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEBFdBQlCg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEBFdBQlCg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEBFdBQlCg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEBFdBQlCg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEBFdBQlCg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEBFdBQlCg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEBFdBQlCg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEBFdBQlCg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEBFdBQlCg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEBFdBQlCg .dropdown-item.active,
.cid-tEBFdBQlCg .dropdown-item:active {
  background-color: transparent;
}
.cid-tEBFdBQlCg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEBFdBQlCg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEBFdBQlCg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEBFdBQlCg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tEBFdBQlCg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEBFdBQlCg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEBFdBQlCg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEBFdBQlCg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEBFdBQlCg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEBFdBQlCg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-tEBFdBQlCg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEBFdBQlCg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEBFdBQlCg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEBFdBQlCg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEBFdBQlCg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEBFdBQlCg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEBFdBQlCg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEBFdBQlCg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEBFdBQlCg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEBFdBQlCg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEBFdBQlCg .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-tEBFdBQlCg .navbar {
    height: 70px;
  }
  .cid-tEBFdBQlCg .navbar.opened {
    height: auto;
  }
  .cid-tEBFdBQlCg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEBFIci8f1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tEBFIci8f1 .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.4;
}
.cid-tEBFIci8f1 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tEBFIci8f1 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tEBFIci8f1 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tEBFIci8f1 .mbr-section-title {
  color: #0b405a;
}
.cid-tEBFdEupJd {
  background-image: url("../../../assets/images/cadright-global-resources-office-980x639.jpg");
}
.cid-tEBFdEupJd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEBFdEupJd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEBFdEupJd .mbr-text,
.cid-tEBFdEupJd .mbr-section-btn {
  color: #232323;
}
.cid-tEBFdEupJd .btn {
  width: 100%;
}
.cid-tEBFdEupJd .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tEBFdEupJd H1 {
  color: #fafafa;
}
.cid-tEBFdEupJd P {
  color: #ffffff;
}
.cid-tEBFdEXVRB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tEBFdEXVRB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEBFdEXVRB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEBFdEXVRB .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEBFdEXVRB .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEBFdEXVRB .row {
    text-align: center;
  }
  .cid-tEBFdEXVRB .row > div {
    margin: auto;
  }
  .cid-tEBFdEXVRB .social-row {
    justify-content: center;
  }
}
.cid-tEBFdEXVRB .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEBFdEXVRB .list {
  list-style: none;
  padding-left: 0;
  color: #2299aa;
}
@media (max-width: 991px) {
  .cid-tEBFdEXVRB .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEBFdEXVRB .list {
    margin-bottom: 0rem;
  }
}
.cid-tEBFdEXVRB .mbr-text {
  color: #0b405a;
}
.cid-tEBFdEXVRB .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEBFdEXVRB .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEBFdEXVRB div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEBFdEXVRB H5 {
  color: #0b405a;
}
.cid-tGXKdMRq4R {
  background-color: #fafafa;
}
.cid-tGXKdMRq4R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXKdMRq4R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGXKdMRq4R .mbr-text,
.cid-tGXKdMRq4R .mbr-section-btn {
  color: #0b405a;
}
.cid-tQ03D8SCQ5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQ03D8SCQ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ03D8SCQ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEBFgfOBYN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEBFgfOBYN nav.navbar {
  position: fixed;
}
.cid-tEBFgfOBYN .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-tEBFgfOBYN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEBFgfOBYN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEBFgfOBYN .dropdown-item:hover,
.cid-tEBFgfOBYN .dropdown-item:focus {
  background: #767575 !important;
  color: white !important;
}
.cid-tEBFgfOBYN .dropdown-item:hover span {
  color: white;
}
.cid-tEBFgfOBYN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEBFgfOBYN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEBFgfOBYN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEBFgfOBYN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEBFgfOBYN .nav-link {
  position: relative;
}
.cid-tEBFgfOBYN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tEBFgfOBYN .container {
    flex-wrap: nowrap;
  }
}
.cid-tEBFgfOBYN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEBFgfOBYN .dropdown-menu,
.cid-tEBFgfOBYN .navbar.opened {
  background: #ffffff !important;
}
.cid-tEBFgfOBYN .nav-item:focus,
.cid-tEBFgfOBYN .nav-link:focus {
  outline: none;
}
.cid-tEBFgfOBYN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEBFgfOBYN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEBFgfOBYN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEBFgfOBYN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEBFgfOBYN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEBFgfOBYN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEBFgfOBYN .navbar {
  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-tEBFgfOBYN .navbar.opened {
  transition: all 0.3s;
}
.cid-tEBFgfOBYN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEBFgfOBYN .navbar .navbar-logo img {
  width: auto;
}
.cid-tEBFgfOBYN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEBFgfOBYN .navbar.collapsed {
  justify-content: center;
}
.cid-tEBFgfOBYN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEBFgfOBYN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEBFgfOBYN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tEBFgfOBYN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEBFgfOBYN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEBFgfOBYN .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-tEBFgfOBYN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEBFgfOBYN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEBFgfOBYN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEBFgfOBYN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEBFgfOBYN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEBFgfOBYN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEBFgfOBYN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEBFgfOBYN .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-tEBFgfOBYN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEBFgfOBYN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEBFgfOBYN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEBFgfOBYN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEBFgfOBYN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEBFgfOBYN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEBFgfOBYN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEBFgfOBYN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEBFgfOBYN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEBFgfOBYN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEBFgfOBYN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEBFgfOBYN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEBFgfOBYN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEBFgfOBYN .dropdown-item.active,
.cid-tEBFgfOBYN .dropdown-item:active {
  background-color: transparent;
}
.cid-tEBFgfOBYN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEBFgfOBYN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEBFgfOBYN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEBFgfOBYN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tEBFgfOBYN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEBFgfOBYN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEBFgfOBYN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEBFgfOBYN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEBFgfOBYN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEBFgfOBYN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-tEBFgfOBYN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEBFgfOBYN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEBFgfOBYN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEBFgfOBYN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEBFgfOBYN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEBFgfOBYN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEBFgfOBYN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEBFgfOBYN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEBFgfOBYN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEBFgfOBYN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEBFgfOBYN .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-tEBFgfOBYN .navbar {
    height: 70px;
  }
  .cid-tEBFgfOBYN .navbar.opened {
    height: auto;
  }
  .cid-tEBFgfOBYN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEFKruH70T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ececec;
}
.cid-tEFKruH70T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEFKruH70T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tEFKruH70T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEFKruH70T img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEFKruH70T .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEFKruH70T .mbr-text {
  color: #2299aa;
}
.cid-tEFKruH70T .mbr-section-title {
  color: #2299aa;
}
.cid-tEBFgeCQYB {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tEBFgeCQYB img,
.cid-tEBFgeCQYB .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tEBFgeCQYB .item:focus,
.cid-tEBFgeCQYB span:focus {
  outline: none;
}
.cid-tEBFgeCQYB .item-wrapper {
  position: relative;
}
.cid-tEBFgeCQYB .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tEBFgeCQYB .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEBFgeCQYB .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tEBFgeCQYB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tEBFgeCQYB .mbr-section-title {
  color: #2299aa;
}
.cid-tEBFgeCQYB .mbr-text,
.cid-tEBFgeCQYB .mbr-section-btn {
  text-align: center;
  color: #2299aa;
}
.cid-tEBFgeCQYB .item-title {
  text-align: center;
  color: #2299aa;
}
.cid-tEBFgeCQYB .item-subtitle {
  text-align: left;
}
.cid-tEBFgeCQYB .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tEBFgeCQYB .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tEBFgeCQYB .embla__button--next,
.cid-tEBFgeCQYB .embla__button--prev {
  display: flex;
}
.cid-tEBFgeCQYB .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tEBFgeCQYB .embla__button {
    display: none;
  }
}
.cid-tEBFgeCQYB .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tEBFgeCQYB .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tEBFgeCQYB .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEBFgeCQYB .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tEBFgeCQYB .embla__button {
    top: auto;
  }
}
.cid-tEBFgeCQYB .embla {
  position: relative;
  width: 100%;
}
.cid-tEBFgeCQYB .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tEBFgeCQYB .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tEBFgeCQYB .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tEBFgeCQYB .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tEBFgeCQYB .mbr-section-subtitle {
  color: #2299aa;
}
.cid-tEBFgfpVSY {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tEBFgfpVSY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEBFgfpVSY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tEBFgfpVSY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEBFgfpVSY .row {
  flex-direction: row-reverse;
}
.cid-tEBFgfpVSY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEBFgfpVSY .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEBFgfpVSY .mbr-text {
  color: #2299aa;
}
.cid-tEBFgfpVSY .mbr-section-title {
  color: #2299aa;
}
.cid-tEFM6Ek7ki {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tEFM6Ek7ki .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.4;
}
.cid-tEFM6Ek7ki form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tEFM6Ek7ki form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tEFM6Ek7ki form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tEFM6Ek7ki .mbr-section-title {
  color: #0b405a;
}
.cid-tEFPBB2bJZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tEFPBB2bJZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEFPBB2bJZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEFPBB2bJZ .card-wrapper {
  background: #0b405a;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tEFPBB2bJZ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tEFPBB2bJZ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEFPBB2bJZ .card-wrapper {
    padding: 4rem;
  }
}
.cid-tEFPBB2bJZ .mbr-text,
.cid-tEFPBB2bJZ .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tEFPBB2bJZ .card-title,
.cid-tEFPBB2bJZ .card-box {
  text-align: left;
}
.cid-tEBFghyI28 {
  background-image: url("../../../assets/images/cadright-global-resources-office-980x639.jpg");
}
.cid-tEBFghyI28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEBFghyI28 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEBFghyI28 .mbr-text,
.cid-tEBFghyI28 .mbr-section-btn {
  color: #232323;
}
.cid-tEBFghyI28 .btn {
  width: 100%;
}
.cid-tEBFghyI28 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tEBFghyI28 H1 {
  color: #fafafa;
}
.cid-tEBFghyI28 P {
  color: #ffffff;
}
.cid-tEBFgi3eb8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tEBFgi3eb8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEBFgi3eb8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEBFgi3eb8 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEBFgi3eb8 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEBFgi3eb8 .row {
    text-align: center;
  }
  .cid-tEBFgi3eb8 .row > div {
    margin: auto;
  }
  .cid-tEBFgi3eb8 .social-row {
    justify-content: center;
  }
}
.cid-tEBFgi3eb8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEBFgi3eb8 .list {
  list-style: none;
  padding-left: 0;
  color: #2299aa;
}
@media (max-width: 991px) {
  .cid-tEBFgi3eb8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEBFgi3eb8 .list {
    margin-bottom: 0rem;
  }
}
.cid-tEBFgi3eb8 .mbr-text {
  color: #0b405a;
}
.cid-tEBFgi3eb8 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEBFgi3eb8 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEBFgi3eb8 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEBFgi3eb8 H5 {
  color: #0b405a;
}
.cid-tGXKhHu5tk {
  background-color: #fafafa;
}
.cid-tGXKhHu5tk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXKhHu5tk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGXKhHu5tk .mbr-text,
.cid-tGXKhHu5tk .mbr-section-btn {
  color: #0b405a;
}
.cid-tQ03HueyMt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQ03HueyMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ03HueyMt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEFZFJV639 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEFZFJV639 nav.navbar {
  position: fixed;
}
.cid-tEFZFJV639 .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-tEFZFJV639 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEFZFJV639 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEFZFJV639 .dropdown-item:hover,
.cid-tEFZFJV639 .dropdown-item:focus {
  background: #767575 !important;
  color: white !important;
}
.cid-tEFZFJV639 .dropdown-item:hover span {
  color: white;
}
.cid-tEFZFJV639 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEFZFJV639 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEFZFJV639 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEFZFJV639 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEFZFJV639 .nav-link {
  position: relative;
}
.cid-tEFZFJV639 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tEFZFJV639 .container {
    flex-wrap: nowrap;
  }
}
.cid-tEFZFJV639 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEFZFJV639 .dropdown-menu,
.cid-tEFZFJV639 .navbar.opened {
  background: #ffffff !important;
}
.cid-tEFZFJV639 .nav-item:focus,
.cid-tEFZFJV639 .nav-link:focus {
  outline: none;
}
.cid-tEFZFJV639 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEFZFJV639 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEFZFJV639 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEFZFJV639 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEFZFJV639 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEFZFJV639 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEFZFJV639 .navbar {
  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-tEFZFJV639 .navbar.opened {
  transition: all 0.3s;
}
.cid-tEFZFJV639 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEFZFJV639 .navbar .navbar-logo img {
  width: auto;
}
.cid-tEFZFJV639 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEFZFJV639 .navbar.collapsed {
  justify-content: center;
}
.cid-tEFZFJV639 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEFZFJV639 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEFZFJV639 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tEFZFJV639 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEFZFJV639 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEFZFJV639 .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-tEFZFJV639 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEFZFJV639 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEFZFJV639 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEFZFJV639 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEFZFJV639 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEFZFJV639 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEFZFJV639 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEFZFJV639 .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-tEFZFJV639 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEFZFJV639 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEFZFJV639 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEFZFJV639 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEFZFJV639 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEFZFJV639 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEFZFJV639 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEFZFJV639 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEFZFJV639 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEFZFJV639 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEFZFJV639 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEFZFJV639 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEFZFJV639 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEFZFJV639 .dropdown-item.active,
.cid-tEFZFJV639 .dropdown-item:active {
  background-color: transparent;
}
.cid-tEFZFJV639 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEFZFJV639 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEFZFJV639 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEFZFJV639 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tEFZFJV639 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEFZFJV639 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEFZFJV639 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEFZFJV639 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEFZFJV639 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEFZFJV639 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-tEFZFJV639 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEFZFJV639 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEFZFJV639 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEFZFJV639 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEFZFJV639 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEFZFJV639 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEFZFJV639 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEFZFJV639 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEFZFJV639 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEFZFJV639 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEFZFJV639 .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-tEFZFJV639 .navbar {
    height: 70px;
  }
  .cid-tEFZFJV639 .navbar.opened {
    height: auto;
  }
  .cid-tEFZFJV639 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEFZFIPHHI {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tEFZFIPHHI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEFZFIPHHI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tEFZFIPHHI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEFZFIPHHI .row {
  flex-direction: row-reverse;
}
.cid-tEFZFIPHHI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEFZFIPHHI .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEFZFIPHHI .mbr-text {
  color: #2299aa;
}
.cid-tEFZFIPHHI .mbr-section-title {
  color: #2299aa;
}
.cid-tEFZFJdvKq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tEFZFJdvKq .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.4;
}
.cid-tEFZFJdvKq form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tEFZFJdvKq form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tEFZFJdvKq form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tEFZFJdvKq .mbr-section-title {
  color: #0b405a;
}
.cid-tEFZFJdvKq .mbr-section-subtitle {
  color: #2299aa;
}
.cid-tEFZFKtvD0 {
  background-image: url("../../../assets/images/cadright-global-resources-ai-2000x1333.jpg");
}
.cid-tEFZFKtvD0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEFZFKtvD0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEFZFKtvD0 .mbr-text,
.cid-tEFZFKtvD0 .mbr-section-btn {
  color: #232323;
}
.cid-tEFZFKtvD0 .btn {
  width: 100%;
}
.cid-tEFZFKtvD0 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tEFZFKtvD0 H1 {
  color: #fafafa;
}
.cid-tEFZFKtvD0 P {
  color: #ffffff;
}
.cid-tEFZFKT8nQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tEFZFKT8nQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEFZFKT8nQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEFZFKT8nQ .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEFZFKT8nQ .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEFZFKT8nQ .row {
    text-align: center;
  }
  .cid-tEFZFKT8nQ .row > div {
    margin: auto;
  }
  .cid-tEFZFKT8nQ .social-row {
    justify-content: center;
  }
}
.cid-tEFZFKT8nQ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEFZFKT8nQ .list {
  list-style: none;
  padding-left: 0;
  color: #2299aa;
}
@media (max-width: 991px) {
  .cid-tEFZFKT8nQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEFZFKT8nQ .list {
    margin-bottom: 0rem;
  }
}
.cid-tEFZFKT8nQ .mbr-text {
  color: #0b405a;
}
.cid-tEFZFKT8nQ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEFZFKT8nQ .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEFZFKT8nQ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEFZFKT8nQ H5 {
  color: #0b405a;
}
.cid-tGXKk9oejM {
  background-color: #fafafa;
}
.cid-tGXKk9oejM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXKk9oejM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGXKk9oejM .mbr-text,
.cid-tGXKk9oejM .mbr-section-btn {
  color: #0b405a;
}
.cid-tQ03FgT8ta {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQ03FgT8ta .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ03FgT8ta .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGuMhO07BQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tGuMhO07BQ nav.navbar {
  position: fixed;
}
.cid-tGuMhO07BQ .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-tGuMhO07BQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGuMhO07BQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGuMhO07BQ .dropdown-item:hover,
.cid-tGuMhO07BQ .dropdown-item:focus {
  background: #767575 !important;
  color: white !important;
}
.cid-tGuMhO07BQ .dropdown-item:hover span {
  color: white;
}
.cid-tGuMhO07BQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGuMhO07BQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGuMhO07BQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGuMhO07BQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGuMhO07BQ .nav-link {
  position: relative;
}
.cid-tGuMhO07BQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tGuMhO07BQ .container {
    flex-wrap: nowrap;
  }
}
.cid-tGuMhO07BQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGuMhO07BQ .dropdown-menu,
.cid-tGuMhO07BQ .navbar.opened {
  background: #ffffff !important;
}
.cid-tGuMhO07BQ .nav-item:focus,
.cid-tGuMhO07BQ .nav-link:focus {
  outline: none;
}
.cid-tGuMhO07BQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGuMhO07BQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGuMhO07BQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGuMhO07BQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGuMhO07BQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGuMhO07BQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGuMhO07BQ .navbar {
  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-tGuMhO07BQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tGuMhO07BQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGuMhO07BQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tGuMhO07BQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGuMhO07BQ .navbar.collapsed {
  justify-content: center;
}
.cid-tGuMhO07BQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGuMhO07BQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGuMhO07BQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tGuMhO07BQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGuMhO07BQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGuMhO07BQ .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-tGuMhO07BQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGuMhO07BQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGuMhO07BQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGuMhO07BQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGuMhO07BQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGuMhO07BQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGuMhO07BQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGuMhO07BQ .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-tGuMhO07BQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGuMhO07BQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGuMhO07BQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGuMhO07BQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGuMhO07BQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGuMhO07BQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tGuMhO07BQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tGuMhO07BQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGuMhO07BQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGuMhO07BQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGuMhO07BQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGuMhO07BQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGuMhO07BQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGuMhO07BQ .dropdown-item.active,
.cid-tGuMhO07BQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tGuMhO07BQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGuMhO07BQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGuMhO07BQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGuMhO07BQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tGuMhO07BQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGuMhO07BQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGuMhO07BQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGuMhO07BQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGuMhO07BQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGuMhO07BQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-tGuMhO07BQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGuMhO07BQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGuMhO07BQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGuMhO07BQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGuMhO07BQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGuMhO07BQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGuMhO07BQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGuMhO07BQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGuMhO07BQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tGuMhO07BQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGuMhO07BQ .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-tGuMhO07BQ .navbar {
    height: 70px;
  }
  .cid-tGuMhO07BQ .navbar.opened {
    height: auto;
  }
  .cid-tGuMhO07BQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGuMhMefbt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGuMhMefbt img,
.cid-tGuMhMefbt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tGuMhMefbt .item:focus,
.cid-tGuMhMefbt span:focus {
  outline: none;
}
.cid-tGuMhMefbt .item-wrapper {
  position: relative;
}
.cid-tGuMhMefbt .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGuMhMefbt .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGuMhMefbt .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tGuMhMefbt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tGuMhMefbt .mbr-section-title {
  color: #2299aa;
}
.cid-tGuMhMefbt .mbr-text,
.cid-tGuMhMefbt .mbr-section-btn {
  text-align: center;
}
.cid-tGuMhMefbt .item-title {
  text-align: center;
  color: #2299aa;
}
.cid-tGuMhMefbt .item-subtitle {
  text-align: left;
}
.cid-tGuMhMefbt .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tGuMhMefbt .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGuMhMefbt .embla__button--next,
.cid-tGuMhMefbt .embla__button--prev {
  display: flex;
}
.cid-tGuMhMefbt .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tGuMhMefbt .embla__button {
    display: none;
  }
}
.cid-tGuMhMefbt .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGuMhMefbt .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tGuMhMefbt .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGuMhMefbt .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGuMhMefbt .embla__button {
    top: auto;
  }
}
.cid-tGuMhMefbt .embla {
  position: relative;
  width: 100%;
}
.cid-tGuMhMefbt .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGuMhMefbt .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGuMhMefbt .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGuMhMefbt .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGHnoc3yCr {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGHnoc3yCr img,
.cid-tGHnoc3yCr .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tGHnoc3yCr .item:focus,
.cid-tGHnoc3yCr span:focus {
  outline: none;
}
.cid-tGHnoc3yCr .item-wrapper {
  position: relative;
}
.cid-tGHnoc3yCr .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGHnoc3yCr .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGHnoc3yCr .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tGHnoc3yCr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tGHnoc3yCr .mbr-section-title {
  color: #232323;
}
.cid-tGHnoc3yCr .mbr-text,
.cid-tGHnoc3yCr .mbr-section-btn {
  text-align: center;
}
.cid-tGHnoc3yCr .item-title {
  text-align: center;
  color: #2299aa;
}
.cid-tGHnoc3yCr .item-subtitle {
  text-align: left;
}
.cid-tGHnoc3yCr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tGHnoc3yCr .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGHnoc3yCr .embla__button--next,
.cid-tGHnoc3yCr .embla__button--prev {
  display: flex;
}
.cid-tGHnoc3yCr .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tGHnoc3yCr .embla__button {
    display: none;
  }
}
.cid-tGHnoc3yCr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGHnoc3yCr .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tGHnoc3yCr .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGHnoc3yCr .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGHnoc3yCr .embla__button {
    top: auto;
  }
}
.cid-tGHnoc3yCr .embla {
  position: relative;
  width: 100%;
}
.cid-tGHnoc3yCr .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGHnoc3yCr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGHnoc3yCr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGHnoc3yCr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGuMhQ1fEn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGuMhQ1fEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGuMhQ1fEn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGuMhQ1fEn .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tGuMhQ1fEn .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGuMhQ1fEn .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tGuMhQ1fEn .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGuMhQ1fEn .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tGuMhQ1fEn .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tGuMhQ1fEn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tGuMhQ1fEn .card-title {
  color: #2299aa;
}
.cid-tGuMhQ1fEn .mbr-text,
.cid-tGuMhQ1fEn .mbr-section-btn {
  color: #2299aa;
}
.cid-tGWySzSGTv {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGWySzSGTv img,
.cid-tGWySzSGTv .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tGWySzSGTv .item:focus,
.cid-tGWySzSGTv span:focus {
  outline: none;
}
.cid-tGWySzSGTv .item-wrapper {
  position: relative;
}
.cid-tGWySzSGTv .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGWySzSGTv .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGWySzSGTv .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tGWySzSGTv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tGWySzSGTv .mbr-section-title {
  color: #232323;
}
.cid-tGWySzSGTv .mbr-text,
.cid-tGWySzSGTv .mbr-section-btn {
  text-align: center;
}
.cid-tGWySzSGTv .item-title {
  text-align: center;
  color: #2299aa;
}
.cid-tGWySzSGTv .item-subtitle {
  text-align: left;
}
.cid-tGWySzSGTv .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tGWySzSGTv .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGWySzSGTv .embla__button--next,
.cid-tGWySzSGTv .embla__button--prev {
  display: flex;
}
.cid-tGWySzSGTv .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tGWySzSGTv .embla__button {
    display: none;
  }
}
.cid-tGWySzSGTv .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGWySzSGTv .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tGWySzSGTv .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGWySzSGTv .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGWySzSGTv .embla__button {
    top: auto;
  }
}
.cid-tGWySzSGTv .embla {
  position: relative;
  width: 100%;
}
.cid-tGWySzSGTv .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGWySzSGTv .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGWySzSGTv .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGWySzSGTv .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGuMhQIayJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tGuMhQIayJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGuMhQIayJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGuMhQIayJ .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGuMhQIayJ .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tGuMhQIayJ .row {
    text-align: center;
  }
  .cid-tGuMhQIayJ .row > div {
    margin: auto;
  }
  .cid-tGuMhQIayJ .social-row {
    justify-content: center;
  }
}
.cid-tGuMhQIayJ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGuMhQIayJ .list {
  list-style: none;
  padding-left: 0;
  color: #2299aa;
}
@media (max-width: 991px) {
  .cid-tGuMhQIayJ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tGuMhQIayJ .list {
    margin-bottom: 0rem;
  }
}
.cid-tGuMhQIayJ .mbr-text {
  color: #0b405a;
}
.cid-tGuMhQIayJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tGuMhQIayJ .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tGuMhQIayJ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tGuMhQIayJ H5 {
  color: #0b405a;
}
.cid-tGXK57zwqe {
  background-color: #fafafa;
}
.cid-tGXK57zwqe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXK57zwqe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGXK57zwqe .mbr-text,
.cid-tGXK57zwqe .mbr-section-btn {
  color: #0b405a;
}
.cid-tQ03uIh3wu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQ03uIh3wu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ03uIh3wu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEG2UDL0TZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEG2UDL0TZ nav.navbar {
  position: fixed;
}
.cid-tEG2UDL0TZ .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-tEG2UDL0TZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEG2UDL0TZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEG2UDL0TZ .dropdown-item:hover,
.cid-tEG2UDL0TZ .dropdown-item:focus {
  background: #767575 !important;
  color: white !important;
}
.cid-tEG2UDL0TZ .dropdown-item:hover span {
  color: white;
}
.cid-tEG2UDL0TZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEG2UDL0TZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEG2UDL0TZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEG2UDL0TZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEG2UDL0TZ .nav-link {
  position: relative;
}
.cid-tEG2UDL0TZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tEG2UDL0TZ .container {
    flex-wrap: nowrap;
  }
}
.cid-tEG2UDL0TZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEG2UDL0TZ .dropdown-menu,
.cid-tEG2UDL0TZ .navbar.opened {
  background: #ffffff !important;
}
.cid-tEG2UDL0TZ .nav-item:focus,
.cid-tEG2UDL0TZ .nav-link:focus {
  outline: none;
}
.cid-tEG2UDL0TZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEG2UDL0TZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEG2UDL0TZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEG2UDL0TZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEG2UDL0TZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEG2UDL0TZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEG2UDL0TZ .navbar {
  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-tEG2UDL0TZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tEG2UDL0TZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEG2UDL0TZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tEG2UDL0TZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEG2UDL0TZ .navbar.collapsed {
  justify-content: center;
}
.cid-tEG2UDL0TZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEG2UDL0TZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEG2UDL0TZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tEG2UDL0TZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEG2UDL0TZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEG2UDL0TZ .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-tEG2UDL0TZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEG2UDL0TZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEG2UDL0TZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEG2UDL0TZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEG2UDL0TZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEG2UDL0TZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEG2UDL0TZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEG2UDL0TZ .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-tEG2UDL0TZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEG2UDL0TZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEG2UDL0TZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEG2UDL0TZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEG2UDL0TZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEG2UDL0TZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEG2UDL0TZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEG2UDL0TZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEG2UDL0TZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEG2UDL0TZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEG2UDL0TZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEG2UDL0TZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEG2UDL0TZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEG2UDL0TZ .dropdown-item.active,
.cid-tEG2UDL0TZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tEG2UDL0TZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEG2UDL0TZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEG2UDL0TZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEG2UDL0TZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tEG2UDL0TZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEG2UDL0TZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEG2UDL0TZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEG2UDL0TZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEG2UDL0TZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEG2UDL0TZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-tEG2UDL0TZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEG2UDL0TZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEG2UDL0TZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEG2UDL0TZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEG2UDL0TZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEG2UDL0TZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEG2UDL0TZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEG2UDL0TZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEG2UDL0TZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEG2UDL0TZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEG2UDL0TZ .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-tEG2UDL0TZ .navbar {
    height: 70px;
  }
  .cid-tEG2UDL0TZ .navbar.opened {
    height: auto;
  }
  .cid-tEG2UDL0TZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEG2UEq8DL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEG2UEq8DL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEG2UEq8DL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEG2UEq8DL .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tEG2UEq8DL .card {
    margin-bottom: 2rem!important;
  }
  .cid-tEG2UEq8DL .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEG2UEq8DL .link-wrap {
    align-items: center;
  }
}
.cid-tEG2UEq8DL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEG2UEq8DL .card-title,
.cid-tEG2UEq8DL .card-box {
  color: #2299aa;
  text-align: right;
}
.cid-tEG2UEq8DL .mbr-text,
.cid-tEG2UEq8DL .link-wrap,
.cid-tEG2UEq8DL .mbr-section-btn {
  text-align: right;
}
.cid-tGX52MPLfV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tGX52MPLfV img,
.cid-tGX52MPLfV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tGX52MPLfV .item:focus,
.cid-tGX52MPLfV span:focus {
  outline: none;
}
.cid-tGX52MPLfV .item-wrapper {
  position: relative;
}
.cid-tGX52MPLfV .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGX52MPLfV .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tGX52MPLfV .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGX52MPLfV .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tGX52MPLfV .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tGX52MPLfV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tGX52MPLfV .mbr-section-title {
  color: #ff9966;
}
.cid-tGX52MPLfV .mbr-text,
.cid-tGX52MPLfV .mbr-section-btn {
  text-align: center;
  color: #0b405a;
}
.cid-tGX52MPLfV .item-title {
  text-align: center;
}
.cid-tGX52MPLfV .item-subtitle {
  text-align: left;
}
.cid-tGX52MPLfV .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tGX52MPLfV .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGX52MPLfV .embla__button--next,
.cid-tGX52MPLfV .embla__button--prev {
  display: flex;
}
.cid-tGX52MPLfV .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tGX52MPLfV .embla__button {
    display: none;
  }
}
.cid-tGX52MPLfV .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGX52MPLfV .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tGX52MPLfV .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGX52MPLfV .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGX52MPLfV .embla__button {
    top: auto;
  }
}
.cid-tGX52MPLfV .embla {
  position: relative;
  width: 100%;
}
.cid-tGX52MPLfV .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGX52MPLfV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGX52MPLfV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGX52MPLfV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGX54ZzNr1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tGX54ZzNr1 img,
.cid-tGX54ZzNr1 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tGX54ZzNr1 .item:focus,
.cid-tGX54ZzNr1 span:focus {
  outline: none;
}
.cid-tGX54ZzNr1 .item-wrapper {
  position: relative;
}
.cid-tGX54ZzNr1 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGX54ZzNr1 .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tGX54ZzNr1 .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGX54ZzNr1 .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tGX54ZzNr1 .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tGX54ZzNr1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tGX54ZzNr1 .mbr-section-title {
  color: #ff9966;
}
.cid-tGX54ZzNr1 .mbr-text,
.cid-tGX54ZzNr1 .mbr-section-btn {
  text-align: center;
  color: #0b405a;
}
.cid-tGX54ZzNr1 .item-title {
  text-align: center;
}
.cid-tGX54ZzNr1 .item-subtitle {
  text-align: left;
}
.cid-tGX54ZzNr1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tGX54ZzNr1 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGX54ZzNr1 .embla__button--next,
.cid-tGX54ZzNr1 .embla__button--prev {
  display: flex;
}
.cid-tGX54ZzNr1 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tGX54ZzNr1 .embla__button {
    display: none;
  }
}
.cid-tGX54ZzNr1 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGX54ZzNr1 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tGX54ZzNr1 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGX54ZzNr1 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGX54ZzNr1 .embla__button {
    top: auto;
  }
}
.cid-tGX54ZzNr1 .embla {
  position: relative;
  width: 100%;
}
.cid-tGX54ZzNr1 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGX54ZzNr1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGX54ZzNr1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGX54ZzNr1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tEG2UEV4eU {
  background-image: url("../../../assets/images/cadright-global-resources-office-1242x810.jpg");
}
.cid-tEG2UEV4eU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEG2UEV4eU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEG2UEV4eU .mbr-text,
.cid-tEG2UEV4eU .mbr-section-btn {
  color: #232323;
}
.cid-tEG2UEV4eU .btn {
  width: 100%;
}
.cid-tEG2UEV4eU .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tEG2UEV4eU H1 {
  color: #fafafa;
}
.cid-tEG2UEV4eU P {
  color: #ffffff;
}
.cid-tEG2UFaUAQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tEG2UFaUAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEG2UFaUAQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEG2UFaUAQ .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tEG2UFaUAQ .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tEG2UFaUAQ .row {
    text-align: center;
  }
  .cid-tEG2UFaUAQ .row > div {
    margin: auto;
  }
  .cid-tEG2UFaUAQ .social-row {
    justify-content: center;
  }
}
.cid-tEG2UFaUAQ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tEG2UFaUAQ .list {
  list-style: none;
  padding-left: 0;
  color: #2299aa;
}
@media (max-width: 991px) {
  .cid-tEG2UFaUAQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEG2UFaUAQ .list {
    margin-bottom: 0rem;
  }
}
.cid-tEG2UFaUAQ .mbr-text {
  color: #0b405a;
}
.cid-tEG2UFaUAQ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tEG2UFaUAQ .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tEG2UFaUAQ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tEG2UFaUAQ H5 {
  color: #0b405a;
}
.cid-tGXKbQKo1Y {
  background-color: #fafafa;
}
.cid-tGXKbQKo1Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXKbQKo1Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGXKbQKo1Y .mbr-text,
.cid-tGXKbQKo1Y .mbr-section-btn {
  color: #0b405a;
}
.cid-tQ03BhGHAk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQ03BhGHAk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ03BhGHAk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
