body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #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: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #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: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-swwKBuHrgP {
  background-color: #99c5ff;
}
.cid-swwKBuHrgP .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-swwKBuHrgP .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-swwKBuHrgP .mbr-text,
.cid-swwKBuHrgP .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-swwKBuHrgP .mbr-section-title {
  color: #232323;
}
.cid-sA219nofiU {
  padding-top: 0px;
  background: linear-gradient(180deg, #99c5ff, #8caff0);
}
.cid-sA219nofiU .wave1 {
  opacity: 0.35;
  fill: #dce8fd;
}
.cid-sA219nofiU .wave2 {
  fill: #dce8fd;
}
.cid-sA9hgZsky0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #dce8fd;
}
@media (max-width: 991px) {
  .cid-sA9hgZsky0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA9hgZsky0 .row {
  flex-direction: row-reverse;
}
.cid-sA9hgZsky0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA9hgZsky0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA8HOady4O {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #dce8fd;
}
.cid-sA8HOady4O .mbr-text {
  color: #767676;
}
.cid-sA8HOady4O h4 {
  text-align: center;
}
.cid-sA8HOady4O p {
  text-align: center;
}
.cid-sA8HOady4O .badge {
  position: relative;
  width: 258px;
  display: inline-block;
  margin: 0 45px 45px 45px;
}
.cid-sA8HOady4O .badge svg {
  width: 258px;
}
.cid-sA8HOady4O .title {
  position: absolute;
  top: -28px;
  border-radius: 8px 8px 0 0;
  text-align: center;
  width: 100%;
  padding: 20px 0;
  color: #000000;
}
.cid-sA8HOady4O .subtitle {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #ffffff;
  top: 100px;
}
.cid-sA8HOady4O .stars {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #ffffff;
  top: 140px;
}
.cid-sA8HOady4O .cBadge1 .title {
  background: #8cb0f0;
}
.cid-sA8HOady4O .cBadge1 .subtitle:after {
  color: #8cb0f0;
}
.cid-sA8HOady4O .cBadge2 .title {
  background: #ff6666;
}
.cid-sA8HOady4O .cBadge2 .subtitle:after {
  color: #ff6666;
}
.cid-sA8HOady4O .cBadge3 .title {
  background: #ffc266;
}
.cid-sA8HOady4O .cBadge3 .subtitle:after {
  color: #ffc266;
}
.cid-sA8HOady4O .cBadge4 .title {
  background: #f1c40f;
}
.cid-sA8HOady4O .cBadge4 .subtitle:after {
  color: #f1c40f;
}
.cid-sA8HOady4O .mbr-text,
.cid-sA8HOady4O .mbr-section-btn {
  color: #000000;
}
.cid-sA9a2J1WBL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #dce8fd;
}
.cid-sA9a2J1WBL .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sA9a2J1WBL .icon-box {
  background: #000000;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sA9a2J1WBL .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sA9a2J1WBL .card {
    margin-bottom: 2rem;
  }
  .cid-sA9a2J1WBL .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sCBnFwk1u3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(0deg, #ffffff 10%, #dce8fd 100%) !important;
}
.cid-sCBnllcLxM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCBnllcLxM .content-wrapper {
  background: #ffffff;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-sCBnllcLxM .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sCBnllcLxM .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sCBnllcLxM .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sCBnllcLxM .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCBnllcLxM .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sCBnllcLxM .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sCBnllcLxM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCBnllcLxM .card-title {
  color: #000000;
}
.cid-sA8KbnR12w {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(0deg, #8caff0 10%, #ffffff 100%) !important;
}
.cid-AfmiKV0Qa3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #8caff0;
}
.cid-AfmiKV0Qa3 .mbr-text {
  color: #767676;
}
.cid-AfmiKV0Qa3 h4 {
  text-align: center;
}
.cid-AfmiKV0Qa3 p {
  text-align: center;
}
.cid-AfmiKV0Qa3 .badge {
  position: relative;
  width: 235px;
  display: inline-block;
  margin: 0 45px 45px 45px;
}
.cid-AfmiKV0Qa3 .badge svg {
  width: 235px;
}
.cid-AfmiKV0Qa3 .title {
  position: absolute;
  top: -28px;
  border-radius: 8px 8px 0 0;
  text-align: center;
  width: 100%;
  padding: 20px 0;
  color: #000000;
}
.cid-AfmiKV0Qa3 .subtitle {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #ffffff;
  top: 100px;
}
.cid-AfmiKV0Qa3 .stars {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #ffffff;
  top: 140px;
}
.cid-AfmiKV0Qa3 .cBadge1 .title {
  background: #90d890;
}
.cid-AfmiKV0Qa3 .cBadge1 .subtitle:after {
  color: #90d890;
}
.cid-AfmiKV0Qa3 .cBadge2 .title {
  background: #538fff;
}
.cid-AfmiKV0Qa3 .cBadge2 .subtitle:after {
  color: #538fff;
}
.cid-AfmiKV0Qa3 .cBadge3 .title {
  background: #ff6666;
}
.cid-AfmiKV0Qa3 .cBadge3 .subtitle:after {
  color: #ff6666;
}
.cid-AfmiKV0Qa3 .cBadge4 .title {
  background: #f1c40f;
}
.cid-AfmiKV0Qa3 .cBadge4 .subtitle:after {
  color: #f1c40f;
}
.cid-AfmiKV0Qa3 .mbr-text,
.cid-AfmiKV0Qa3 .mbr-section-btn {
  color: #000000;
}
.cid-AfmiKV0Qa3 H1 {
  color: #000000;
}
.cid-sxBfA7xUww {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #8caff0;
}
.cid-sxBfA7xUww img,
.cid-sxBfA7xUww .item-img {
  width: 100%;
}
.cid-sxBfA7xUww .item:focus,
.cid-sxBfA7xUww span:focus {
  outline: none;
}
.cid-sxBfA7xUww .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sxBfA7xUww .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sxBfA7xUww .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sxBfA7xUww .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sxBfA7xUww .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sxBfA7xUww .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sxBfA7xUww .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sxBfA7xUww .mbr-section-title {
  color: #232323;
}
.cid-sxBfA7xUww .mbr-text,
.cid-sxBfA7xUww .mbr-section-btn {
  text-align: left;
}
.cid-sxBfA7xUww .item-title {
  text-align: left;
}
.cid-sxBfA7xUww .item-subtitle {
  text-align: left;
}
.cid-sA96PlZiNr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(0deg, #ffffff 10%, #8caff0 100%) !important;
}
.cid-sxEwnlkVIw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxEwnlkVIw .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-sxEwnlkVIw .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sxEwnlkVIw .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-sxEwnlkVIw .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sxEwnlkVIw .row .row {
    flex-direction: column-reverse;
  }
  .cid-sxEwnlkVIw .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxEwnlkVIw .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxEwnlkVIw .card-subtitle {
  color: #0095ff;
}
.cid-sxEwnlkVIw .mbr-text {
  color: #555555;
}
.cid-sxEwnlkVIw .mbr-text,
.cid-sxEwnlkVIw .mbr-section-btn {
  text-align: left;
}
.cid-sCGpU5FGyx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCGpU5FGyx .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-sCGpU5FGyx .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCGpU5FGyx .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-sCGpU5FGyx .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sCGpU5FGyx .row .row {
    flex-direction: column-reverse;
  }
  .cid-sCGpU5FGyx .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sCGpU5FGyx .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCGpU5FGyx .card-subtitle {
  color: #0095ff;
}
.cid-sCGpU5FGyx .mbr-text {
  color: #555555;
}
.cid-sCGpU5FGyx .mbr-text,
.cid-sCGpU5FGyx .mbr-section-btn {
  text-align: left;
}
.cid-sxEwoIhGLA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxEwoIhGLA .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-sxEwoIhGLA .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sxEwoIhGLA .card-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-sxEwoIhGLA .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sxEwoIhGLA .row .row {
    flex-direction: column-reverse;
  }
  .cid-sxEwoIhGLA .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sxEwoIhGLA .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxEwoIhGLA .card-subtitle {
  color: #0095ff;
}
.cid-sxEwoIhGLA .mbr-text {
  color: #555555;
}
.cid-sxEwoIhGLA .mbr-text,
.cid-sxEwoIhGLA .mbr-section-btn {
  text-align: left;
}
.cid-sAXJdFBAH3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(0deg, #dce8fd 10%, #ffffff 100%) !important;
}
.cid-sxEB4YnPo4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #dce8fd;
}
.cid-sxEB4YnPo4 .carousel-item {
  justify-content: center;
}
.cid-sxEB4YnPo4 .carousel-item.active,
.cid-sxEB4YnPo4 .carousel-item-next,
.cid-sxEB4YnPo4 .carousel-item-prev {
  display: flex;
}
.cid-sxEB4YnPo4 .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sxEB4YnPo4 .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sxEB4YnPo4 .carousel-control-next span {
  padding-left: 5px;
}
.cid-sxEB4YnPo4 .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sxEB4YnPo4 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sxEB4YnPo4 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sxEB4YnPo4 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sxEB4YnPo4 H3 {
  color: #000000;
}
.cid-sxEB4YnPo4 .user_text {
  color: #232323;
}
.cid-sxEGQDj7U1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sxEGQDj7U1 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sxEGQDj7U1 .row {
    text-align: center;
  }
  .cid-sxEGQDj7U1 .row > div {
    margin: auto;
  }
  .cid-sxEGQDj7U1 .social-row {
    justify-content: center;
  }
}
.cid-sxEGQDj7U1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sxEGQDj7U1 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 0rem;
  }
}
.cid-sxEGQDj7U1 .mbr-text {
  color: #bbbbbb;
}
.cid-sxEGQDj7U1 .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-sxEGQDj7U1 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sxA0G0IV3B {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #99c5ff;
}
.cid-sxA0G0IV3B .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxA0G0IV3B .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-sxA0G0IV3B .mbr-text,
.cid-sxA0G0IV3B .mbr-section-btn {
  text-align: center;
}
.cid-sxA0G16xq7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #99c5ff;
}
.cid-sxA0G16xq7 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sxA0G16xq7 .card {
    margin-bottom: 2rem!important;
  }
  .cid-sxA0G16xq7 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sxA0G16xq7 .link-wrap {
    align-items: center;
  }
}
.cid-sxA0G16xq7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxA0G16xq7 .card-title,
.cid-sxA0G16xq7 .card-box {
  text-align: left;
}
.cid-sxA0G16xq7 .mbr-text,
.cid-sxA0G16xq7 .link-wrap,
.cid-sxA0G16xq7 .mbr-section-btn {
  color: #000000;
}
.cid-sxA0G1rdy1 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(0deg, #ffffff 10%, #99c5ff 100%) !important;
}
.cid-sxA0G1Gl2V {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxA0G1Gl2V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxA0G1Gl2V .row {
  flex-direction: row-reverse;
}
.cid-sxA0G1Gl2V img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxA0G1Gl2V .text-wrapper {
    padding: 2rem;
  }
}
.cid-sxA0G1TNsf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxA0G1TNsf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxA0G1TNsf img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxA0G1TNsf .text-wrapper {
    padding: 2rem;
  }
}
.cid-sxA0G28sBJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxA0G28sBJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxA0G28sBJ .row {
  flex-direction: row-reverse;
}
.cid-sxA0G28sBJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxA0G28sBJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sxA0G2l1ST {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxA0G2l1ST .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxA0G2l1ST img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxA0G2l1ST .text-wrapper {
    padding: 2rem;
  }
}
.cid-sxA0G2l1ST .mbr-section-title {
  text-align: left;
}
.cid-sxA0G2BWR6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sxA0G2BWR6 .row {
    flex-direction: column-reverse;
  }
  .cid-sxA0G2BWR6 .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sxA0G2BWR6 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sxA0G2BWR6 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sxA0G2BWR6 .media-content,
