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: 'Jost', 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: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', 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.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e6c63b !important;
}
.bg-success {
  background-color: #e6c63b !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #2299aa !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !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: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !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: #e6c63b !important;
  border-color: #e6c63b !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: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #2299aa !important;
  border-color: #2299aa !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !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: #e6c63b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b39617 !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: #e6c63b !important;
  border-color: #e6c63b !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: #e6c63b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #b39617 !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: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2299aa;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #145862 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #2299aa !important;
  border-color: #2299aa !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: #e6c63b !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #e6c63b !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #2299aa !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: #a68b15 !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: #a68b15 !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: #114c55 !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: #e6c63b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #2299aa;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e6c63b;
  border-color: #e6c63b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e6c63b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdfbf0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fdfbf0;
}
.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: #6ad2e1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e6c63b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #e6c63b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e6c63b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e6c63b;
}
.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: #e6c63b;
  border-bottom-color: #e6c63b;
}
.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: #000000 !important;
  background-color: #e6c63b !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='%23e6c63b' %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-tjUoOqOZnK {
  z-index: 1000;
  width: 100%;
}
.cid-tjUoOqOZnK nav.navbar {
  position: fixed;
}
.cid-tjUoOqOZnK .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-tjUoOqOZnK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tjUoOqOZnK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjUoOqOZnK .dropdown-item:hover,
.cid-tjUoOqOZnK .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tjUoOqOZnK .dropdown-item:hover span {
  color: white;
}
.cid-tjUoOqOZnK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tjUoOqOZnK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tjUoOqOZnK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tjUoOqOZnK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjUoOqOZnK .nav-link {
  position: relative;
}
.cid-tjUoOqOZnK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tjUoOqOZnK .container {
    flex-wrap: nowrap;
  }
}
.cid-tjUoOqOZnK .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tjUoOqOZnK .dropdown-menu,
.cid-tjUoOqOZnK .navbar.opened {
  background: #000000 !important;
}
.cid-tjUoOqOZnK .nav-item:focus,
.cid-tjUoOqOZnK .nav-link:focus {
  outline: none;
}
.cid-tjUoOqOZnK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tjUoOqOZnK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjUoOqOZnK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tjUoOqOZnK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tjUoOqOZnK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tjUoOqOZnK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjUoOqOZnK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tjUoOqOZnK .navbar.opened {
  transition: all 0.3s;
}
.cid-tjUoOqOZnK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tjUoOqOZnK .navbar .navbar-logo img {
  width: auto;
}
.cid-tjUoOqOZnK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tjUoOqOZnK .navbar.collapsed {
  justify-content: center;
}
.cid-tjUoOqOZnK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tjUoOqOZnK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tjUoOqOZnK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tjUoOqOZnK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjUoOqOZnK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjUoOqOZnK .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-tjUoOqOZnK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tjUoOqOZnK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tjUoOqOZnK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tjUoOqOZnK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjUoOqOZnK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjUoOqOZnK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjUoOqOZnK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjUoOqOZnK .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-tjUoOqOZnK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tjUoOqOZnK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tjUoOqOZnK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tjUoOqOZnK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjUoOqOZnK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tjUoOqOZnK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tjUoOqOZnK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tjUoOqOZnK .navbar.navbar-short {
  min-height: 60px;
}
.cid-tjUoOqOZnK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tjUoOqOZnK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tjUoOqOZnK .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-tjUoOqOZnK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjUoOqOZnK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjUoOqOZnK .dropdown-item.active,
.cid-tjUoOqOZnK .dropdown-item:active {
  background-color: transparent;
}
.cid-tjUoOqOZnK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjUoOqOZnK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjUoOqOZnK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjUoOqOZnK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tjUoOqOZnK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjUoOqOZnK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjUoOqOZnK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tjUoOqOZnK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tjUoOqOZnK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tjUoOqOZnK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tjUoOqOZnK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjUoOqOZnK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjUoOqOZnK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjUoOqOZnK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjUoOqOZnK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjUoOqOZnK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjUoOqOZnK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjUoOqOZnK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjUoOqOZnK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tjUoOqOZnK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tjUoOqOZnK .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-tjUoOqOZnK .navbar {
    height: 70px;
  }
  .cid-tjUoOqOZnK .navbar.opened {
    height: auto;
  }
  .cid-tjUoOqOZnK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9SKNf8eH5 {
  background-image: url("../../../assets/images/exthink-dark-logo.jpg");
}
.cid-v9SKNf8eH5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9SKNf8eH5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6eFORGnL4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-v6eFORGnL4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6eFORGnL4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6eFORGnL4 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v6eFORGnL4 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v6eFORGnL4 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #e6c63b;
}
.cid-v6eFORGnL4 .panel-body,
.cid-v6eFORGnL4 .card-header {
  padding: 1rem 0;
}
.cid-v6eFORGnL4 .panel-title-edit {
  color: #ffffff;
}
.cid-v6eFORGnL4 H3 {
  color: #ffffff;
}
.cid-v6eFORGnL4 .panel-text {
  color: #ffffff;
}
.cid-tjUvcCUosN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tjUvcCUosN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjUvcCUosN .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-tjUvcCUosN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tjUvcCUosN .row {
  flex-direction: row-reverse;
}
.cid-tjUvcCUosN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tjUvcCUosN .text-wrapper {
    padding: 2rem;
  }
}
.cid-tjUvcCUosN .mbr-description {
  color: #075763;
}
.cid-tjUvcCUosN .mbr-section-title {
  color: #075763;
}
.cid-tjXtc4VwDK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tjXtc4VwDK .line {
  background-color: #9518bc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tjXkFLZGzi {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #075763;
}
.cid-tjXkFLZGzi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjXkFLZGzi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjXkFLZGzi .nav-tabs .nav-item.open .nav-link:focus,
.cid-tjXkFLZGzi .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tjXkFLZGzi .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #4479d9;
}
@media (max-width: 767px) {
  .cid-tjXkFLZGzi .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tjXkFLZGzi .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tjXkFLZGzi .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tjXkFLZGzi .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tjXkFLZGzi .nav-link,
.cid-tjXkFLZGzi .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tjXkFLZGzi .nav-tabs .nav-link.active {
  color: #4479d9;
  border-bottom: 3px solid #4479d9;
}
.cid-tjXkFLZGzi H4 {
  text-align: center;
}
.cid-tjXkFLZGzi H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tjXkFLZGzi P {
  color: #ffffff;
}
.cid-tjUzIa5jHr {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #075763;
}
.cid-tjUzIa5jHr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjUzIa5jHr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjUzIa5jHr .mbr-section-title {
  color: #ffffff;
}
.cid-tjUsu0mphs {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/exthink-billboard.jpg");
}
.cid-tjUsu0mphs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjUsu0mphs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tjUsu0mphs .container {
    max-width: 1400px;
  }
}
.cid-tjUsu0mphs .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #075763;
  margin-bottom: 2rem;
}
.cid-tjUsu0mphs .card-wrapper {
  margin-top: 3rem;
}
.cid-tjUsu0mphs .row {
  justify-content: center;
}
.cid-tjUsu0mphs .card-text {
  color: #000000;
}
.cid-tjXkH5d18B {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tjXkH5d18B .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjXkH5d18B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjXkH5d18B .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tjXkH5d18B .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tjXkH5d18B .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #e6c63b;
}
.cid-tjXkH5d18B .panel-body,
.cid-tjXkH5d18B .card-header {
  padding: 1rem 0;
}
.cid-tjXkH5d18B .panel-title-edit {
  color: #000000;
}
.cid-tjXLOpzEi9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1-11.jpg");
}
.cid-tjXLOpzEi9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjXLOpzEi9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjXLOpzEi9 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tjXLOpzEi9 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #075763;
}
@media (max-width: 991px) {
  .cid-tjXLOpzEi9 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tjXLOpzEi9 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tjXLOpzEi9 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-tjXLOpzEi9 .card-title {
  color: #ffffff;
}
.cid-tjXLOpzEi9 P {
  color: #e6c63b;
}
.cid-tjY0mhZUux {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #075763;
}
.cid-tjY0mhZUux .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjY0mhZUux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjY0mhZUux .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tjY0mhZUux .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tjY0mhZUux .row {
    text-align: center;
  }
  .cid-tjY0mhZUux .row > div {
    margin: auto;
  }
  .cid-tjY0mhZUux .social-row {
    justify-content: center;
  }
}
.cid-tjY0mhZUux .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tjY0mhZUux .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tjY0mhZUux .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tjY0mhZUux .list {
    margin-bottom: 0rem;
  }
}
.cid-tjY0mhZUux .mbr-text {
  color: #fafafa;
}
.cid-tjY0mhZUux .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-tjY0mhZUux .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tjY0mhZUux div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tjY0mhZUux H5 {
  color: #9518bc;
}
.cid-tjY0mhZUux .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-tjY5i3hn1v {
  z-index: 1000;
  width: 100%;
}
.cid-tjY5i3hn1v nav.navbar {
  position: fixed;
}
.cid-tjY5i3hn1v .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-tjY5i3hn1v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tjY5i3hn1v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjY5i3hn1v .dropdown-item:hover,
.cid-tjY5i3hn1v .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tjY5i3hn1v .dropdown-item:hover span {
  color: white;
}
.cid-tjY5i3hn1v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tjY5i3hn1v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tjY5i3hn1v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tjY5i3hn1v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjY5i3hn1v .nav-link {
  position: relative;
}
.cid-tjY5i3hn1v .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tjY5i3hn1v .container {
    flex-wrap: nowrap;
  }
}
.cid-tjY5i3hn1v .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tjY5i3hn1v .dropdown-menu,
.cid-tjY5i3hn1v .navbar.opened {
  background: #000000 !important;
}
.cid-tjY5i3hn1v .nav-item:focus,
.cid-tjY5i3hn1v .nav-link:focus {
  outline: none;
}
.cid-tjY5i3hn1v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tjY5i3hn1v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjY5i3hn1v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tjY5i3hn1v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tjY5i3hn1v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tjY5i3hn1v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjY5i3hn1v .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tjY5i3hn1v .navbar.opened {
  transition: all 0.3s;
}
.cid-tjY5i3hn1v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tjY5i3hn1v .navbar .navbar-logo img {
  width: auto;
}
.cid-tjY5i3hn1v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tjY5i3hn1v .navbar.collapsed {
  justify-content: center;
}
.cid-tjY5i3hn1v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tjY5i3hn1v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tjY5i3hn1v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tjY5i3hn1v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjY5i3hn1v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjY5i3hn1v .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-tjY5i3hn1v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tjY5i3hn1v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tjY5i3hn1v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tjY5i3hn1v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjY5i3hn1v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjY5i3hn1v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjY5i3hn1v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjY5i3hn1v .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-tjY5i3hn1v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tjY5i3hn1v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tjY5i3hn1v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tjY5i3hn1v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjY5i3hn1v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tjY5i3hn1v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tjY5i3hn1v .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tjY5i3hn1v .navbar.navbar-short {
  min-height: 60px;
}
.cid-tjY5i3hn1v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tjY5i3hn1v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tjY5i3hn1v .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-tjY5i3hn1v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjY5i3hn1v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjY5i3hn1v .dropdown-item.active,
.cid-tjY5i3hn1v .dropdown-item:active {
  background-color: transparent;
}
.cid-tjY5i3hn1v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjY5i3hn1v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjY5i3hn1v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjY5i3hn1v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tjY5i3hn1v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjY5i3hn1v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjY5i3hn1v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tjY5i3hn1v .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tjY5i3hn1v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tjY5i3hn1v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tjY5i3hn1v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjY5i3hn1v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjY5i3hn1v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjY5i3hn1v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjY5i3hn1v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjY5i3hn1v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjY5i3hn1v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjY5i3hn1v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjY5i3hn1v .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tjY5i3hn1v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tjY5i3hn1v .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-tjY5i3hn1v .navbar {
    height: 70px;
  }
  .cid-tjY5i3hn1v .navbar.opened {
    height: auto;
  }
  .cid-tjY5i3hn1v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjY5i4zqF8 {
  background-image: url("../../../assets/images/1-21.jpg");
}
.cid-tjY5i4zqF8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjY5i4zqF8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjY5i6uQiL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tjY5i6uQiL .line {
  background-color: #9518bc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tjY5i6uQiL .mbr-text {
  text-align: left;
}
.cid-tjY5i7LXPM {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #075763;
}
.cid-tjY5i7LXPM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjY5i7LXPM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjY5i7LXPM .mbr-section-title {
  color: #ffffff;
}
.cid-tjY5i9cids {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tjY5i9cids .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjY5i9cids .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjY5i9cids .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tjY5i9cids .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tjY5i9cids .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #e6c63b;
}
.cid-tjY5i9cids .panel-body,
.cid-tjY5i9cids .card-header {
  padding: 1rem 0;
}
.cid-tjY5i9cids .panel-title-edit {
  color: #000000;
}
.cid-tjY5iacN3y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1-15.jpg");
}
.cid-tjY5iacN3y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjY5iacN3y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjY5iacN3y .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tjY5iacN3y .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #075763;
}
@media (max-width: 991px) {
  .cid-tjY5iacN3y .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tjY5iacN3y .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tjY5iacN3y .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-tjY5iacN3y .card-title {
  color: #ffffff;
}
.cid-tjY5iacN3y P {
  color: #e6c63b;
}
.cid-tjY5ichBnX {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #075763;
}
.cid-tjY5ichBnX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjY5ichBnX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjY5ichBnX .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tjY5ichBnX .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tjY5ichBnX .row {
    text-align: center;
  }
  .cid-tjY5ichBnX .row > div {
    margin: auto;
  }
  .cid-tjY5ichBnX .social-row {
    justify-content: center;
  }
}
.cid-tjY5ichBnX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tjY5ichBnX .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tjY5ichBnX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tjY5ichBnX .list {
    margin-bottom: 0rem;
  }
}
.cid-tjY5ichBnX .mbr-text {
  color: #fafafa;
}
.cid-tjY5ichBnX .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-tjY5ichBnX .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tjY5ichBnX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tjY5ichBnX H5 {
  color: #9518bc;
}
.cid-tjY5ichBnX .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-tk5M9JnJKM {
  z-index: 1000;
  width: 100%;
}
.cid-tk5M9JnJKM nav.navbar {
  position: fixed;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tk5M9JnJKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tk5M9JnJKM .dropdown-item:hover,
.cid-tk5M9JnJKM .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tk5M9JnJKM .dropdown-item:hover span {
  color: white;
}
.cid-tk5M9JnJKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tk5M9JnJKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tk5M9JnJKM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tk5M9JnJKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tk5M9JnJKM .nav-link {
  position: relative;
}
.cid-tk5M9JnJKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tk5M9JnJKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tk5M9JnJKM .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tk5M9JnJKM .dropdown-menu,
.cid-tk5M9JnJKM .navbar.opened {
  background: #000000 !important;
}
.cid-tk5M9JnJKM .nav-item:focus,
.cid-tk5M9JnJKM .nav-link:focus {
  outline: none;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tk5M9JnJKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tk5M9JnJKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tk5M9JnJKM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tk5M9JnJKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tk5M9JnJKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tk5M9JnJKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tk5M9JnJKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tk5M9JnJKM .navbar.collapsed {
  justify-content: center;
}
.cid-tk5M9JnJKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tk5M9JnJKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tk5M9JnJKM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tk5M9JnJKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tk5M9JnJKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tk5M9JnJKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tk5M9JnJKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tk5M9JnJKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tk5M9JnJKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tk5M9JnJKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tk5M9JnJKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tk5M9JnJKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tk5M9JnJKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tk5M9JnJKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tk5M9JnJKM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tk5M9JnJKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tk5M9JnJKM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tk5M9JnJKM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tk5M9JnJKM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tk5M9JnJKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tk5M9JnJKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tk5M9JnJKM .dropdown-item.active,
.cid-tk5M9JnJKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tk5M9JnJKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tk5M9JnJKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tk5M9JnJKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tk5M9JnJKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tk5M9JnJKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tk5M9JnJKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tk5M9JnJKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tk5M9JnJKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tk5M9JnJKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tk5M9JnJKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar {
    height: 70px;
  }
  .cid-tk5M9JnJKM .navbar.opened {
    height: auto;
  }
  .cid-tk5M9JnJKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tk5M9Khsvf {
  background-image: url("../../../assets/images/1-11.jpg");
}
.cid-tk5M9Khsvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk5M9Khsvf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk5NHggw43 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tk5NHggw43 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk5NHggw43 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk5NHggw43 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tk5NHggw43 .mbr-section-title,
.cid-tk5NHggw43 .mbr-section-subtitle {
  text-align: center;
}
.cid-tk5NHggw43 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tk5NHggw43 .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tk5NHggw43 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tk5NHggw43 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tk5NHggw43 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tk5NHggw43 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tk5NHggw43 .mbr-text {
  color: #000000;
}
.cid-tk5M9Lgq2C {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #075763;
}
.cid-tk5M9Lgq2C .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk5M9Lgq2C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk5M9Lgq2C .mbr-section-title {
  color: #ffffff;
}
.cid-tDftMUEAE7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDftMUEAE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDftMUEAE7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDftMUEAE7 .mbr-section-subtitle {
  text-align: left;
}
.cid-tk5M9MOwwT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1-15.jpg");
}
.cid-tk5M9MOwwT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk5M9MOwwT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk5M9MOwwT .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tk5M9MOwwT .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #075763;
}
@media (max-width: 991px) {
  .cid-tk5M9MOwwT .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tk5M9MOwwT .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tk5M9MOwwT .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-tk5M9MOwwT .card-title {
  color: #ffffff;
}
.cid-tk5M9MOwwT P {
  color: #e6c63b;
}
.cid-tk5M9Ocwe8 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #075763;
}
.cid-tk5M9Ocwe8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk5M9Ocwe8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk5M9Ocwe8 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tk5M9Ocwe8 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tk5M9Ocwe8 .row {
    text-align: center;
  }
  .cid-tk5M9Ocwe8 .row > div {
    margin: auto;
  }
  .cid-tk5M9Ocwe8 .social-row {
    justify-content: center;
  }
}
.cid-tk5M9Ocwe8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tk5M9Ocwe8 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tk5M9Ocwe8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tk5M9Ocwe8 .list {
    margin-bottom: 0rem;
  }
}
.cid-tk5M9Ocwe8 .mbr-text {
  color: #fafafa;
}
.cid-tk5M9Ocwe8 .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-tk5M9Ocwe8 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tk5M9Ocwe8 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tk5M9Ocwe8 H5 {
  color: #9518bc;
}
.cid-tk5M9Ocwe8 .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-tk9foc8T9l {
  z-index: 1000;
  width: 100%;
}
.cid-tk9foc8T9l nav.navbar {
  position: fixed;
}
.cid-tk9foc8T9l .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-tk9foc8T9l .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tk9foc8T9l .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tk9foc8T9l .dropdown-item:hover,
.cid-tk9foc8T9l .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tk9foc8T9l .dropdown-item:hover span {
  color: white;
}
.cid-tk9foc8T9l .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tk9foc8T9l .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tk9foc8T9l .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tk9foc8T9l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tk9foc8T9l .nav-link {
  position: relative;
}
.cid-tk9foc8T9l .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tk9foc8T9l .container {
    flex-wrap: nowrap;
  }
}
.cid-tk9foc8T9l .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tk9foc8T9l .dropdown-menu,
.cid-tk9foc8T9l .navbar.opened {
  background: #000000 !important;
}
.cid-tk9foc8T9l .nav-item:focus,
.cid-tk9foc8T9l .nav-link:focus {
  outline: none;
}
.cid-tk9foc8T9l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tk9foc8T9l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tk9foc8T9l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tk9foc8T9l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tk9foc8T9l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tk9foc8T9l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tk9foc8T9l .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tk9foc8T9l .navbar.opened {
  transition: all 0.3s;
}
.cid-tk9foc8T9l .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tk9foc8T9l .navbar .navbar-logo img {
  width: auto;
}
.cid-tk9foc8T9l .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tk9foc8T9l .navbar.collapsed {
  justify-content: center;
}
.cid-tk9foc8T9l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tk9foc8T9l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tk9foc8T9l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tk9foc8T9l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tk9foc8T9l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tk9foc8T9l .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-tk9foc8T9l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tk9foc8T9l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tk9foc8T9l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tk9foc8T9l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tk9foc8T9l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tk9foc8T9l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tk9foc8T9l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tk9foc8T9l .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-tk9foc8T9l .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tk9foc8T9l .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tk9foc8T9l .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tk9foc8T9l .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tk9foc8T9l .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tk9foc8T9l .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tk9foc8T9l .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tk9foc8T9l .navbar.navbar-short {
  min-height: 60px;
}
.cid-tk9foc8T9l .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tk9foc8T9l .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tk9foc8T9l .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-tk9foc8T9l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tk9foc8T9l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tk9foc8T9l .dropdown-item.active,
.cid-tk9foc8T9l .dropdown-item:active {
  background-color: transparent;
}
.cid-tk9foc8T9l .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tk9foc8T9l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tk9foc8T9l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tk9foc8T9l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tk9foc8T9l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tk9foc8T9l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tk9foc8T9l ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tk9foc8T9l .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tk9foc8T9l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tk9foc8T9l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tk9foc8T9l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tk9foc8T9l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tk9foc8T9l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tk9foc8T9l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tk9foc8T9l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tk9foc8T9l nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tk9foc8T9l nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tk9foc8T9l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tk9foc8T9l .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tk9foc8T9l a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tk9foc8T9l .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-tk9foc8T9l .navbar {
    height: 70px;
  }
  .cid-tk9foc8T9l .navbar.opened {
    height: auto;
  }
  .cid-tk9foc8T9l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tk9fodyQuC {
  background-image: url("../../../assets/images/1-6.jpg");
}
.cid-tk9fodyQuC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk9fodyQuC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk9fodyQuC .mbr-section-title {
  color: #000000;
}
.cid-tk9fodyQuC .mbr-text,
.cid-tk9fodyQuC .mbr-section-btn {
  color: #000000;
}
.cid-tk9gtzIpIP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tk9gtzIpIP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk9gtzIpIP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk9gtzIpIP .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tk9gtzIpIP .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tk9gtzIpIP .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tk9gtzIpIP .card-wrapper {
    padding: 4rem;
  }
}
.cid-tk9gtzIpIP .mbr-text,
.cid-tk9gtzIpIP .mbr-section-btn {
  color: #000000;
}
.cid-tk9gtzIpIP .card-title,
.cid-tk9gtzIpIP .card-box {
  text-align: left;
  color: #000000;
}
.cid-tk9fogooOs {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #075763;
}
.cid-tk9fogooOs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk9fogooOs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk9fogooOs .mbr-section-title {
  color: #ffffff;
}
.cid-tk9folaT38 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tk9folaT38 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk9folaT38 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk9folaT38 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tk9folaT38 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #075763;
}
@media (max-width: 991px) {
  .cid-tk9folaT38 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tk9folaT38 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tk9folaT38 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-tk9folaT38 .card-title {
  color: #ffffff;
}
.cid-tk9folaT38 P {
  color: #e6c63b;
}
.cid-tk9fon6c4s {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #075763;
}
.cid-tk9fon6c4s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk9fon6c4s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk9fon6c4s .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tk9fon6c4s .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tk9fon6c4s .row {
    text-align: center;
  }
  .cid-tk9fon6c4s .row > div {
    margin: auto;
  }
  .cid-tk9fon6c4s .social-row {
    justify-content: center;
  }
}
.cid-tk9fon6c4s .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tk9fon6c4s .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tk9fon6c4s .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tk9fon6c4s .list {
    margin-bottom: 0rem;
  }
}
.cid-tk9fon6c4s .mbr-text {
  color: #fafafa;
}
.cid-tk9fon6c4s .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-tk9fon6c4s .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tk9fon6c4s div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tk9fon6c4s H5 {
  color: #9518bc;
}
.cid-tk9fon6c4s .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-tD9HYIHKfS {
  z-index: 1000;
  width: 100%;
}
.cid-tD9HYIHKfS nav.navbar {
  position: fixed;
}
.cid-tD9HYIHKfS .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-tD9HYIHKfS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tD9HYIHKfS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tD9HYIHKfS .dropdown-item:hover,
.cid-tD9HYIHKfS .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tD9HYIHKfS .dropdown-item:hover span {
  color: white;
}
.cid-tD9HYIHKfS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tD9HYIHKfS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tD9HYIHKfS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tD9HYIHKfS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tD9HYIHKfS .nav-link {
  position: relative;
}
.cid-tD9HYIHKfS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tD9HYIHKfS .container {
    flex-wrap: nowrap;
  }
}
.cid-tD9HYIHKfS .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tD9HYIHKfS .dropdown-menu,
.cid-tD9HYIHKfS .navbar.opened {
  background: #000000 !important;
}
.cid-tD9HYIHKfS .nav-item:focus,
.cid-tD9HYIHKfS .nav-link:focus {
  outline: none;
}
.cid-tD9HYIHKfS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tD9HYIHKfS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD9HYIHKfS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tD9HYIHKfS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tD9HYIHKfS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tD9HYIHKfS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tD9HYIHKfS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tD9HYIHKfS .navbar.opened {
  transition: all 0.3s;
}
.cid-tD9HYIHKfS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tD9HYIHKfS .navbar .navbar-logo img {
  width: auto;
}
.cid-tD9HYIHKfS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tD9HYIHKfS .navbar.collapsed {
  justify-content: center;
}
.cid-tD9HYIHKfS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tD9HYIHKfS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tD9HYIHKfS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tD9HYIHKfS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tD9HYIHKfS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tD9HYIHKfS .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-tD9HYIHKfS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tD9HYIHKfS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tD9HYIHKfS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tD9HYIHKfS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tD9HYIHKfS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tD9HYIHKfS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tD9HYIHKfS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tD9HYIHKfS .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-tD9HYIHKfS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tD9HYIHKfS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tD9HYIHKfS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tD9HYIHKfS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tD9HYIHKfS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tD9HYIHKfS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tD9HYIHKfS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tD9HYIHKfS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tD9HYIHKfS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tD9HYIHKfS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tD9HYIHKfS .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-tD9HYIHKfS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tD9HYIHKfS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tD9HYIHKfS .dropdown-item.active,
.cid-tD9HYIHKfS .dropdown-item:active {
  background-color: transparent;
}
.cid-tD9HYIHKfS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tD9HYIHKfS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tD9HYIHKfS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tD9HYIHKfS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tD9HYIHKfS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tD9HYIHKfS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD9HYIHKfS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tD9HYIHKfS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tD9HYIHKfS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tD9HYIHKfS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tD9HYIHKfS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tD9HYIHKfS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD9HYIHKfS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD9HYIHKfS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tD9HYIHKfS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD9HYIHKfS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tD9HYIHKfS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tD9HYIHKfS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD9HYIHKfS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tD9HYIHKfS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD9HYIHKfS .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-tD9HYIHKfS .navbar {
    height: 70px;
  }
  .cid-tD9HYIHKfS .navbar.opened {
    height: auto;
  }
  .cid-tD9HYIHKfS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD9HYKcerM {
  background-image: url("../../../assets/images/exthink-billboard.jpg");
}
.cid-tD9HYKcerM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD9HYKcerM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD9LXzm4g4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD9LXzm4g4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD9LXzm4g4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD9HYLA7Rp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1-15.jpg");
}
.cid-tD9HYLA7Rp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD9HYLA7Rp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD9HYLA7Rp .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tD9HYLA7Rp .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #075763;
}
@media (max-width: 991px) {
  .cid-tD9HYLA7Rp .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tD9HYLA7Rp .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tD9HYLA7Rp .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-tD9HYLA7Rp .card-title {
  color: #ffffff;
}
.cid-tD9HYLA7Rp P {
  color: #e6c63b;
}
.cid-tD9HYMtfSw {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #075763;
}
.cid-tD9HYMtfSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD9HYMtfSw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD9HYMtfSw .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tD9HYMtfSw .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tD9HYMtfSw .row {
    text-align: center;
  }
  .cid-tD9HYMtfSw .row > div {
    margin: auto;
  }
  .cid-tD9HYMtfSw .social-row {
    justify-content: center;
  }
}
.cid-tD9HYMtfSw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tD9HYMtfSw .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tD9HYMtfSw .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tD9HYMtfSw .list {
    margin-bottom: 0rem;
  }
}
.cid-tD9HYMtfSw .mbr-text {
  color: #fafafa;
}
.cid-tD9HYMtfSw .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-tD9HYMtfSw .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tD9HYMtfSw div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tD9HYMtfSw H5 {
  color: #9518bc;
}
.cid-tD9HYMtfSw .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-tD9LVE1aGi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tD9LVE1aGi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD9LVE1aGi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD9LVE1aGi .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tD9LVE1aGi .container {
    max-width: 1400px;
  }
}
.cid-tD9LVE1aGi .card {
  margin: auto;
}
.cid-tD9LVE1aGi .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #15874b;
  margin-bottom: 2rem;
}
.cid-tD9LVE1aGi .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tD9LVE1aGi .row {
  justify-content: center;
}
.cid-tDeAisljQS {
  z-index: 1000;
  width: 100%;
}
.cid-tDeAisljQS nav.navbar {
  position: fixed;
}
.cid-tDeAisljQS .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-tDeAisljQS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDeAisljQS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDeAisljQS .dropdown-item:hover,
.cid-tDeAisljQS .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tDeAisljQS .dropdown-item:hover span {
  color: white;
}
.cid-tDeAisljQS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDeAisljQS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDeAisljQS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDeAisljQS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDeAisljQS .nav-link {
  position: relative;
}
.cid-tDeAisljQS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tDeAisljQS .container {
    flex-wrap: nowrap;
  }
}
.cid-tDeAisljQS .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDeAisljQS .dropdown-menu,
.cid-tDeAisljQS .navbar.opened {
  background: #000000 !important;
}
.cid-tDeAisljQS .nav-item:focus,
.cid-tDeAisljQS .nav-link:focus {
  outline: none;
}
.cid-tDeAisljQS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDeAisljQS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDeAisljQS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDeAisljQS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDeAisljQS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDeAisljQS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDeAisljQS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tDeAisljQS .navbar.opened {
  transition: all 0.3s;
}
.cid-tDeAisljQS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDeAisljQS .navbar .navbar-logo img {
  width: auto;
}
.cid-tDeAisljQS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDeAisljQS .navbar.collapsed {
  justify-content: center;
}
.cid-tDeAisljQS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDeAisljQS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDeAisljQS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tDeAisljQS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDeAisljQS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDeAisljQS .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-tDeAisljQS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDeAisljQS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDeAisljQS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDeAisljQS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDeAisljQS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDeAisljQS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDeAisljQS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDeAisljQS .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-tDeAisljQS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDeAisljQS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDeAisljQS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDeAisljQS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDeAisljQS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDeAisljQS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDeAisljQS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDeAisljQS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDeAisljQS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDeAisljQS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDeAisljQS .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-tDeAisljQS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDeAisljQS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDeAisljQS .dropdown-item.active,
.cid-tDeAisljQS .dropdown-item:active {
  background-color: transparent;
}
.cid-tDeAisljQS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDeAisljQS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDeAisljQS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDeAisljQS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tDeAisljQS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDeAisljQS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDeAisljQS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDeAisljQS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDeAisljQS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDeAisljQS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDeAisljQS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDeAisljQS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDeAisljQS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDeAisljQS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDeAisljQS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDeAisljQS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDeAisljQS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDeAisljQS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDeAisljQS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDeAisljQS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDeAisljQS .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-tDeAisljQS .navbar {
    height: 70px;
  }
  .cid-tDeAisljQS .navbar.opened {
    height: auto;
  }
  .cid-tDeAisljQS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDeAivyEkD {
  background-image: url("../../../assets/images/room-g54779f742-1920.jpg");
}
.cid-tDeAivyEkD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDeAivyEkD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDeI6D136X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDeI6D136X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDeI6D136X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDeI6D136X .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-tDeBnnVu0q {
  background-image: url("../../../assets/images/1-6.png");
}
.cid-tDeBnnVu0q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDeBnnVu0q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDeBnnVu0q .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-tDeBnnVu0q .number {
  color: #4479d9;
}
.cid-tDeBnnVu0q .period {
  display: block;
}
.cid-tDeBnnVu0q .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-tDeBnnVu0q .period {
    font-size: 0.8rem;
  }
}
.cid-tDeBnnVu0q .btn {
  height: 100%;
  margin: 0;
}
.cid-tDeBnnVu0q .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tDeBnnVu0q .mbr-section-title {
  color: #ffffff;
}
.cid-tDeBnnVu0q .mbr-text {
  color: #ffffff;
}
.cid-tDeBnnVu0q .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tDeBnnVu0q .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDeBnnVu0q .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-tDeBnnVu0q .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-tDeBnnVu0q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tDeAiChQuL {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #e6c63b;
}
.cid-tDeAiChQuL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDeAiChQuL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDeAiChQuL .mbr-section-title {
  color: #000000;
}
.cid-tDeAiEkKzY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1-15.jpg");
}
.cid-tDeAiEkKzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDeAiEkKzY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDeAiEkKzY .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tDeAiEkKzY .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #075763;
}
@media (max-width: 991px) {
  .cid-tDeAiEkKzY .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDeAiEkKzY .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tDeAiEkKzY .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-tDeAiEkKzY .card-title {
  color: #ffffff;
}
.cid-tDeAiEkKzY P {
  color: #e6c63b;
}
.cid-tDeAiF8b0z {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #075763;
}
.cid-tDeAiF8b0z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDeAiF8b0z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDeAiF8b0z .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDeAiF8b0z .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDeAiF8b0z .row {
    text-align: center;
  }
  .cid-tDeAiF8b0z .row > div {
    margin: auto;
  }
  .cid-tDeAiF8b0z .social-row {
    justify-content: center;
  }
}
.cid-tDeAiF8b0z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDeAiF8b0z .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDeAiF8b0z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDeAiF8b0z .list {
    margin-bottom: 0rem;
  }
}
.cid-tDeAiF8b0z .mbr-text {
  color: #fafafa;
}
.cid-tDeAiF8b0z .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-tDeAiF8b0z .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDeAiF8b0z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tDeAiF8b0z H5 {
  color: #9518bc;
}
.cid-tDeAiF8b0z .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-tk5M9JnJKM {
  z-index: 1000;
  width: 100%;
}
.cid-tk5M9JnJKM nav.navbar {
  position: fixed;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tk5M9JnJKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tk5M9JnJKM .dropdown-item:hover,
.cid-tk5M9JnJKM .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tk5M9JnJKM .dropdown-item:hover span {
  color: white;
}
.cid-tk5M9JnJKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tk5M9JnJKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tk5M9JnJKM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tk5M9JnJKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tk5M9JnJKM .nav-link {
  position: relative;
}
.cid-tk5M9JnJKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tk5M9JnJKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tk5M9JnJKM .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tk5M9JnJKM .dropdown-menu,
.cid-tk5M9JnJKM .navbar.opened {
  background: #000000 !important;
}
.cid-tk5M9JnJKM .nav-item:focus,
.cid-tk5M9JnJKM .nav-link:focus {
  outline: none;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tk5M9JnJKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tk5M9JnJKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tk5M9JnJKM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tk5M9JnJKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tk5M9JnJKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tk5M9JnJKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tk5M9JnJKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tk5M9JnJKM .navbar.collapsed {
  justify-content: center;
}
.cid-tk5M9JnJKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tk5M9JnJKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tk5M9JnJKM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tk5M9JnJKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tk5M9JnJKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tk5M9JnJKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tk5M9JnJKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tk5M9JnJKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tk5M9JnJKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tk5M9JnJKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tk5M9JnJKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tk5M9JnJKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tk5M9JnJKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tk5M9JnJKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tk5M9JnJKM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tk5M9JnJKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tk5M9JnJKM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tk5M9JnJKM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tk5M9JnJKM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tk5M9JnJKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tk5M9JnJKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tk5M9JnJKM .dropdown-item.active,
.cid-tk5M9JnJKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tk5M9JnJKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tk5M9JnJKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tk5M9JnJKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tk5M9JnJKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tk5M9JnJKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tk5M9JnJKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tk5M9JnJKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tk5M9JnJKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tk5M9JnJKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tk5M9JnJKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar {
    height: 70px;
  }
  .cid-tk5M9JnJKM .navbar.opened {
    height: auto;
  }
  .cid-tk5M9JnJKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vgqWvfsD6h {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/exthink-dark-logo.jpg");
}
.cid-vgqWvfsD6h .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgqWvfsD6h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgqWvfsD6h .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-vgqWvfsD6h .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vgqWvfsD6h .embla__button--next,
.cid-vgqWvfsD6h .embla__button--prev {
  display: flex;
}
.cid-vgqWvfsD6h .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;
  display: none;
}
@media (max-width: 768px) {
  .cid-vgqWvfsD6h .embla__button {
    display: none;
  }
}
.cid-vgqWvfsD6h .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vgqWvfsD6h .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vgqWvfsD6h .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vgqWvfsD6h .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-vgqWvfsD6h .embla__button {
    top: auto;
  }
}
.cid-vgqWvfsD6h .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-vgqWvfsD6h .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-vgqWvfsD6h .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-vgqWvfsD6h .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-vgqWvfsD6h .embla {
  position: relative;
  width: 100%;
}
.cid-vgqWvfsD6h .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vgqWvfsD6h .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vgqWvfsD6h .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vgqWvfsD6h .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vgqYfGzSfb {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-vgqYfGzSfb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgqYfGzSfb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgqYfGzSfb .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-vgqYfGzSfb .team-card:hover {
  transform: translateY(-10px);
}
.cid-vgqYfGzSfb .item-wrapper {
  background: #ffe161;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-vgqYfGzSfb .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vgqYfGzSfb .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-vgqYfGzSfb .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vgqYfGzSfb .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-vgqYfGzSfb .social-row {
  text-align: center;
}
.cid-vgqYfGzSfb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #fafafa;
  transition: all 0.3s;
}
.cid-vgqYfGzSfb .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #fafafa;
  font-size: 1.5rem;
}
.cid-vgqYfGzSfb .social-row .soc-item:hover {
  background-color: #fafafa;
}
.cid-vgqYfGzSfb .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
.cid-tk5M9Ocwe8 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #075763;
}
.cid-tk5M9Ocwe8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk5M9Ocwe8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk5M9Ocwe8 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tk5M9Ocwe8 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tk5M9Ocwe8 .row {
    text-align: center;
  }
  .cid-tk5M9Ocwe8 .row > div {
    margin: auto;
  }
  .cid-tk5M9Ocwe8 .social-row {
    justify-content: center;
  }
}
.cid-tk5M9Ocwe8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tk5M9Ocwe8 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tk5M9Ocwe8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tk5M9Ocwe8 .list {
    margin-bottom: 0rem;
  }
}
.cid-tk5M9Ocwe8 .mbr-text {
  color: #fafafa;
}
.cid-tk5M9Ocwe8 .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-tk5M9Ocwe8 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tk5M9Ocwe8 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tk5M9Ocwe8 H5 {
  color: #9518bc;
}
.cid-tk5M9Ocwe8 .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-vgJasgEBke {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1-6.png");
}
.cid-vgJasgEBke .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vgJasgEBke form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-vgJasgEBke form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-vgJasgEBke form.mbr-form {
    padding: 1rem;
  }
}
.cid-vgJasgEBke form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-vgJasgEBke form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-vgJasgEBke .mbr-section-title {
  color: #ffffff;
}
.cid-vgJeDnd2pO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1-7.jpg");
}
.cid-vgJeDnd2pO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgJeDnd2pO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgJeDnd2pO .mbr-section-title {
  color: #ffffff;
}
.cid-vgJeDnd2pO .mbr-text,
.cid-vgJeDnd2pO .mbr-section-btn {
  color: #ffffff;
}
.cid-vgJaaRkx9x {
  z-index: 1000;
  width: 100%;
}
.cid-vgJaaRkx9x nav.navbar {
  position: fixed;
}
.cid-vgJaaRkx9x .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-vgJaaRkx9x .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vgJaaRkx9x .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vgJaaRkx9x .dropdown-item:hover,
.cid-vgJaaRkx9x .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-vgJaaRkx9x .dropdown-item:hover span {
  color: white;
}
.cid-vgJaaRkx9x .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vgJaaRkx9x .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vgJaaRkx9x .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vgJaaRkx9x .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vgJaaRkx9x .nav-link {
  position: relative;
}
.cid-vgJaaRkx9x .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vgJaaRkx9x .container {
    flex-wrap: nowrap;
  }
}
.cid-vgJaaRkx9x .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vgJaaRkx9x .dropdown-menu,
.cid-vgJaaRkx9x .navbar.opened {
  background: #000000 !important;
}
.cid-vgJaaRkx9x .nav-item:focus,
.cid-vgJaaRkx9x .nav-link:focus {
  outline: none;
}
.cid-vgJaaRkx9x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vgJaaRkx9x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vgJaaRkx9x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vgJaaRkx9x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vgJaaRkx9x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vgJaaRkx9x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vgJaaRkx9x .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-vgJaaRkx9x .navbar.opened {
  transition: all 0.3s;
}
.cid-vgJaaRkx9x .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vgJaaRkx9x .navbar .navbar-logo img {
  width: auto;
}
.cid-vgJaaRkx9x .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vgJaaRkx9x .navbar.collapsed {
  justify-content: center;
}
.cid-vgJaaRkx9x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vgJaaRkx9x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vgJaaRkx9x .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-vgJaaRkx9x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vgJaaRkx9x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vgJaaRkx9x .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-vgJaaRkx9x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vgJaaRkx9x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vgJaaRkx9x .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vgJaaRkx9x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vgJaaRkx9x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vgJaaRkx9x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vgJaaRkx9x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vgJaaRkx9x .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-vgJaaRkx9x .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vgJaaRkx9x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vgJaaRkx9x .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vgJaaRkx9x .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vgJaaRkx9x .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vgJaaRkx9x .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vgJaaRkx9x .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vgJaaRkx9x .navbar.navbar-short {
  min-height: 60px;
}
.cid-vgJaaRkx9x .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vgJaaRkx9x .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vgJaaRkx9x .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-vgJaaRkx9x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vgJaaRkx9x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vgJaaRkx9x .dropdown-item.active,
.cid-vgJaaRkx9x .dropdown-item:active {
  background-color: transparent;
}
.cid-vgJaaRkx9x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vgJaaRkx9x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vgJaaRkx9x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vgJaaRkx9x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vgJaaRkx9x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vgJaaRkx9x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vgJaaRkx9x ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vgJaaRkx9x .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vgJaaRkx9x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vgJaaRkx9x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vgJaaRkx9x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vgJaaRkx9x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgJaaRkx9x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgJaaRkx9x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vgJaaRkx9x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgJaaRkx9x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vgJaaRkx9x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vgJaaRkx9x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgJaaRkx9x .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vgJaaRkx9x a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vgJaaRkx9x .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-vgJaaRkx9x .navbar {
    height: 70px;
  }
  .cid-vgJaaRkx9x .navbar.opened {
    height: auto;
  }
  .cid-vgJaaRkx9x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vgJaaStrJN {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #075763;
}
.cid-vgJaaStrJN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgJaaStrJN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgJaaStrJN .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vgJaaStrJN .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vgJaaStrJN .row {
    text-align: center;
  }
  .cid-vgJaaStrJN .row > div {
    margin: auto;
  }
  .cid-vgJaaStrJN .social-row {
    justify-content: center;
  }
}
.cid-vgJaaStrJN .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vgJaaStrJN .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vgJaaStrJN .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vgJaaStrJN .list {
    margin-bottom: 0rem;
  }
}
.cid-vgJaaStrJN .mbr-text {
  color: #fafafa;
}
.cid-vgJaaStrJN .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-vgJaaStrJN .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vgJaaStrJN div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vgJaaStrJN H5 {
  color: #9518bc;
}
.cid-vgJaaStrJN .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-tk5M9JnJKM {
  z-index: 1000;
  width: 100%;
}
.cid-tk5M9JnJKM nav.navbar {
  position: fixed;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tk5M9JnJKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tk5M9JnJKM .dropdown-item:hover,
.cid-tk5M9JnJKM .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tk5M9JnJKM .dropdown-item:hover span {
  color: white;
}
.cid-tk5M9JnJKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tk5M9JnJKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tk5M9JnJKM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tk5M9JnJKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tk5M9JnJKM .nav-link {
  position: relative;
}
.cid-tk5M9JnJKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tk5M9JnJKM .container {
    flex-wrap: nowrap;
  }
}
.cid-tk5M9JnJKM .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tk5M9JnJKM .dropdown-menu,
.cid-tk5M9JnJKM .navbar.opened {
  background: #000000 !important;
}
.cid-tk5M9JnJKM .nav-item:focus,
.cid-tk5M9JnJKM .nav-link:focus {
  outline: none;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tk5M9JnJKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tk5M9JnJKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tk5M9JnJKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tk5M9JnJKM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
}
.cid-tk5M9JnJKM .navbar.opened {
  transition: all 0.3s;
}
.cid-tk5M9JnJKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tk5M9JnJKM .navbar .navbar-logo img {
  width: auto;
}
.cid-tk5M9JnJKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tk5M9JnJKM .navbar.collapsed {
  justify-content: center;
}
.cid-tk5M9JnJKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tk5M9JnJKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tk5M9JnJKM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.6rem);
  }
}
.cid-tk5M9JnJKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tk5M9JnJKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tk5M9JnJKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tk5M9JnJKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tk5M9JnJKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tk5M9JnJKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tk5M9JnJKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tk5M9JnJKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tk5M9JnJKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tk5M9JnJKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tk5M9JnJKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tk5M9JnJKM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tk5M9JnJKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tk5M9JnJKM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tk5M9JnJKM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tk5M9JnJKM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tk5M9JnJKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tk5M9JnJKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tk5M9JnJKM .dropdown-item.active,
.cid-tk5M9JnJKM .dropdown-item:active {
  background-color: transparent;
}
.cid-tk5M9JnJKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tk5M9JnJKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tk5M9JnJKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tk5M9JnJKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tk5M9JnJKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tk5M9JnJKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tk5M9JnJKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tk5M9JnJKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tk5M9JnJKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tk5M9JnJKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tk5M9JnJKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tk5M9JnJKM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tk5M9JnJKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tk5M9JnJKM .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-tk5M9JnJKM .navbar {
    height: 70px;
  }
  .cid-tk5M9JnJKM .navbar.opened {
    height: auto;
  }
  .cid-tk5M9JnJKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vgqSSmfp7g {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-vgqSSmfp7g .mbr-text,
.cid-vgqSSmfp7g .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-vgqSSmfp7g .mbr-text,
  .cid-vgqSSmfp7g .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-vgqSSmfp7g .mbr-text,
  .cid-vgqSSmfp7g .mbr-section-title {
    text-align: center;
  }
}
.cid-vgqSSmfp7g a.btn {
  height: 100%;
  margin: 0;
}
.cid-vgqSSmfp7g .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-vgqSSmfp7g .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vgqSSmfp7g .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vgqSSmfp7g .justify-content-center {
  align-items: center;
}
.cid-vgJdTMtZKS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1-7.jpg");
}
.cid-vgJdTMtZKS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgJdTMtZKS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgJdTMtZKS .mbr-section-title {
  color: #ffffff;
}
.cid-vgJdTMtZKS .mbr-text,
.cid-vgJdTMtZKS .mbr-section-btn {
  color: #ffffff;
}
.cid-vgqTZHvKky {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-vgqTZHvKky .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgqTZHvKky .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgqTZHvKky .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-vgqTZHvKky .item .icon-wrap {
  text-align: center;
}
.cid-vgqTZHvKky .item span {
  font-size: 2rem;
  color: #808080;
  line-height: 60px;
}
.cid-vgqTZHvKky .icon-box {
  background: #ffffff;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-vgqTZHvKky .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-vgqTZHvKky .mbr-iconfont {
  color: #e6c63b !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-vgqTZHvKky .item:before {
    display: none;
  }
  .cid-vgqTZHvKky .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vgqTZHvKky .text-box .mbr-text {
  color: #fafafa;
}
.cid-vgqTZHvKky .icon-title,
.cid-vgqTZHvKky .item .icon-wrap {
  color: #ffe161;
}
.cid-vgqTZHvKky .card-title,
.cid-vgqTZHvKky .card-box {
  color: #ffffff;
}
.cid-tk5M9Ocwe8 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #075763;
}
.cid-tk5M9Ocwe8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk5M9Ocwe8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk5M9Ocwe8 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tk5M9Ocwe8 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tk5M9Ocwe8 .row {
    text-align: center;
  }
  .cid-tk5M9Ocwe8 .row > div {
    margin: auto;
  }
  .cid-tk5M9Ocwe8 .social-row {
    justify-content: center;
  }
}
.cid-tk5M9Ocwe8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tk5M9Ocwe8 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tk5M9Ocwe8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tk5M9Ocwe8 .list {
    margin-bottom: 0rem;
  }
}
.cid-tk5M9Ocwe8 .mbr-text {
  color: #fafafa;
}
.cid-tk5M9Ocwe8 .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-tk5M9Ocwe8 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tk5M9Ocwe8 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tk5M9Ocwe8 H5 {
  color: #9518bc;
}
.cid-tk5M9Ocwe8 .mbr-section-subtitle {
  color: #e6c63b;
}