.cid-sxA0G2BWR6 .mbr-figure {
  align-self: center;
}
.cid-sxA0G2BWR6 .mbr-figure iframe {
  width: 100%;
}
.cid-sxA0G2O3th {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxA0G2O3th .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxA0G2O3th img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxA0G2O3th .text-wrapper {
    padding: 2rem;
  }
}
.cid-sxA0G30kaO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxA0G30kaO .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sxA0G30kaO .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sxA0G30kaO .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-sxA0G30kaO .panel-body,
.cid-sxA0G30kaO .card-header {
  padding: 1rem 0;
}
.cid-sxA0G30kaO .panel-title-edit {
  color: #000000;
}
.cid-sxA0G3iGwS {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(0deg, #000000 10%, #ffffff 100%) !important;
}
.cid-sxA0G3xRVq {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sxA0G3xRVq .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxA0G3xRVq .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-sxA0G3xRVq .mbr-section-title {
  color: #ffffff;
}
.cid-sxA0G3xRVq .mbr-text,
.cid-sxA0G3xRVq .mbr-section-btn {
  color: #fafafa;
}
.cid-sxA0G3HjcF {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sxA0G3HjcF .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sxA0G3HjcF .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sxA0G3HjcF .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sxA0G3HjcF .wrapper {
  padding: 30px 0;
}
.cid-sxA0G3HjcF .mbr-section-title {
  color: #fafafa;
}
.cid-sxA0G3HjcF .mbr-text,
.cid-sxA0G3HjcF .mbr-section-btn {
  color: #ffffff;
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxQu6csXAP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #99c5ff;
}
.cid-sxQu6csXAP .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxQu6csXAP .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-sxQu6csXAP .mbr-text,
.cid-sxQu6csXAP .mbr-section-btn {
  text-align: center;
}
.cid-sxQwRqtTjW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(0deg, #ffffff 10%, #99c5ff 100%) !important;
}
.cid-sxQvE0liie {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxQvE0liie .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-sxQvE0liie .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-sxQvE0liie .text-box {
  text-align: center;
}
.cid-sxQvE0liie span {
  font-size: 12rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-sxQvE0liie .card {
    margin-bottom: 2rem;
  }
  .cid-sxQvE0liie .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sxQvE0liie span {
    font-size: 21vw;
  }
}
.cid-sxQvE0liie .item .icon-box .step-number {
  color: #6592e6;
}
.cid-sxQvE0liie .icon-title,
.cid-sxQvE0liie .mbr-section-btn,
.cid-sxQvE0liie .item .icon-box .step-number {
  color: #6592e6;
}
.cid-sxQxiFwJom {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(0deg, #99c5ff 10%, #ffffff 100%) !important;
}
.cid-sxQu6cNmpj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #99c5ff;
}
.cid-sxQu6cNmpj .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sxQu6cNmpj .card {
    margin-bottom: 2rem!important;
  }
  .cid-sxQu6cNmpj .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sxQu6cNmpj .link-wrap {
    align-items: center;
  }
}
.cid-sxQu6cNmpj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxQu6cNmpj .card-title,
.cid-sxQu6cNmpj .card-box {
  text-align: left;
}
.cid-sxQu6cNmpj .mbr-text,
.cid-sxQu6cNmpj .link-wrap,
.cid-sxQu6cNmpj .mbr-section-btn {
  color: #000000;
}
.cid-sxQu6d583g {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(0deg, #ffffff 10%, #99c5ff 100%) !important;
}
.cid-sxXHJYk4Gi {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sxXHJYk4Gi .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sxXHJYk4Gi .card {
    margin-bottom: 2rem!important;
  }
  .cid-sxXHJYk4Gi .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sxXHJYk4Gi .link-wrap {
    align-items: center;
  }
}
.cid-sxXHJYk4Gi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxXI6DeQdO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxWVfJiPTY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxWVfJiPTY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxWVfJiPTY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxWVfJiPTY .text-wrapper {
    padding: 2rem;
  }
}
.cid-sy1OVYvqDU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sy1OVYvqDU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sy1OVYvqDU .row {
  flex-direction: row-reverse;
}
.cid-sy1OVYvqDU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy1OVYvqDU .text-wrapper {
    padding: 2rem;
  }
}
.cid-syfFxstYlO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syfFxstYlO .mbr-section-title {
  text-align: center;
}
.cid-syfEIr4RRq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syfEIr4RRq .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-syfEIr4RRq .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-syfEIr4RRq .img1 {
  background: #163671;
}
.cid-syfEIr4RRq .img2 {
  background: #4479d9;
}
.cid-syfEIr4RRq .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-syfEIr4RRq .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-syfEIr4RRq .card-wrapper {
  background: #99f8ff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-syfEIr4RRq .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syfEIr4RRq .card-wrapper {
    flex-direction: column;
  }
  .cid-syfEIr4RRq .card-box {
    padding: 1rem;
  }
  .cid-syfEIr4RRq .card-box,
  .cid-syfEIr4RRq .img-wrapper {
    width: 100%;
  }
  .cid-syfEIr4RRq .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-syfEIr4RRq .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-syfEIr4RRq .card-subtitle {
  color: #0077ff;
}
.cid-syfEIr4RRq .mbr-text,
.cid-syfEIr4RRq .link-wrap {
  color: #555555;
}
.cid-syfEIr4RRq .mbr-text,
.cid-syfEIr4RRq .mbr-section-btn {
  color: #232323;
}
.cid-syfELSsUvA {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-syfELSsUvA .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-syfELSsUvA .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-syfELSsUvA .img1 {
  background: #e43f3f;
}
.cid-syfELSsUvA .img2 {
  background: #1f8f9f;
}
.cid-syfELSsUvA .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-syfELSsUvA .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-syfELSsUvA .card-wrapper {
  background: #99f8ff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-syfELSsUvA .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syfELSsUvA .card-wrapper {
    flex-direction: column;
  }
  .cid-syfELSsUvA .card-box {
    padding: 1rem;
  }
  .cid-syfELSsUvA .card-box,
  .cid-syfELSsUvA .img-wrapper {
    width: 100%;
  }
  .cid-syfELSsUvA .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-syfELSsUvA .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-syfELSsUvA .card-subtitle {
  color: #0077ff;
}
.cid-syfELSsUvA .mbr-text,
.cid-syfELSsUvA .link-wrap {
  color: #555555;
}
.cid-syfELSsUvA .mbr-text,
.cid-syfELSsUvA .mbr-section-btn {
  color: #232323;
}
.cid-sxRu57OYFO {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxRu57OYFO img,
.cid-sxRu57OYFO .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sxRu57OYFO .item:focus,
.cid-sxRu57OYFO span:focus {
  outline: none;
}
.cid-sxRu57OYFO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sxRu57OYFO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #99f8ff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sxRu57OYFO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sxRu57OYFO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sxRu57OYFO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sxRu57OYFO .mbr-section-title {
  color: #232323;
}
.cid-sxRu57OYFO .mbr-text,
.cid-sxRu57OYFO .mbr-section-btn {
  text-align: left;
}
.cid-sxRu57OYFO .item-title {
  text-align: left;
  color: #2d4166;
}
.cid-sxRu57OYFO .item-subtitle {
  text-align: left;
  color: #e43f3f;
}
.cid-sxRua0y2te {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxRua0y2te .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxRua0y2te .row {
  flex-direction: row-reverse;
}
.cid-sxRua0y2te img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxRua0y2te .text-wrapper {
    padding: 2rem;
  }
}
.cid-sxRuaxDhs7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sxRuaxDhs7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sxRuaxDhs7 .row {
  flex-direction: row-reverse;
}
.cid-sxRuaxDhs7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxRuaxDhs7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sxRuaxDhs7 .mbr-section-title {
  text-align: left;
}
.cid-sxRuaxDhs7 .mbr-text {
  text-align: left;
}
.cid-sxQu6epDYM {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sxQu6epDYM .row {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-sxQu6epDYM .row {
    flex-direction: column-reverse;
  }
  .cid-sxQu6epDYM .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sxQu6epDYM .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sxQu6epDYM .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sxQu6epDYM .media-content,
.cid-sxQu6epDYM .mbr-figure {
  align-self: center;
}
.cid-sxQu6epDYM .mbr-figure iframe {
  width: 100%;
}
.cid-syeLZ6A7Bz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syeLZ6A7Bz .row {
    flex-direction: column-reverse;
  }
  .cid-syeLZ6A7Bz .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-syeLZ6A7Bz .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-syeLZ6A7Bz .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-syeLZ6A7Bz .media-content,
.cid-syeLZ6A7Bz .mbr-figure {
  align-self: center;
}
.cid-syeLZ6A7Bz .mbr-figure iframe {
  width: 100%;
}
.cid-sxQu6eNGy9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxQu6eNGy9 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sxQu6eNGy9 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sxQu6eNGy9 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-sxQu6eNGy9 .panel-body,
.cid-sxQu6eNGy9 .card-header {
  padding: 1rem 0;
}
.cid-sxQu6eNGy9 .panel-title-edit {
  color: #000000;
}
.cid-sxQu6f5SQd {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(0deg, #000000 10%, #ffffff 100%) !important;
}
.cid-sxQu6fiDqm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sxQu6fiDqm .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxQu6fiDqm .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-sxQu6fiDqm .mbr-section-title {
  color: #ffffff;
}
.cid-sxQu6fiDqm .mbr-text,
.cid-sxQu6fiDqm .mbr-section-btn {
  color: #fafafa;
}
.cid-sxQu6ftizW {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sxQu6ftizW .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sxQu6ftizW .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sxQu6ftizW .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sxQu6ftizW .wrapper {
  padding: 30px 0;
}
.cid-sxQu6ftizW .mbr-section-title {
  color: #fafafa;
}
.cid-sxQu6ftizW .mbr-text,
.cid-sxQu6ftizW .mbr-section-btn {
  color: #ffffff;
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syjAJstqf6 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #99c5ff;
}
.cid-syjAJstqf6 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syjAJstqf6 .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-syjAJstqf6 .mbr-text,
.cid-syjAJstqf6 .mbr-section-btn {
  text-align: center;
}
.cid-syIywg0EWp {
  padding-top: 75px;
  background: linear-gradient(180deg, #99c5ff, #dce8fd);
}
.cid-syIywg0EWp .wave1 {
  opacity: 0.35;
  fill: #ffffff;
}
.cid-syIywg0EWp .wave2 {
  fill: #ffffff;
}
.cid-syjAJtjwhj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syjAJtjwhj .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-syjAJtjwhj .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-syjAJtjwhj .text-box {
  text-align: center;
}
.cid-syjAJtjwhj span {
  font-size: 12rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-syjAJtjwhj .card {
    margin-bottom: 2rem;
  }
  .cid-syjAJtjwhj .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-syjAJtjwhj span {
    font-size: 21vw;
  }
}
.cid-syjAJtjwhj .item .icon-box .step-number {
  color: #6592e6;
}
.cid-syjAJtjwhj .icon-title,
.cid-syjAJtjwhj .mbr-section-btn,
.cid-syjAJtjwhj .item .icon-box .step-number {
  color: #6592e6;
}
.cid-syjAJtNafz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(0deg, #99c5ff 10%, #ffffff 100%) !important;
}
.cid-syjAJu3G1B {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #99c5ff;
}
.cid-syjAJu3G1B .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-syjAJu3G1B .card {
    margin-bottom: 2rem!important;
  }
  .cid-syjAJu3G1B .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-syjAJu3G1B .link-wrap {
    align-items: center;
  }
}
.cid-syjAJu3G1B .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-syjAJu3G1B .card-title,
.cid-syjAJu3G1B .card-box {
  text-align: left;
}
.cid-syjAJu3G1B .mbr-text,
.cid-syjAJu3G1B .link-wrap,
.cid-syjAJu3G1B .mbr-section-btn {
  color: #000000;
}
.cid-syjAJummrb {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(0deg, #ffffff 10%, #99c5ff 100%) !important;
}
.cid-syJjioTFfP {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-syJjioTFfP .mbr-section-subtitle {
  text-align: left;
}
.cid-syJjw7u7mD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-24.jpg");
}
.cid-syJjw7u7mD .mbr-text,
.cid-syJjw7u7mD .mbr-section-btn {
  color: #232323;
}
.cid-syJjw7u7mD .card-title,
.cid-syJjw7u7mD .card-box {
  color: #ffffff;
}
.cid-syJjw7u7mD .mbr-text,
.cid-syJjw7u7mD .link-wrap {
  color: #ffffff;
}
.cid-sywnbGm8K6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sywnbGm8K6 .mbr-section-subtitle {
  text-align: left;
}
.cid-syHaKJlefK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-21.jpg");
}
.cid-syHaKJlefK .mbr-text,
.cid-syHaKJlefK .mbr-section-btn {
  color: #232323;
}
.cid-syHaKJlefK .card-title,
.cid-syHaKJlefK .card-box {
  color: #ffffff;
}
.cid-syHaKJlefK .mbr-text,
.cid-syHaKJlefK .link-wrap {
  color: #ffffff;
}
.cid-syyceUo1iR {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syyceUo1iR .mbr-section-subtitle {
  text-align: left;
}
.cid-syO8hwNuFR {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-syO8hwNuFR .mbr-section-subtitle {
  text-align: left;
}
.cid-syHbzkjQvI {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/frog-2.jpg");
}
.cid-syHbzkjQvI .mbr-text,
.cid-syHbzkjQvI .mbr-section-btn {
  color: #232323;
}
.cid-syHbzkjQvI .card-title,
.cid-syHbzkjQvI .card-box {
  color: #ffffff;
}
.cid-syHbzkjQvI .mbr-text,
.cid-syHbzkjQvI .link-wrap {
  color: #ffffff;
}
.cid-syP52LuVeF {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syP52LuVeF .mbr-section-subtitle {
  text-align: left;
}
.cid-syU7Gs9pBV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syU7Gs9pBV .row {
  flex-direction: row-reverse;
}
.cid-syU7Gs9pBV .video-wrapper iframe {
  width: 100%;
}
.cid-syU7Gs9pBV .mbr-section-title,
.cid-syU7Gs9pBV .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-syU7Gs9pBV .text-wrapper {
    padding: 2rem;
  }
}
.cid-syU76ukl2o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-szbGynKhrN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szbGynKhrN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szbGynKhrN .row {
  flex-direction: row-reverse;
}
.cid-szbGynKhrN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szbGynKhrN .text-wrapper {
    padding: 2rem;
  }
}
.cid-sz0TNC9fmc {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sz0TNC9fmc .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sz0TNC9fmc .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sz0TNC9fmc .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sz0TNC9fmc .card-wrapper {
    padding: 4rem;
  }
}
.cid-sz0TNC9fmc .mbr-text,
.cid-sz0TNC9fmc .mbr-section-btn {
  color: #ffffff;
}
.cid-sz0TNC9fmc .card-title,
.cid-sz0TNC9fmc .card-box {
  text-align: left;
}
.cid-syjAJx9lCl {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syjAJx9lCl .row {
    flex-direction: column-reverse;
  }
  .cid-syjAJx9lCl .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-syjAJx9lCl .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-syjAJx9lCl .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-syjAJx9lCl .media-content,
.cid-syjAJx9lCl .mbr-figure {
  align-self: center;
}
.cid-syjAJx9lCl .mbr-figure iframe {
  width: 100%;
}
.cid-syjAJxEvMe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syjAJxEvMe .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-syjAJxEvMe .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-syjAJxEvMe .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-syjAJxEvMe .panel-body,
.cid-syjAJxEvMe .card-header {
  padding: 1rem 0;
}
.cid-syjAJxEvMe .panel-title-edit {
  color: #000000;
}
.cid-syjAJybbU6 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(0deg, #000000 10%, #ffffff 100%) !important;
}
.cid-syjAJyGBCI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-syjAJyGBCI .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syjAJyGBCI .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-syjAJyGBCI .mbr-section-title {
  color: #ffffff;
}
.cid-syjAJyGBCI .mbr-text,
.cid-syjAJyGBCI .mbr-section-btn {
  color: #fafafa;
}
.cid-syjAJyUygC {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-syjAJyUygC .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-syjAJyUygC .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-syjAJyUygC .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-syjAJyUygC .wrapper {
  padding: 30px 0;
}
.cid-syjAJyUygC .mbr-section-title {
  color: #fafafa;
}
.cid-syjAJyUygC .mbr-text,
.cid-syjAJyUygC .mbr-section-btn {
  color: #ffffff;
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBlg5wnbLT {
  background-image: url("../../../assets/images/background9.jpg");
}
.cid-sxEGQDj7U1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sxEGQDj7U1 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sxEGQDj7U1 .row {
    text-align: center;
  }
  .cid-sxEGQDj7U1 .row > div {
    margin: auto;
  }
  .cid-sxEGQDj7U1 .social-row {
    justify-content: center;
  }
}
.cid-sxEGQDj7U1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sxEGQDj7U1 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 0rem;
  }
}
.cid-sxEGQDj7U1 .mbr-text {
  color: #bbbbbb;
}
.cid-sxEGQDj7U1 .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-sxEGQDj7U1 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sA1YNGxHD1 {
  background-image: url("../../../assets/images/nlpat-nlpacademyturkey-3.jpg");
}
.cid-sA1YNGxHD1 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sA1YNGxHD1 .card {
    margin-bottom: 2rem!important;
  }
  .cid-sA1YNGxHD1 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sA1YNGxHD1 .link-wrap {
    align-items: center;
  }
}
.cid-sA1YNGxHD1 li {
  font-size: 14px;
}
.cid-sA1YNGxHD1 .mbr-section-btn {
  padding-top: 0.5rem;
}
.cid-sA1YNGxHD1 .mbr-text,
.cid-sA1YNGxHD1 .link-wrap,
.cid-sA1YNGxHD1 .mbr-section-btn {
  color: #232323;
}
.cid-sA1YNGxHD1 .card-title,
.cid-sA1YNGxHD1 .card-box {
  color: #000000;
}
.cid-sA1YNGxHD1 .mbr-text {
  color: #232323;
}
.cid-sA1YU9SPtp {
  padding-top: 0px;
  background: linear-gradient(180deg, #99c5ff, #bed3f9);
}
.cid-sA1YU9SPtp .wave1 {
  opacity: 0.35;
  fill: #ffffff;
}
.cid-sA1YU9SPtp .wave2 {
  fill: #ffffff;
}
.cid-sA1YABWTnw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sA1YABWTnw .mbr-section-subtitle {
  text-align: center;
}
.cid-sA1YABWTnw .mbr-text {
  text-align: center;
}
.cid-sAfGYjO1JR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sAfGYjO1JR .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sAfGYjO1JR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sAfGYjO1JR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sAfGYjO1JR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sAfGYjO1JR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sAfGYjO1JR .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sAfGYjO1JR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sAfGYjO1JR .mbr-text,
.cid-sAfGYjO1JR .mbr-section-btn {
  color: #000000;
}
.cid-sA1YBGvfjA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sA1YBGvfjA .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sA1YBGvfjA .content-wrapper .image-wrapper {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sA1YBGvfjA .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sA1YBGvfjA .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sA1YBGvfjA .content-wrapper {
    padding: 2rem 3rem;
  }
  .cid-sA1YBGvfjA .content-wrapper .text-wrapper {
    padding-left: 1rem;
  }
}
.cid-sA1YBGvfjA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sA1YBGvfjA .mbr-text,
.cid-sA1YBGvfjA .mbr-section-btn {
  color: #000000;
}
.cid-sA1YBGvfjA .card-title {
  color: #000000;
}
.cid-sAfGXLy6le {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sAfGXLy6le .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sAfGXLy6le .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sAfGXLy6le .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sAfGXLy6le .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sAfGXLy6le .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sAfGXLy6le .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sAfGXLy6le .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sAfGXLy6le .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sAfGXLy6le .mbr-text,
.cid-sAfGXLy6le .mbr-section-btn {
  color: #000000;
}
.cid-sA1YE4kjqL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sA1YE4kjqL .item:focus,
.cid-sA1YE4kjqL span:focus {
  outline: none;
}
.cid-sA1YE4kjqL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sA1YE4kjqL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #98dee8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sA1YE4kjqL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sA1YE4kjqL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sA1YE4kjqL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sA1YE4kjqL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sA1YE4kjqL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sA1YE4kjqL .mbr-section-title {
  color: #000000;
}
.cid-sA1YE4kjqL .mbr-text,
.cid-sA1YE4kjqL .mbr-section-btn {
  text-align: left;
}
.cid-sA1YE4kjqL .item-title {
  text-align: left;
}
.cid-sA1YE4kjqL .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sBlfaWJtF9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sBlfaWJtF9 .item:focus,
.cid-sBlfaWJtF9 span:focus {
  outline: none;
}
.cid-sBlfaWJtF9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sBlfaWJtF9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #98dee8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sBlfaWJtF9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sBlfaWJtF9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sBlfaWJtF9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sBlfaWJtF9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sBlfaWJtF9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sBlfaWJtF9 .mbr-section-title {
  color: #000000;
}
.cid-sBlfaWJtF9 .mbr-text,
.cid-sBlfaWJtF9 .mbr-section-btn {
  text-align: left;
}
.cid-sBlfaWJtF9 .item-title {
  text-align: left;
}
.cid-sBlfaWJtF9 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sBZRDWU7JW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sBZRDWU7JW .content-wrapper {
  background: #ffffff;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-sBZRDWU7JW .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sBZRDWU7JW .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBZRDWU7JW .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sBZRDWU7JW .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBZRDWU7JW .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sBZRDWU7JW .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sBZRDWU7JW .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-sBZRDWU7JW .card-title {
  color: #000000;
}
.cid-sBZTn34uM2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-sBZTn34uM2 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sBZTn34uM2 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sBZTn34uM2 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBZTn34uM2 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sBZTn34uM2 .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sBZTnB37uk {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f5f5f5;
}
.cid-sBZTnB37uk .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sBZTnB37uk .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sBZTnB37uk .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBZTnB37uk .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sBZTnB37uk .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sxEGQDj7U1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sxEGQDj7U1 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sxEGQDj7U1 .row {
    text-align: center;
  }
  .cid-sxEGQDj7U1 .row > div {
    margin: auto;
  }
  .cid-sxEGQDj7U1 .social-row {
    justify-content: center;
  }
}
.cid-sxEGQDj7U1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sxEGQDj7U1 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 0rem;
  }
}
.cid-sxEGQDj7U1 .mbr-text {
  color: #bbbbbb;
}
.cid-sxEGQDj7U1 .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-sxEGQDj7U1 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sByrGsgp5P {
  background-image: url("../../../assets/images/nlpat-nlpacademyturkey-3.jpg");
}
.cid-sByrGsgp5P .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sByrGsgp5P .card {
    margin-bottom: 2rem!important;
  }
  .cid-sByrGsgp5P .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sByrGsgp5P .link-wrap {
    align-items: center;
  }
}
.cid-sByrGsgp5P li {
  font-size: 14px;
}
.cid-sByrGsgp5P .mbr-section-btn {
  padding-top: 0.5rem;
}
.cid-sByrGsgp5P .mbr-text,
.cid-sByrGsgp5P .link-wrap,
.cid-sByrGsgp5P .mbr-section-btn {
  color: #232323;
}
.cid-sByrGsgp5P .card-title,
.cid-sByrGsgp5P .card-box {
  color: #000000;
}
.cid-sByrGsgp5P .mbr-text {
  color: #232323;
}
.cid-sBZUpIW3CF {
  padding-top: 0px;
  background: linear-gradient(180deg, #99c5ff, #bed3f9);
}
.cid-sBZUpIW3CF .wave1 {
  opacity: 0.35;
  fill: #16315e;
}
.cid-sBZUpIW3CF .wave2 {
  fill: #16315e;
}
.cid-sBZUqgd7KO .mbr-text,
.cid-sBZUqgd7KO .mbr-section-btn {
  color: #000000;
}
.cid-sBZUqgd7KO .mbr-section-subtitle {
  color: #000000;
}
.cid-sBZUqgd7KO .mbr-section-title {
  color: #000000;
}
.cid-sD3p3hTrIR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sD3p3hTrIR .mbr-section-subtitle {
  text-align: center;
}
.cid-sD3p3hTrIR .mbr-text {
  text-align: center;
}
.cid-sBZTMKqfvV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sBZTMKqfvV .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sBZTMKqfvV .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBZTMKqfvV .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sBZTMKqfvV .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBZTMKqfvV .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sBZTMKqfvV .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sBZTMKqfvV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sC078x32Li {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-sC078x32Li .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sC078x32Li .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sC078x32Li .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sC078x32Li .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sC078x32Li .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sC079et4WM {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f5f5f5;
}
.cid-sC079et4WM .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sC079et4WM .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sC079et4WM .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sC079et4WM .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sC079et4WM .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sByrGuRkjY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sByrGuRkjY .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sByrGuRkjY .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sByrGuRkjY .row {
    text-align: center;
  }
  .cid-sByrGuRkjY .row > div {
    margin: auto;
  }
  .cid-sByrGuRkjY .social-row {
    justify-content: center;
  }
}
.cid-sByrGuRkjY .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sByrGuRkjY .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sByrGuRkjY .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sByrGuRkjY .list {
    margin-bottom: 0rem;
  }
}
.cid-sByrGuRkjY .mbr-text {
  color: #bbbbbb;
}
.cid-sByrGuRkjY .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-sByrGuRkjY .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sByrGuRkjY div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBZSuFxtyh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: linear-gradient(0deg, #ffffff 10%, #99c5ff 100%) !important;
}
.cid-sBzO7RLVD0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sBzO7RLVD0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBzO7RLVD0 .row {
  flex-direction: row-reverse;
}
.cid-sBzO7RLVD0 img {
  width: 100%;
}
.cid-sBzJwY3HcS {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sBzJwY3HcS .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-sBzJwY3HcS .panel-group {
  border: none;
}
.cid-sBzJwY3HcS .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sBzJwY3HcS .panel-body,
.cid-sBzJwY3HcS .card-header {
  padding: 1rem 0;
}
.cid-sBzJwY3HcS .panel-title-edit {
  color: #000000;
}
.cid-sBzJwY3HcS .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sCeL2YrhMg {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sCeL2YrhMg .content-wrapper {
  background: #f5f5f5;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-sCeL2YrhMg .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sCeL2YrhMg .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sCeL2YrhMg .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCeL2YrhMg .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sCeL2YrhMg .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sCeL2YrhMg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCeL2YrhMg .card-title {
  color: #000000;
}
.cid-sBZS409duT {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sBZS409duT .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-sBZS409duT .currentcost {
  color: #232323;
}
.cid-sBZS409duT .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sBZS409duT .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sBZS409duT .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBZS409duT .text-box {
    padding: 1rem;
  }
}
.cid-sBZS409duT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sC08lZ840x {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd399;
}
.cid-sC08lZ840x .mbr-section-title {
  color: #000000;
}
.cid-sBZXQQOrP4 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sBZXQQOrP4 .content-wrapper {
  background: #ffffff;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-sBZXQQOrP4 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sBZXQQOrP4 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBZXQQOrP4 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sBZXQQOrP4 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBZXQQOrP4 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sBZXQQOrP4 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sBZXQQOrP4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-sBZXQQOrP4 .card-title {
  color: #000000;
}
.cid-sC07PbPB3L {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-sC07PbPB3L .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sC07PbPB3L .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sC07PbPB3L .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sC07PbPB3L .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sC07PbPB3L .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sC07Qb797F {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f5f5f5;
}
.cid-sC07Qb797F .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sC07Qb797F .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sC07Qb797F .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sC07Qb797F .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sC07Qb797F .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sxEGQDj7U1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sxEGQDj7U1 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sxEGQDj7U1 .row {
    text-align: center;
  }
  .cid-sxEGQDj7U1 .row > div {
    margin: auto;
  }
  .cid-sxEGQDj7U1 .social-row {
    justify-content: center;
  }
}
.cid-sxEGQDj7U1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sxEGQDj7U1 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 0rem;
  }
}
.cid-sxEGQDj7U1 .mbr-text {
  color: #bbbbbb;
}
.cid-sxEGQDj7U1 .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-sxEGQDj7U1 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAgdUdMweT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: linear-gradient(0deg, #ffffff 10%, #99c5ff 100%) !important;
}
.cid-sAg95BJ04U {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sAg95BJ04U .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAg95BJ04U .row {
  flex-direction: row-reverse;
}
.cid-sAg95BJ04U img {
  width: 100%;
}
.cid-sAg97LuSnQ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sAg97LuSnQ .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-sAg97LuSnQ .panel-group {
  border: none;
}
.cid-sAg97LuSnQ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sAg97LuSnQ .panel-body,
.cid-sAg97LuSnQ .card-header {
  padding: 1rem 0;
}
.cid-sAg97LuSnQ .panel-title-edit {
  color: #000000;
}
.cid-sAg97LuSnQ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sCeKYMraTy {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sCeKYMraTy .content-wrapper {
  background: #f5f5f5;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-sCeKYMraTy .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sCeKYMraTy .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sCeKYMraTy .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCeKYMraTy .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sCeKYMraTy .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sCeKYMraTy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCeKYMraTy .card-title {
  color: #000000;
}
.cid-sBZRMwyJDM {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sBZRMwyJDM .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-sBZRMwyJDM .currentcost {
  color: #232323;
}
.cid-sBZRMwyJDM .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sBZRMwyJDM .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sBZRMwyJDM .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBZRMwyJDM .text-box {
    padding: 1rem;
  }
}
.cid-sBZRMwyJDM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sC08qsSa8o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd399;
}
.cid-sC08qsSa8o .mbr-section-title {
  color: #000000;
}
.cid-sBZRKXKh8p {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sBZRKXKh8p .content-wrapper {
  background: #ffffff;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-sBZRKXKh8p .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sBZRKXKh8p .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBZRKXKh8p .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sBZRKXKh8p .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBZRKXKh8p .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sBZRKXKh8p .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sBZRKXKh8p .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-sBZRKXKh8p .card-title {
  color: #000000;
}
.cid-sCeJF1utXL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-sCeJF1utXL .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sCeJF1utXL .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sCeJF1utXL .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCeJF1utXL .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sCeJF1utXL .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sCeJFwgiEM {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f5f5f5;
}
.cid-sCeJFwgiEM .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sCeJFwgiEM .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sCeJFwgiEM .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCeJFwgiEM .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sCeJFwgiEM .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sxEGQDj7U1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sxEGQDj7U1 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sxEGQDj7U1 .row {
    text-align: center;
  }
  .cid-sxEGQDj7U1 .row > div {
    margin: auto;
  }
  .cid-sxEGQDj7U1 .social-row {
    justify-content: center;
  }
}
.cid-sxEGQDj7U1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sxEGQDj7U1 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 0rem;
  }
}
.cid-sxEGQDj7U1 .mbr-text {
  color: #bbbbbb;
}
.cid-sxEGQDj7U1 .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-sxEGQDj7U1 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBZSxjTECE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: linear-gradient(0deg, #ffffff 10%, #99c5ff 100%) !important;
}
.cid-sAggRww72j {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sAggRww72j .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAggRww72j .row {
  flex-direction: row-reverse;
}
.cid-sAggRww72j img {
  width: 100%;
}
.cid-sBzPLgzPFg {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sBzPLgzPFg .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-sBzPLgzPFg .panel-group {
  border: none;
}
.cid-sBzPLgzPFg .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sBzPLgzPFg .panel-body,
.cid-sBzPLgzPFg .card-header {
  padding: 1rem 0;
}
.cid-sBzPLgzPFg .panel-title-edit {
  color: #000000;
}
.cid-sBzPLgzPFg .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sC05BbYSRV {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sC05BbYSRV .content-wrapper {
  background: #f5f5f5;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-sC05BbYSRV .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sC05BbYSRV .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sC05BbYSRV .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sC05BbYSRV .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sC05BbYSRV .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sC05BbYSRV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sC05BbYSRV .card-title {
  color: #000000;
}
.cid-sBZSyzFwUt {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sBZSyzFwUt .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-sBZSyzFwUt .currentcost {
  color: #232323;
}
.cid-sBZSyzFwUt .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sBZSyzFwUt .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sBZSyzFwUt .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBZSyzFwUt .text-box {
    padding: 1rem;
  }
}
.cid-sBZSyzFwUt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sC08v1hu1z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd399;
}
.cid-sC08v1hu1z .mbr-section-title {
  color: #000000;
}
.cid-sBZSA1nWXu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sBZSA1nWXu .content-wrapper {
  background: #ffffff;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-sBZSA1nWXu .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sBZSA1nWXu .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBZSA1nWXu .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sBZSA1nWXu .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBZSA1nWXu .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sBZSA1nWXu .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sBZSA1nWXu .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-sBZSA1nWXu .card-title {
  color: #000000;
}
.cid-sCeJJBRbaG {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-sCeJJBRbaG .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sCeJJBRbaG .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sCeJJBRbaG .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCeJJBRbaG .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sCeJJBRbaG .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sCeJK4AM6j {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f5f5f5;
}
.cid-sCeJK4AM6j .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sCeJK4AM6j .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sCeJK4AM6j .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCeJK4AM6j .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sCeJK4AM6j .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sxEGQDj7U1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sxEGQDj7U1 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sxEGQDj7U1 .row {
    text-align: center;
  }
  .cid-sxEGQDj7U1 .row > div {
    margin: auto;
  }
  .cid-sxEGQDj7U1 .social-row {
    justify-content: center;
  }
}
.cid-sxEGQDj7U1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sxEGQDj7U1 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 0rem;
  }
}
.cid-sxEGQDj7U1 .mbr-text {
  color: #bbbbbb;
}
.cid-sxEGQDj7U1 .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-sxEGQDj7U1 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sByAXgjaoO {
  background-image: url("../../../assets/images/nlpat-nlpacademyturkey-3.jpg");
}
.cid-sByAXgjaoO .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sByAXgjaoO .card {
    margin-bottom: 2rem!important;
  }
  .cid-sByAXgjaoO .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sByAXgjaoO .link-wrap {
    align-items: center;
  }
}
.cid-sByAXgjaoO li {
  font-size: 14px;
}
.cid-sByAXgjaoO .mbr-section-btn {
  padding-top: 0.5rem;
}
.cid-sByAXgjaoO .mbr-text,
.cid-sByAXgjaoO .link-wrap,
.cid-sByAXgjaoO .mbr-section-btn {
  color: #232323;
}
.cid-sByAXgjaoO .card-title,
.cid-sByAXgjaoO .card-box {
  color: #000000;
}
.cid-sByAXgjaoO .mbr-text {
  color: #232323;
}
.cid-sByAXgKGzO {
  padding-top: 0px;
  background: linear-gradient(180deg, #99c5ff, #bed3f9);
}
.cid-sByAXgKGzO .wave1 {
  opacity: 0.35;
  fill: #16315e;
}
.cid-sByAXgKGzO .wave2 {
  fill: #16315e;
}
.cid-sByAXgXC7c .mbr-text,
.cid-sByAXgXC7c .mbr-section-btn {
  color: #000000;
}
.cid-sByAXgXC7c .mbr-section-subtitle {
  color: #000000;
}
.cid-sByAXgXC7c .mbr-section-title {
  color: #000000;
}
.cid-sC07ExdySW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sC07ExdySW .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sC07ExdySW .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sC07ExdySW .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sC07ExdySW .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sC07ExdySW .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sC07ExdySW .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sC07ExdySW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sC07DcDDBe {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-sC07DcDDBe .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sC07DcDDBe .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sC07DcDDBe .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sC07DcDDBe .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sC07DcDDBe .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sC07DN0AAF {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f5f5f5;
}
.cid-sC07DN0AAF .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sC07DN0AAF .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 15px;
  background: #98dee8;
}
@media (max-width: 991px) {
  .cid-sC07DN0AAF .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sC07DN0AAF .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sC07DN0AAF .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sByAXhrRPg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sByAXhrRPg .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sByAXhrRPg .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sByAXhrRPg .row {
    text-align: center;
  }
  .cid-sByAXhrRPg .row > div {
    margin: auto;
  }
  .cid-sByAXhrRPg .social-row {
    justify-content: center;
  }
}
.cid-sByAXhrRPg .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sByAXhrRPg .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sByAXhrRPg .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sByAXhrRPg .list {
    margin-bottom: 0rem;
  }
}
.cid-sByAXhrRPg .mbr-text {
  color: #bbbbbb;
}
.cid-sByAXhrRPg .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-sByAXhrRPg .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sByAXhrRPg div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBWxhQ4hod {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBWxhQ4hod nav.navbar {
  position: fixed;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBWxhQ4hod .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBWxhQ4hod .dropdown-item:hover,
.cid-sBWxhQ4hod .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sBWxhQ4hod .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBWxhQ4hod .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBWxhQ4hod .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBWxhQ4hod .nav-link {
  position: relative;
}
.cid-sBWxhQ4hod .container {
  display: flex;
  margin: auto;
}
.cid-sBWxhQ4hod .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown-menu,
.cid-sBWxhQ4hod .navbar.opened {
  background: #ffffff !important;
}
.cid-sBWxhQ4hod .nav-item:focus,
.cid-sBWxhQ4hod .nav-link:focus {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBWxhQ4hod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBWxhQ4hod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBWxhQ4hod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBWxhQ4hod .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.opened {
  transition: all 0.3s;
}
.cid-sBWxhQ4hod .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBWxhQ4hod .navbar .navbar-logo img {
  width: auto;
}
.cid-sBWxhQ4hod .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBWxhQ4hod .navbar.collapsed {
  justify-content: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBWxhQ4hod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBWxhQ4hod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBWxhQ4hod .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBWxhQ4hod .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBWxhQ4hod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBWxhQ4hod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBWxhQ4hod .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBWxhQ4hod .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBWxhQ4hod .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBWxhQ4hod .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBWxhQ4hod .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBWxhQ4hod .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBWxhQ4hod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBWxhQ4hod .dropdown-item.active,
.cid-sBWxhQ4hod .dropdown-item:active {
  background-color: transparent;
}
.cid-sBWxhQ4hod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBWxhQ4hod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sBWxhQ4hod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBWxhQ4hod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBWxhQ4hod ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBWxhQ4hod .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBWxhQ4hod button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBWxhQ4hod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBWxhQ4hod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBWxhQ4hod .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBWxhQ4hod a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBWxhQ4hod .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-sBWxhQ4hod .navbar {
    height: 70px;
  }
  .cid-sBWxhQ4hod .navbar.opened {
    height: auto;
  }
  .cid-sBWxhQ4hod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCEzMuyqTA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sCEzMuyqTA img,
.cid-sCEzMuyqTA .item-img {
  width: 100%;
}
.cid-sCEzMuyqTA .item:focus,
.cid-sCEzMuyqTA span:focus {
  outline: none;
}
.cid-sCEzMuyqTA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sCEzMuyqTA .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sCEzMuyqTA .item {
  padding: 0;
  margin: 0;
}
.cid-sCEzMuyqTA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sCEzMuyqTA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCEzMuyqTA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sCEzMuyqTA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sCEzMuyqTA .mbr-section-title {
  color: #232323;
}
.cid-sxEGQDj7U1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sxEGQDj7U1 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sxEGQDj7U1 .row {
    text-align: center;
  }
  .cid-sxEGQDj7U1 .row > div {
    margin: auto;
  }
  .cid-sxEGQDj7U1 .social-row {
    justify-content: center;
  }
}
.cid-sxEGQDj7U1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sxEGQDj7U1 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sxEGQDj7U1 .list {
    margin-bottom: 0rem;
  }
}
.cid-sxEGQDj7U1 .mbr-text {
  color: #bbbbbb;
}
.cid-sxEGQDj7U1 .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-sxEGQDj7U1 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sxEGQDj7U1 div > *:last-child {
    margin-top: 0 !important;
  }
}
