body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #351c75 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #fcd84e !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #351c75 !important;
  border-color: #351c75 !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: #150b2f !important;
  border-color: #150b2f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #150b2f !important;
  border-color: #150b2f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #edb5bf !important;
  border-color: #edb5bf !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: #dc6f83 !important;
  border-color: #dc6f83 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #dc6f83 !important;
  border-color: #dc6f83 !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: #fcd84e !important;
  border-color: #fcd84e !important;
  color: #4a3b01 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #efbf04 !important;
  border-color: #efbf04 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #4a3b01 !important;
  background-color: #efbf04 !important;
  border-color: #efbf04 !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: #351c75;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #150b2f !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: #351c75 !important;
  border-color: #351c75 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #edb5bf;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #dc6f83 !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: #edb5bf !important;
  border-color: #edb5bf !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: #fcd84e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #efbf04 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #4a3b01 !important;
  background-color: #fcd84e !important;
  border-color: #fcd84e !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: #351c75 !important;
}
.text-secondary {
  color: #edb5bf !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #fcd84e !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: #100823 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d96378 !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: #e0b304 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #351c75;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #fcd84e;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #351c75;
  border-color: #351c75;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #351c75;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #683fd1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Poppins', 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: #351c75 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', 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: #351c75;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #351c75;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #351c75;
}
.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: #351c75;
  border-bottom-color: #351c75;
}
.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: #351c75 !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: #edb5bf !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='%23351c75' %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-sFGMsvHDIa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFGMsvHDIa nav.navbar {
  position: fixed;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFGMsvHDIa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFGMsvHDIa .dropdown-item:hover,
.cid-sFGMsvHDIa .dropdown-item:focus {
  background: #351c75 !important;
  color: white !important;
}
.cid-sFGMsvHDIa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFGMsvHDIa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFGMsvHDIa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFGMsvHDIa .nav-link {
  position: relative;
}
.cid-sFGMsvHDIa .container {
  display: flex;
  margin: auto;
}
.cid-sFGMsvHDIa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown-menu,
.cid-sFGMsvHDIa .navbar.opened {
  background: #ffffff !important;
}
.cid-sFGMsvHDIa .nav-item:focus,
.cid-sFGMsvHDIa .nav-link:focus {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFGMsvHDIa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.opened {
  transition: all 0.3s;
}
.cid-sFGMsvHDIa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFGMsvHDIa .navbar .navbar-logo img {
  width: auto;
}
.cid-sFGMsvHDIa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar.collapsed {
  justify-content: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFGMsvHDIa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFGMsvHDIa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFGMsvHDIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFGMsvHDIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFGMsvHDIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFGMsvHDIa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFGMsvHDIa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGMsvHDIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFGMsvHDIa .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown-item.active,
.cid-sFGMsvHDIa .dropdown-item:active {
  background-color: transparent;
}
.cid-sFGMsvHDIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFGMsvHDIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFGMsvHDIa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFGMsvHDIa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFGMsvHDIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFGMsvHDIa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar {
    height: 70px;
  }
  .cid-sFGMsvHDIa .navbar.opened {
    height: auto;
  }
  .cid-sFGMsvHDIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLACSJ5dJc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tLACSJ5dJc .carousel {
  height: 750px;
}
.cid-tLACSJ5dJc .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tLACSJ5dJc .carousel-item,
.cid-tLACSJ5dJc .carousel-inner {
  height: 100%;
}
.cid-tLACSJ5dJc .carousel-caption {
  bottom: 40px;
}
.cid-tLACSJ5dJc .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tLACSJ5dJc .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tLACSJ5dJc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tLACSJ5dJc .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tLACSJ5dJc .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tLACSJ5dJc .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tLACSJ5dJc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tLACSJ5dJc .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tLACSJ5dJc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLACSJ5dJc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tLACSJ5dJc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLACSJ5dJc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLACSJ5dJc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tLACSJ5dJc .carousel-indicators li.active,
.cid-tLACSJ5dJc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tLACSJ5dJc .carousel-indicators li::after,
.cid-tLACSJ5dJc .carousel-indicators li::before {
  content: none;
}
.cid-tLACSJ5dJc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tLACSJ5dJc .carousel-indicators {
    display: none !important;
  }
}
.cid-tLACSJ5dJc H5 {
  line-height: 1.3;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  width: 500px;
  position: relative;
}
.cid-tLACSJ5dJc P {
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
  color: #ffffff;
  width: 500px;
  position: relative;
  display: inline-block;
}
.cid-tLACSJ5dJc DIV {
  text-align: left;
}
.cid-tRewjjUbdF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #674ea7;
}
.cid-tRewjjUbdF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRewjjUbdF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRewjjUbdF .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tRewjjUbdF .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tRewjjUbdF .img-wrapper {
  width: 10rem;
  padding-right: 1.5rem;
}
.cid-tRewjjUbdF .content-head {
  max-width: 800px;
}
.cid-tRewjjUbdF .card-title {
  color: #fcd84e;
  text-align: center;
}
.cid-tRewjjUbdF .card-text {
  color: #ffffff;
  text-align: center;
}
.cid-tLFctWc7QX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLFctWc7QX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLFctWc7QX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLziB9VHrw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tLziB9VHrw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLziB9VHrw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLziB9VHrw .row {
  flex-direction: row-reverse;
}
.cid-tLziB9VHrw .video-wrapper iframe {
  width: 100%;
}
.cid-tLziB9VHrw .mbr-section-title,
.cid-tLziB9VHrw .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tLziB9VHrw .text-wrapper {
    padding: 2rem;
  }
}
.cid-tLziB9VHrw .mbr-section-title {
  text-align: center;
  color: #351c75;
}
.cid-tLziB9VHrw .mbr-text {
  color: #5f6366;
  text-align: justify;
}
.cid-tR9sQWBXaU {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #674ea7;
}
.cid-tR9sQWBXaU img,
.cid-tR9sQWBXaU .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tR9sQWBXaU .item:focus,
.cid-tR9sQWBXaU span:focus {
  outline: none;
}
.cid-tR9sQWBXaU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tR9sQWBXaU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tR9sQWBXaU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tR9sQWBXaU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tR9sQWBXaU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tR9sQWBXaU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tR9sQWBXaU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tR9sQWBXaU .mbr-section-title {
  color: #ffffff;
}
.cid-tR9sQWBXaU .mbr-text,
.cid-tR9sQWBXaU .mbr-section-btn {
  text-align: left;
}
.cid-tR9sQWBXaU .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tR9sQWBXaU .item-subtitle {
  text-align: left;
  color: #5f6366;
}
.cid-GpliV9Hwk2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-GpliV9Hwk2 .feature43 {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}
.cid-GpliV9Hwk2 .feature43:hover {
  background: #674ea7;
  border-radius: 25px;
  box-shadow: 0 1rem 3rem #674ea7;
}
.cid-GpliV9Hwk2 .feature43:hover .feature43-image {
  color: #ffffff !important;
  transform: scale(0.75);
}
.cid-GpliV9Hwk2 .feature43-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
  max-width: 96px;
  max-height: 96px;
}
.cid-GpliV9Hwk2 .feature43:hover .feature43-text {
  color: #ffffff !important;
  margin-top: 0;
}
.cid-GpliV9Hwk2 .feature43-text {
  margin-top: 20px;
  transition: all 0.5s;
}
.cid-GpliV9Hwk2 img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1600px) {
  .cid-GpliV9Hwk2 .feature43 {
    min-height: inherit;
  }
}
.cid-GpliV9Hwk2 P {
  color: #351c75;
  text-align: center;
}
.cid-GpliV9Hwk2 H2 {
  color: #351c75;
}
.cid-YHsj9vhQUD {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-YHsj9vhQUD .feature43 {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}
.cid-YHsj9vhQUD .feature43:hover {
  background: #674ea7;
  border-radius: 25px;
  box-shadow: 0 1rem 3rem #674ea7;
}
.cid-YHsj9vhQUD .feature43:hover .feature43-image {
  color: #ffffff !important;
  transform: scale(0.75);
}
.cid-YHsj9vhQUD .feature43-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
  max-width: 96px;
  max-height: 96px;
}
.cid-YHsj9vhQUD .feature43:hover .feature43-text {
  color: #ffffff !important;
  margin-top: 0;
}
.cid-YHsj9vhQUD .feature43-text {
  margin-top: 20px;
  transition: all 0.5s;
}
.cid-YHsj9vhQUD img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1600px) {
  .cid-YHsj9vhQUD .feature43 {
    min-height: inherit;
  }
}
.cid-YHsj9vhQUD P {
  color: #351c75;
}
.cid-tNh1Hd13US {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #674ea7;
}
.cid-tNh1Hd13US .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNh1Hd13US .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNh1Hd13US .mbr-section-title {
  color: #ffffff;
}
.cid-tNWLdXl271 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #674ea7;
}
.cid-tNWLdXl271 .top-dec {
  text-align: right;
  margin-top: -80px;
}
.cid-tNWLdXl271 .top-dec img {
  max-width: 270px;
}
.cid-tNWLdXl271 .left-image {
  position: relative;
}
.cid-tNWLdXl271 .left-image img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.cid-tNWLdXl271 .left-image .info {
  position: relative;
}
.cid-tNWLdXl271 .left-image .info .inner-content {
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-right: 75px;
  position: absolute;
  margin-top: -100px;
  padding: 30px;
}
.cid-tNWLdXl271 .left-image ul li {
  display: inline-block;
  margin-right: 20px;
}
.cid-tNWLdXl271 .left-image ul li:last-child {
  margin-right: 0px;
}
.cid-tNWLdXl271 .left-image ul li i {
  margin-right: 8px;
}
.cid-tNWLdXl271 .left-image h4 {
  margin: 20px 0px 15px 0px;
}
.cid-tNWLdXl271 .dright {
  margin-left: 30px;
}
.cid-tNWLdXl271 .dright ul li {
  display: inline-flex;
  width: 100%;
  margin-bottom: 30px;
}
.cid-tNWLdXl271 .dright .left-content {
  margin-right: 45px;
}
.cid-tNWLdXl271 .dright .left-content span i {
  margin-right: 8px;
}
.cid-tNWLdXl271 .dright .left-content h4 {
  margin: 20px 0px 15px 0px;
}
.cid-tNWLdXl271 .dright .right-image img {
  width: 250px;
  border-radius: 20px;
}
.cid-tNWLdXl271 .main-blue-button a {
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  margin-top: 15px;
}
@media (max-width: 992px) {
  .cid-tNWLdXl271 .left-image .info .inner-content {
    position: relative;
    margin-right: 0px;
    overflow: visible !important;
  }
  .cid-tNWLdXl271 .left-image .info .main-blue-button {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }
  .cid-tNWLdXl271 .left-image {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .cid-tNWLdXl271 .dright {
    margin-left: 0px;
  }
  .cid-tNWLdXl271 .dright ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .cid-tNWLdXl271 .dright .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .cid-tNWLdXl271 .dright .right-image,
  .cid-tNWLdXl271 .dright .right-image img {
    width: 100%;
  }
}
.cid-tNWLdXl271 LI {
  color: #000000;
}
.cid-tNWLdXl271 H4 {
  color: #ffffff;
}
.cid-tNWLdXl271 .mbr-text2 {
  color: #bbbbbb;
}
.cid-tNWLdXl271 SPAN {
  color: #fcd84e;
}
.cid-tNWLdXl271 .mbr-text {
  color: #ffffff;
}
.cid-tNWLdXl271 .mbr-texti {
  color: #5f6366;
}
.cid-tNWLdXl271 .mbr-title {
  color: #e6c63b;
}
.cid-tNWLdXl271 .styleul SPAN {
  color: #e6c63b;
}
.cid-tUgB1x98rR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUgB1x98rR h2 {
  text-align: center;
}
.cid-tUgB1x98rR h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tUgB1x98rR p {
  color: #767676;
}
.cid-tUgB1x98rR img {
  object-fit: cover;
}
.cid-tUgB1x98rR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tUgB1x98rR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tUgB1x98rR .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tUgB1x98rR .mbr-section-subtitle {
  color: #767676;
}
.cid-tUgB1x98rR .card-title {
  font-weight: 500;
}
.cid-tUgB1x98rR .card-img {
  text-align: inherit;
}
.cid-tUgB1x98rR .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tUgB1x98rR .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tUgB1x98rR .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tUgB1x98rR .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tUgB1x98rR .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-tUgB1x98rR .mbr-section-text {
  text-align: left;
  color: #351c75;
}
.cid-tUgB2O85yu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUgB2O85yu .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tUgB2O85yu .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tUgB2O85yu .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.cid-tUgB2O85yu .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-tUgB2O85yu .card-front img {
  height: 100%;
  min-width: 100%;
  width: auto;
}
.cid-tUgB2O85yu .card_back {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  color: #ffffff;
  background-color: #674ea7;
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.cid-tUgB2O85yu .card {
  min-height: 300px;
}
.cid-tUgB2O85yu .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-tUgB2O85yu .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cid-tUgB2O85yu .builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.cid-tUgB2O85yu .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.cid-tUgB2O85yu H4 {
  color: #fcd84e;
  text-align: left;
}
.cid-tUgB2O85yu P {
  text-align: left;
}
.cid-tNh7J42sHi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #674ea7;
}
.cid-tNh7J42sHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNh7J42sHi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNh7J42sHi .item {
  padding-bottom: 2rem;
}
.cid-tNh7J42sHi .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tNh7J42sHi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tNh7J42sHi .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tNh7J42sHi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tNh7J42sHi .carousel-control,
.cid-tNh7J42sHi .close {
  background: #1b1b1b;
}
.cid-tNh7J42sHi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tNh7J42sHi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tNh7J42sHi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tNh7J42sHi .carousel-control-next span {
  margin-left: 5px;
}
.cid-tNh7J42sHi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tNh7J42sHi .close::before {
  content: '\e91a';
}
.cid-tNh7J42sHi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tNh7J42sHi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tNh7J42sHi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNh7J42sHi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNh7J42sHi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tNh7J42sHi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tNh7J42sHi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tNh7J42sHi .carousel-indicators li.active,
.cid-tNh7J42sHi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tNh7J42sHi .carousel-indicators li::after,
.cid-tNh7J42sHi .carousel-indicators li::before {
  content: none;
}
.cid-tNh7J42sHi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tNh7J42sHi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tNh7J42sHi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tNh7J42sHi .carousel-indicators {
    display: none;
  }
}
.cid-tNh7J42sHi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tNh7J42sHi .carousel-inner > .active {
  display: block;
}
.cid-tNh7J42sHi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNh7J42sHi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNh7J42sHi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tNh7J42sHi .carousel-control,
  .cid-tNh7J42sHi .carousel-indicators,
  .cid-tNh7J42sHi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tNh7J42sHi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tNh7J42sHi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tNh7J42sHi .carousel-indicators .active,
.cid-tNh7J42sHi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tNh7J42sHi .carousel-indicators .active {
  background: #fff;
}
.cid-tNh7J42sHi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tNh7J42sHi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tNh7J42sHi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tNh7J42sHi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tNh7J42sHi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tNh7J42sHi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tNh7J42sHi .carousel {
  width: 100%;
}
.cid-tNh7J42sHi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tNh7J42sHi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tNh7J42sHi .modal.fade .modal-dialog,
.cid-tNh7J42sHi .modal.in .modal-dialog {
  transform: none;
}
.cid-tNh7J42sHi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tNh7J42sHi H6 {
  text-align: center;
}
.cid-tNh7J42sHi H3 {
  color: #ffffff;
}
.cid-tRkekyqWUH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #674ea7;
}
.cid-tRkekyqWUH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRkekyqWUH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRkekyqWUH .item {
  padding-bottom: 2rem;
}
.cid-tRkekyqWUH .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tRkekyqWUH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tRkekyqWUH .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tRkekyqWUH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tRkekyqWUH .carousel-control,
.cid-tRkekyqWUH .close {
  background: #1b1b1b;
}
.cid-tRkekyqWUH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tRkekyqWUH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tRkekyqWUH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tRkekyqWUH .carousel-control-next span {
  margin-left: 5px;
}
.cid-tRkekyqWUH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tRkekyqWUH .close::before {
  content: '\e91a';
}
.cid-tRkekyqWUH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tRkekyqWUH .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tRkekyqWUH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRkekyqWUH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tRkekyqWUH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tRkekyqWUH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tRkekyqWUH .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tRkekyqWUH .carousel-indicators li.active,
.cid-tRkekyqWUH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tRkekyqWUH .carousel-indicators li::after,
.cid-tRkekyqWUH .carousel-indicators li::before {
  content: none;
}
.cid-tRkekyqWUH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tRkekyqWUH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tRkekyqWUH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tRkekyqWUH .carousel-indicators {
    display: none;
  }
}
.cid-tRkekyqWUH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tRkekyqWUH .carousel-inner > .active {
  display: block;
}
.cid-tRkekyqWUH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRkekyqWUH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRkekyqWUH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tRkekyqWUH .carousel-control,
  .cid-tRkekyqWUH .carousel-indicators,
  .cid-tRkekyqWUH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tRkekyqWUH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tRkekyqWUH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tRkekyqWUH .carousel-indicators .active,
.cid-tRkekyqWUH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tRkekyqWUH .carousel-indicators .active {
  background: #fff;
}
.cid-tRkekyqWUH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tRkekyqWUH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tRkekyqWUH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tRkekyqWUH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tRkekyqWUH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tRkekyqWUH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tRkekyqWUH .carousel {
  width: 100%;
}
.cid-tRkekyqWUH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tRkekyqWUH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tRkekyqWUH .modal.fade .modal-dialog,
.cid-tRkekyqWUH .modal.in .modal-dialog {
  transform: none;
}
.cid-tRkekyqWUH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tRkekyqWUH H6 {
  text-align: center;
}
.cid-tRkekyqWUH H3 {
  color: #ffffff;
}
.cid-sFGVxOqzIN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fcd84e;
}
.cid-sFGVxOqzIN .media-container-row {
  justify-content: space-between;
}
.cid-sFGVxOqzIN .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sFGVxOqzIN .text-content {
    max-width: none;
  }
}
.cid-sFGVxOqzIN .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #674ea7;
  border: 2px solid #674ea7;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sFGVxOqzIN .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sFGVxOqzIN .mbr-iconfont-social:hover {
  background-color: #674ea7;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sFGVxOqzIN .icons {
    justify-content: center !important;
  }
  .cid-sFGVxOqzIN .text-content * {
    text-align: center;
  }
}
.cid-sFGVxOqzIN .mbr-section-title {
  color: #351c75;
}
.cid-sFGVxOqzIN P {
  color: #5f6366;
}
.cid-sFGSOnwtIp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-sFGSOnwtIp .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-c4PPvr8zuI .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 53px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-c4PPvr8zuI .my-float {
  margin-top: 16px;
}
.cid-c4PPvr8zuI P {
  color: #232323;
}
.cid-c4PPvr8zuI DIV {
  color: #ffffff;
}
.cid-c4PPvr8zuI H10 {
  color: #767676;
}
.cid-c4PPvr8zuI .hidden {
  display: none;
}
.cid-sFGMsvHDIa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFGMsvHDIa nav.navbar {
  position: fixed;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFGMsvHDIa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFGMsvHDIa .dropdown-item:hover,
.cid-sFGMsvHDIa .dropdown-item:focus {
  background: #351c75 !important;
  color: white !important;
}
.cid-sFGMsvHDIa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFGMsvHDIa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFGMsvHDIa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFGMsvHDIa .nav-link {
  position: relative;
}
.cid-sFGMsvHDIa .container {
  display: flex;
  margin: auto;
}
.cid-sFGMsvHDIa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown-menu,
.cid-sFGMsvHDIa .navbar.opened {
  background: #ffffff !important;
}
.cid-sFGMsvHDIa .nav-item:focus,
.cid-sFGMsvHDIa .nav-link:focus {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFGMsvHDIa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.opened {
  transition: all 0.3s;
}
.cid-sFGMsvHDIa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFGMsvHDIa .navbar .navbar-logo img {
  width: auto;
}
.cid-sFGMsvHDIa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar.collapsed {
  justify-content: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFGMsvHDIa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFGMsvHDIa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFGMsvHDIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFGMsvHDIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFGMsvHDIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFGMsvHDIa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFGMsvHDIa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGMsvHDIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFGMsvHDIa .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown-item.active,
.cid-sFGMsvHDIa .dropdown-item:active {
  background-color: transparent;
}
.cid-sFGMsvHDIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFGMsvHDIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFGMsvHDIa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFGMsvHDIa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFGMsvHDIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFGMsvHDIa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar {
    height: 70px;
  }
  .cid-sFGMsvHDIa .navbar.opened {
    height: auto;
  }
  .cid-sFGMsvHDIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuQ7biPH1u {
  display: flex;
  padding-top: 435px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hippocampus-group-photo-2.webp");
}
.cid-uuQ7biPH1u .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-uuQ7biPH1u .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uuQ7biPH1u {
    align-items: flex-end;
  }
  .cid-uuQ7biPH1u .row {
    justify-content: flex-start;
  }
  .cid-uuQ7biPH1u .content-wrap {
    width: 20%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uuQ7biPH1u .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uuQ7biPH1u {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uuQ7biPH1u .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uuQ7biPH1u .content-wrap {
    width: 100%;
  }
}
.cid-tRk8Vg5W7I {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #674ea7;
}
.cid-tRk8Vg5W7I .mbr-section-subtitle {
  color: #767676;
}
.cid-tRk8Vg5W7I H2 {
  color: #f9f9f9;
}
.cid-tNVm2L3clF {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tNVm2L3clF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNVm2L3clF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNVm2L3clF .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tNVm2L3clF .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tNVm2L3clF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tNVm2L3clF .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tNVm2L3clF .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tNVm2L3clF .mbr-section-title {
  color: #351c75;
}
.cid-tResANcSRW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #674ea7;
}
.cid-tResANcSRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tResANcSRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tResANcSRW .timeline-element {
  position: relative;
}
.cid-tResANcSRW .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-tResANcSRW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tResANcSRW .mbr-section-title,
.cid-tResANcSRW .mbr-section-subtitle,
.cid-tResANcSRW .timeline-date {
  text-align: center;
}
.cid-tResANcSRW .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tResANcSRW .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-tResANcSRW .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-tResANcSRW .row:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-tResANcSRW .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-tResANcSRW .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tResANcSRW .timeline-date-wrapper,
  .cid-tResANcSRW .timeline-text-wrapper,
  .cid-tResANcSRW .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-tResANcSRW .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-tResANcSRW .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tResANcSRW .timeline-date-wrapper,
  .cid-tResANcSRW .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tResANcSRW .timeline-date-wrapper,
  .cid-tResANcSRW .timeline-text-wrapper,
  .cid-tResANcSRW .image-wrapper {
    padding: 2rem;
  }
}
.cid-tResANcSRW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tResANcSRW .mbr-timeline-title {
  color: #ffffff;
}
.cid-tResANcSRW .mbr-text {
  color: #ffffff;
}
.cid-tResX3U9ij {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tResX3U9ij .mbr-fallback-image.disabled {
  display: none;
}
.cid-tResX3U9ij .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tResX3U9ij .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tResX3U9ij .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tResX3U9ij .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tResX3U9ij .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tResX3U9ij .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tResX3U9ij .mbr-section-title {
  color: #351c75;
}
.cid-tRetm2JSDd {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tRetm2JSDd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRetm2JSDd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRetm2JSDd .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tRetm2JSDd .team-card:hover {
  transform: translateY(-10px);
}
.cid-tRetm2JSDd .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tRetm2JSDd .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tRetm2JSDd .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tRetm2JSDd .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tRetm2JSDd .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tRetm2JSDd .social-row {
  text-align: center;
}
.cid-tRetm2JSDd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #674ea7;
  transition: all 0.3s;
}
.cid-tRetm2JSDd .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #674ea7;
  font-size: 1.5rem;
}
.cid-tRetm2JSDd .social-row .soc-item:hover {
  background-color: #674ea7;
}
.cid-tRetm2JSDd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tRetm2JSDd .mbr-section-title {
  color: #351c75;
  text-align: center;
}
.cid-tRetmQY9Xg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tRetmQY9Xg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRetmQY9Xg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRetmQY9Xg .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tRetmQY9Xg .team-card:hover {
  transform: translateY(-10px);
}
.cid-tRetmQY9Xg .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tRetmQY9Xg .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tRetmQY9Xg .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tRetmQY9Xg .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tRetmQY9Xg .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tRetmQY9Xg .social-row {
  text-align: center;
}
.cid-tRetmQY9Xg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #674ea7;
  transition: all 0.3s;
}
.cid-tRetmQY9Xg .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #674ea7;
  font-size: 1.5rem;
}
.cid-tRetmQY9Xg .social-row .soc-item:hover {
  background-color: #674ea7;
}
.cid-tRetmQY9Xg .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tRetmQY9Xg .mbr-section-title {
  color: #351c75;
}
.cid-tReu3QAuko {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tReu3QAuko img,
.cid-tReu3QAuko .item-img {
  width: 100%;
}
.cid-tReu3QAuko .item:focus,
.cid-tReu3QAuko span:focus {
  outline: none;
}
.cid-tReu3QAuko .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tReu3QAuko .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tReu3QAuko .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tReu3QAuko .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tReu3QAuko .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tReu3QAuko .mbr-section-title {
  color: #351c75;
  text-align: center;
}
.cid-tReu3QAuko .mbr-text,
.cid-tReu3QAuko .mbr-section-btn {
  text-align: left;
}
.cid-tReu3QAuko .item-title {
  text-align: left;
}
.cid-tReu3QAuko .item-subtitle {
  text-align: center;
}
.cid-tReu4uXZ1h {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tReu4uXZ1h img,
.cid-tReu4uXZ1h .item-img {
  width: 100%;
}
.cid-tReu4uXZ1h .item:focus,
.cid-tReu4uXZ1h span:focus {
  outline: none;
}
.cid-tReu4uXZ1h .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tReu4uXZ1h .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tReu4uXZ1h .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tReu4uXZ1h .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tReu4uXZ1h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tReu4uXZ1h .mbr-section-title {
  color: #351c75;
}
.cid-tReu4uXZ1h .mbr-text,
.cid-tReu4uXZ1h .mbr-section-btn {
  text-align: left;
}
.cid-tReu4uXZ1h .item-title {
  text-align: left;
}
.cid-tReu4uXZ1h .item-subtitle {
  text-align: center;
}
.cid-tRmbc24k5v {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fcd84e;
}
@media (max-width: 767px) {
  .cid-tRmbc24k5v .content {
    text-align: center;
  }
  .cid-tRmbc24k5v .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tRmbc24k5v .img-logo img {
  height: 6rem;
  display: block;
  width: auto;
}
.cid-tRmbc24k5v .form-group,
.cid-tRmbc24k5v .input-group-btn {
  padding: 0;
}
.cid-tRmbc24k5v .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-tRmbc24k5v .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-tRmbc24k5v .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tRmbc24k5v .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tRmbc24k5v .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tRmbc24k5v .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tRmbc24k5v .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tRmbc24k5v .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tRmbc24k5v .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tRmbc24k5v .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tRmbc24k5v .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tRmbc24k5v .foot-logo {
    text-align: center !important;
  }
  .cid-tRmbc24k5v .foot-title {
    text-align: center !important;
  }
  .cid-tRmbc24k5v .mbr-text {
    text-align: center !important;
  }
  .cid-tRmbc24k5v .form-group {
    margin: 0;
  }
}
.cid-tRmbc24k5v .foot-text {
  color: #351c75;
}
.cid-tRmbc24k5v .foot-title {
  color: #351c75;
}
.cid-tRmbc24k5v .mbr-links-column {
  color: #351c75;
}
.cid-sFGSOnwtIp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-sFGSOnwtIp .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tRf9U69HuP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tRf9U69HuP nav.navbar {
  position: fixed;
}
.cid-tRf9U69HuP .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-tRf9U69HuP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRf9U69HuP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRf9U69HuP .dropdown-item:hover,
.cid-tRf9U69HuP .dropdown-item:focus {
  background: #351c75 !important;
  color: white !important;
}
.cid-tRf9U69HuP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRf9U69HuP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRf9U69HuP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRf9U69HuP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRf9U69HuP .nav-link {
  position: relative;
}
.cid-tRf9U69HuP .container {
  display: flex;
  margin: auto;
}
.cid-tRf9U69HuP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRf9U69HuP .dropdown-menu,
.cid-tRf9U69HuP .navbar.opened {
  background: #ffffff !important;
}
.cid-tRf9U69HuP .nav-item:focus,
.cid-tRf9U69HuP .nav-link:focus {
  outline: none;
}
.cid-tRf9U69HuP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRf9U69HuP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRf9U69HuP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRf9U69HuP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRf9U69HuP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRf9U69HuP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRf9U69HuP .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-tRf9U69HuP .navbar.opened {
  transition: all 0.3s;
}
.cid-tRf9U69HuP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRf9U69HuP .navbar .navbar-logo img {
  width: auto;
}
.cid-tRf9U69HuP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRf9U69HuP .navbar.collapsed {
  justify-content: center;
}
.cid-tRf9U69HuP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRf9U69HuP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRf9U69HuP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tRf9U69HuP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRf9U69HuP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRf9U69HuP .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-tRf9U69HuP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRf9U69HuP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRf9U69HuP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRf9U69HuP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRf9U69HuP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRf9U69HuP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRf9U69HuP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRf9U69HuP .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-tRf9U69HuP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRf9U69HuP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRf9U69HuP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRf9U69HuP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRf9U69HuP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRf9U69HuP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRf9U69HuP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRf9U69HuP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRf9U69HuP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRf9U69HuP .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-tRf9U69HuP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRf9U69HuP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRf9U69HuP .dropdown-item.active,
.cid-tRf9U69HuP .dropdown-item:active {
  background-color: transparent;
}
.cid-tRf9U69HuP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRf9U69HuP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRf9U69HuP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRf9U69HuP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRf9U69HuP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRf9U69HuP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRf9U69HuP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRf9U69HuP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRf9U69HuP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRf9U69HuP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tRf9U69HuP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRf9U69HuP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRf9U69HuP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRf9U69HuP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRf9U69HuP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRf9U69HuP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRf9U69HuP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRf9U69HuP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRf9U69HuP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRf9U69HuP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRf9U69HuP .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-tRf9U69HuP .navbar {
    height: 70px;
  }
  .cid-tRf9U69HuP .navbar.opened {
    height: auto;
  }
  .cid-tRf9U69HuP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRf9U7lHOv {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/kindergarten.png");
}
.cid-tRf9U7lHOv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRf9U7lHOv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRf9U7lHOv .mbr-section-title {
  color: #ffffff;
}
.cid-tRfcvqViav {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #674ea7;
}
.cid-tRfcvqViav .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tRfcvqViav .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tRk0PI3gRO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRk0PI3gRO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRk0PI3gRO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRk0PI3gRO .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRk0PI3gRO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRk0PI3gRO .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRk0PI3gRO .mbr-text {
  color: #351c75;
}
.cid-tRk0PI3gRO .name {
  color: #5f6366;
}
.cid-tRk1ppFnHJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg4.webp");
}
.cid-tRk1ppFnHJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRk1ppFnHJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRk1ppFnHJ .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tRk1ppFnHJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRk1ppFnHJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRk1ppFnHJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRk1ppFnHJ .mbr-text {
  color: #351c75;
}
.cid-tRk1ppFnHJ .name {
  color: #5f6366;
}
.cid-tRk1EkQBR4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRk1EkQBR4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRk1EkQBR4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRk1EkQBR4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRk1EkQBR4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRk1EkQBR4 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRk1EkQBR4 .mbr-text {
  color: #351c75;
}
.cid-tRk1EkQBR4 .name {
  color: #5f6366;
}
.cid-tRk1MKxiuY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg4.webp");
}
.cid-tRk1MKxiuY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRk1MKxiuY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRk1MKxiuY .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tRk1MKxiuY .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRk1MKxiuY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRk1MKxiuY .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRk1MKxiuY .mbr-text {
  color: #351c75;
}
.cid-tRk1MKxiuY .name {
  color: #5f6366;
}
.cid-tRk1VCz5yq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg3-2.png");
}
.cid-tRk1VCz5yq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRk1VCz5yq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRk1VCz5yq .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRk1VCz5yq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRk1VCz5yq .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRk1VCz5yq .mbr-text {
  color: #351c75;
}
.cid-tRk1VCz5yq .name {
  color: #5f6366;
}
.cid-tUgCzvWcbx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg4.png");
}
.cid-tUgCzvWcbx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUgCzvWcbx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUgCzvWcbx .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tUgCzvWcbx .text-wrapper {
    padding: 2rem;
  }
}
.cid-tUgCzvWcbx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tUgCzvWcbx .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tUgCzvWcbx .mbr-text {
  color: #351c75;
}
.cid-tUgCzvWcbx .name {
  color: #5f6366;
}
.cid-tRk2grjiPU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
}
.cid-tRk2grjiPU .mbr-section-subtitle {
  color: #767676;
}
.cid-tRk2grjiPU .btn {
  margin: 0 0 .5rem 0;
}
.cid-tRk2grjiPU H2 {
  color: #ffffff;
}
.cid-tRmb0IaFZL {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fcd84e;
}
@media (max-width: 767px) {
  .cid-tRmb0IaFZL .content {
    text-align: center;
  }
  .cid-tRmb0IaFZL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tRmb0IaFZL .img-logo img {
  height: 6rem;
  display: block;
  width: auto;
}
.cid-tRmb0IaFZL .form-group,
.cid-tRmb0IaFZL .input-group-btn {
  padding: 0;
}
.cid-tRmb0IaFZL .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-tRmb0IaFZL .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-tRmb0IaFZL .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tRmb0IaFZL .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tRmb0IaFZL .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tRmb0IaFZL .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tRmb0IaFZL .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tRmb0IaFZL .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tRmb0IaFZL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tRmb0IaFZL .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tRmb0IaFZL .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tRmb0IaFZL .foot-logo {
    text-align: center !important;
  }
  .cid-tRmb0IaFZL .foot-title {
    text-align: center !important;
  }
  .cid-tRmb0IaFZL .mbr-text {
    text-align: center !important;
  }
  .cid-tRmb0IaFZL .form-group {
    margin: 0;
  }
}
.cid-tRmb0IaFZL .foot-text {
  color: #351c75;
}
.cid-tRmb0IaFZL .foot-title {
  color: #351c75;
}
.cid-tRmb0IaFZL .mbr-links-column {
  color: #351c75;
}
.cid-tRf9U9ocPb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-tRf9U9ocPb .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sFGMsvHDIa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFGMsvHDIa nav.navbar {
  position: fixed;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFGMsvHDIa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFGMsvHDIa .dropdown-item:hover,
.cid-sFGMsvHDIa .dropdown-item:focus {
  background: #351c75 !important;
  color: white !important;
}
.cid-sFGMsvHDIa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFGMsvHDIa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFGMsvHDIa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFGMsvHDIa .nav-link {
  position: relative;
}
.cid-sFGMsvHDIa .container {
  display: flex;
  margin: auto;
}
.cid-sFGMsvHDIa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown-menu,
.cid-sFGMsvHDIa .navbar.opened {
  background: #ffffff !important;
}
.cid-sFGMsvHDIa .nav-item:focus,
.cid-sFGMsvHDIa .nav-link:focus {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFGMsvHDIa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.opened {
  transition: all 0.3s;
}
.cid-sFGMsvHDIa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFGMsvHDIa .navbar .navbar-logo img {
  width: auto;
}
.cid-sFGMsvHDIa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar.collapsed {
  justify-content: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFGMsvHDIa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFGMsvHDIa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFGMsvHDIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFGMsvHDIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFGMsvHDIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFGMsvHDIa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFGMsvHDIa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGMsvHDIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFGMsvHDIa .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown-item.active,
.cid-sFGMsvHDIa .dropdown-item:active {
  background-color: transparent;
}
.cid-sFGMsvHDIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFGMsvHDIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFGMsvHDIa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFGMsvHDIa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFGMsvHDIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFGMsvHDIa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar {
    height: 70px;
  }
  .cid-sFGMsvHDIa .navbar.opened {
    height: auto;
  }
  .cid-sFGMsvHDIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRf1zuByMx {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/school-banner.webp");
}
.cid-tRf1zuByMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRf1zuByMx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRf1zuByMx .mbr-section-title {
  color: #ffffff;
}
.cid-tRk9ju1mqK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #674ea7;
}
.cid-tRk9ju1mqK .mbr-section-subtitle {
  color: #767676;
}
.cid-tRk9ju1mqK H2 {
  color: #f9f9f9;
}
.cid-tVbHWFCdA7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tVbyacx4Nb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbyacx4Nb img,
.cid-tVbyacx4Nb .item-img {
  width: 100%;
}
.cid-tVbyacx4Nb .item:focus,
.cid-tVbyacx4Nb span:focus {
  outline: none;
}
.cid-tVbyacx4Nb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbyacx4Nb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbyacx4Nb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbyacx4Nb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbyacx4Nb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbyacx4Nb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbyacx4Nb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbyacx4Nb .mbr-section-title {
  color: #232323;
}
.cid-tVbyacx4Nb .mbr-text,
.cid-tVbyacx4Nb .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbyacx4Nb .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbyacx4Nb .item-subtitle {
  text-align: left;
}
.cid-tVbybgm2W1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbybgm2W1 img,
.cid-tVbybgm2W1 .item-img {
  width: 100%;
}
.cid-tVbybgm2W1 .item:focus,
.cid-tVbybgm2W1 span:focus {
  outline: none;
}
.cid-tVbybgm2W1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbybgm2W1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbybgm2W1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbybgm2W1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbybgm2W1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbybgm2W1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbybgm2W1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbybgm2W1 .mbr-section-title {
  color: #232323;
}
.cid-tVbybgm2W1 .mbr-text,
.cid-tVbybgm2W1 .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbybgm2W1 .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbybgm2W1 .item-subtitle {
  text-align: left;
}
.cid-tVbybY6xVn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbybY6xVn img,
.cid-tVbybY6xVn .item-img {
  width: 100%;
}
.cid-tVbybY6xVn .item:focus,
.cid-tVbybY6xVn span:focus {
  outline: none;
}
.cid-tVbybY6xVn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbybY6xVn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbybY6xVn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbybY6xVn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbybY6xVn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbybY6xVn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbybY6xVn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbybY6xVn .mbr-section-title {
  color: #232323;
}
.cid-tVbybY6xVn .mbr-text,
.cid-tVbybY6xVn .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbybY6xVn .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbybY6xVn .item-subtitle {
  text-align: left;
}
.cid-tVbycAo1QL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbycAo1QL img,
.cid-tVbycAo1QL .item-img {
  width: 100%;
}
.cid-tVbycAo1QL .item:focus,
.cid-tVbycAo1QL span:focus {
  outline: none;
}
.cid-tVbycAo1QL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbycAo1QL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbycAo1QL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbycAo1QL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbycAo1QL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbycAo1QL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbycAo1QL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbycAo1QL .mbr-section-title {
  color: #232323;
}
.cid-tVbycAo1QL .mbr-text,
.cid-tVbycAo1QL .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbycAo1QL .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbycAo1QL .item-subtitle {
  text-align: left;
}
.cid-tVbydpG0gL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbydpG0gL img,
.cid-tVbydpG0gL .item-img {
  width: 100%;
}
.cid-tVbydpG0gL .item:focus,
.cid-tVbydpG0gL span:focus {
  outline: none;
}
.cid-tVbydpG0gL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbydpG0gL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbydpG0gL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbydpG0gL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbydpG0gL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbydpG0gL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbydpG0gL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbydpG0gL .mbr-section-title {
  color: #232323;
}
.cid-tVbydpG0gL .mbr-text,
.cid-tVbydpG0gL .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbydpG0gL .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbydpG0gL .item-subtitle {
  text-align: left;
}
.cid-uofWYSUSPo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uofWYSUSPo img,
.cid-uofWYSUSPo .item-img {
  width: 100%;
}
.cid-uofWYSUSPo .item:focus,
.cid-uofWYSUSPo span:focus {
  outline: none;
}
.cid-uofWYSUSPo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uofWYSUSPo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uofWYSUSPo .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uofWYSUSPo .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uofWYSUSPo .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uofWYSUSPo .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uofWYSUSPo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uofWYSUSPo .mbr-section-title {
  color: #232323;
}
.cid-uofWYSUSPo .mbr-text,
.cid-uofWYSUSPo .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-uofWYSUSPo .item-title {
  text-align: left;
  color: #351c75;
}
.cid-uofWYSUSPo .item-subtitle {
  text-align: left;
}
.cid-tRfioVvZFY {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fcd84e;
}
@media (max-width: 767px) {
  .cid-tRfioVvZFY .content {
    text-align: center;
  }
  .cid-tRfioVvZFY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tRfioVvZFY .img-logo img {
  height: 6rem;
  display: block;
  width: auto;
}
.cid-tRfioVvZFY .form-group,
.cid-tRfioVvZFY .input-group-btn {
  padding: 0;
}
.cid-tRfioVvZFY .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-tRfioVvZFY .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-tRfioVvZFY .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tRfioVvZFY .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tRfioVvZFY .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tRfioVvZFY .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tRfioVvZFY .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tRfioVvZFY .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tRfioVvZFY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tRfioVvZFY .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tRfioVvZFY .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tRfioVvZFY .foot-logo {
    text-align: center !important;
  }
  .cid-tRfioVvZFY .foot-title {
    text-align: center !important;
  }
  .cid-tRfioVvZFY .mbr-text {
    text-align: center !important;
  }
  .cid-tRfioVvZFY .form-group {
    margin: 0;
  }
}
.cid-tRfioVvZFY .foot-text {
  color: #351c75;
}
.cid-tRfioVvZFY .foot-title {
  color: #351c75;
}
.cid-tRfioVvZFY .mbr-links-column {
  color: #351c75;
}
.cid-sFGSOnwtIp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-sFGSOnwtIp .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tVbwNYGOcU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVbwNYGOcU nav.navbar {
  position: fixed;
}
.cid-tVbwNYGOcU .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-tVbwNYGOcU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tVbwNYGOcU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tVbwNYGOcU .dropdown-item:hover,
.cid-tVbwNYGOcU .dropdown-item:focus {
  background: #351c75 !important;
  color: white !important;
}
.cid-tVbwNYGOcU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVbwNYGOcU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVbwNYGOcU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tVbwNYGOcU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVbwNYGOcU .nav-link {
  position: relative;
}
.cid-tVbwNYGOcU .container {
  display: flex;
  margin: auto;
}
.cid-tVbwNYGOcU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tVbwNYGOcU .dropdown-menu,
.cid-tVbwNYGOcU .navbar.opened {
  background: #ffffff !important;
}
.cid-tVbwNYGOcU .nav-item:focus,
.cid-tVbwNYGOcU .nav-link:focus {
  outline: none;
}
.cid-tVbwNYGOcU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVbwNYGOcU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVbwNYGOcU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVbwNYGOcU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVbwNYGOcU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVbwNYGOcU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVbwNYGOcU .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-tVbwNYGOcU .navbar.opened {
  transition: all 0.3s;
}
.cid-tVbwNYGOcU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVbwNYGOcU .navbar .navbar-logo img {
  width: auto;
}
.cid-tVbwNYGOcU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVbwNYGOcU .navbar.collapsed {
  justify-content: center;
}
.cid-tVbwNYGOcU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVbwNYGOcU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVbwNYGOcU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tVbwNYGOcU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVbwNYGOcU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVbwNYGOcU .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-tVbwNYGOcU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVbwNYGOcU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVbwNYGOcU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVbwNYGOcU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVbwNYGOcU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVbwNYGOcU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVbwNYGOcU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVbwNYGOcU .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-tVbwNYGOcU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVbwNYGOcU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVbwNYGOcU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVbwNYGOcU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVbwNYGOcU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVbwNYGOcU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVbwNYGOcU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVbwNYGOcU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVbwNYGOcU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVbwNYGOcU .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-tVbwNYGOcU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVbwNYGOcU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVbwNYGOcU .dropdown-item.active,
.cid-tVbwNYGOcU .dropdown-item:active {
  background-color: transparent;
}
.cid-tVbwNYGOcU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVbwNYGOcU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVbwNYGOcU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVbwNYGOcU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVbwNYGOcU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVbwNYGOcU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVbwNYGOcU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVbwNYGOcU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVbwNYGOcU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVbwNYGOcU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tVbwNYGOcU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVbwNYGOcU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVbwNYGOcU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVbwNYGOcU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVbwNYGOcU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVbwNYGOcU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVbwNYGOcU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVbwNYGOcU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVbwNYGOcU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVbwNYGOcU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVbwNYGOcU .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-tVbwNYGOcU .navbar {
    height: 70px;
  }
  .cid-tVbwNYGOcU .navbar.opened {
    height: auto;
  }
  .cid-tVbwNYGOcU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVbwNZaMvt {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/school-banner.webp");
}
.cid-tVbwNZaMvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVbwNZaMvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVbwNZaMvt .mbr-section-title {
  color: #ffffff;
}
.cid-tVbwNZE7xi {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #674ea7;
}
.cid-tVbwNZE7xi .mbr-section-subtitle {
  color: #767676;
}
.cid-tVbwNZE7xi H2 {
  color: #f9f9f9;
}
.cid-tVbLQv49JT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tVbwO1LN5u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbwO1LN5u img,
.cid-tVbwO1LN5u .item-img {
  width: 100%;
}
.cid-tVbwO1LN5u .item:focus,
.cid-tVbwO1LN5u span:focus {
  outline: none;
}
.cid-tVbwO1LN5u .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbwO1LN5u .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbwO1LN5u .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbwO1LN5u .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbwO1LN5u .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbwO1LN5u .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbwO1LN5u .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbwO1LN5u .mbr-section-title {
  color: #232323;
}
.cid-tVbwO1LN5u .mbr-text,
.cid-tVbwO1LN5u .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbwO1LN5u .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbwO1LN5u .item-subtitle {
  text-align: left;
}
.cid-tVbwO2AD9K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbwO2AD9K img,
.cid-tVbwO2AD9K .item-img {
  width: 100%;
}
.cid-tVbwO2AD9K .item:focus,
.cid-tVbwO2AD9K span:focus {
  outline: none;
}
.cid-tVbwO2AD9K .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbwO2AD9K .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbwO2AD9K .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbwO2AD9K .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbwO2AD9K .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbwO2AD9K .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbwO2AD9K .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbwO2AD9K .mbr-section-title {
  color: #232323;
}
.cid-tVbwO2AD9K .mbr-text,
.cid-tVbwO2AD9K .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbwO2AD9K .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbwO2AD9K .item-subtitle {
  text-align: left;
}
.cid-tVbxDFY3QT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbxDFY3QT img,
.cid-tVbxDFY3QT .item-img {
  width: 100%;
}
.cid-tVbxDFY3QT .item:focus,
.cid-tVbxDFY3QT span:focus {
  outline: none;
}
.cid-tVbxDFY3QT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbxDFY3QT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbxDFY3QT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbxDFY3QT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbxDFY3QT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbxDFY3QT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbxDFY3QT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbxDFY3QT .mbr-section-title {
  color: #232323;
}
.cid-tVbxDFY3QT .mbr-text,
.cid-tVbxDFY3QT .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbxDFY3QT .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbxDFY3QT .item-subtitle {
  text-align: left;
}
.cid-uOhhSf5kaX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOhhSf5kaX img,
.cid-uOhhSf5kaX .item-img {
  width: 100%;
}
.cid-uOhhSf5kaX .item:focus,
.cid-uOhhSf5kaX span:focus {
  outline: none;
}
.cid-uOhhSf5kaX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOhhSf5kaX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOhhSf5kaX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOhhSf5kaX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOhhSf5kaX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOhhSf5kaX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOhhSf5kaX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOhhSf5kaX .mbr-section-title {
  color: #232323;
}
.cid-uOhhSf5kaX .mbr-text,
.cid-uOhhSf5kaX .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-uOhhSf5kaX .item-title {
  text-align: left;
  color: #351c75;
}
.cid-uOhhSf5kaX .item-subtitle {
  text-align: left;
}
.cid-tVbwO3m8Fi {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fcd84e;
}
@media (max-width: 767px) {
  .cid-tVbwO3m8Fi .content {
    text-align: center;
  }
  .cid-tVbwO3m8Fi .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tVbwO3m8Fi .img-logo img {
  height: 6rem;
  display: block;
  width: auto;
}
.cid-tVbwO3m8Fi .form-group,
.cid-tVbwO3m8Fi .input-group-btn {
  padding: 0;
}
.cid-tVbwO3m8Fi .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-tVbwO3m8Fi .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-tVbwO3m8Fi .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tVbwO3m8Fi .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tVbwO3m8Fi .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tVbwO3m8Fi .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tVbwO3m8Fi .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tVbwO3m8Fi .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tVbwO3m8Fi .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tVbwO3m8Fi .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tVbwO3m8Fi .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tVbwO3m8Fi .foot-logo {
    text-align: center !important;
  }
  .cid-tVbwO3m8Fi .foot-title {
    text-align: center !important;
  }
  .cid-tVbwO3m8Fi .mbr-text {
    text-align: center !important;
  }
  .cid-tVbwO3m8Fi .form-group {
    margin: 0;
  }
}
.cid-tVbwO3m8Fi .foot-text {
  color: #351c75;
}
.cid-tVbwO3m8Fi .foot-title {
  color: #351c75;
}
.cid-tVbwO3m8Fi .mbr-links-column {
  color: #351c75;
}
.cid-tVbwO3OqzU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-tVbwO3OqzU .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tVbtlVpIgh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVbtlVpIgh nav.navbar {
  position: fixed;
}
.cid-tVbtlVpIgh .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-tVbtlVpIgh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tVbtlVpIgh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tVbtlVpIgh .dropdown-item:hover,
.cid-tVbtlVpIgh .dropdown-item:focus {
  background: #351c75 !important;
  color: white !important;
}
.cid-tVbtlVpIgh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVbtlVpIgh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVbtlVpIgh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tVbtlVpIgh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVbtlVpIgh .nav-link {
  position: relative;
}
.cid-tVbtlVpIgh .container {
  display: flex;
  margin: auto;
}
.cid-tVbtlVpIgh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tVbtlVpIgh .dropdown-menu,
.cid-tVbtlVpIgh .navbar.opened {
  background: #ffffff !important;
}
.cid-tVbtlVpIgh .nav-item:focus,
.cid-tVbtlVpIgh .nav-link:focus {
  outline: none;
}
.cid-tVbtlVpIgh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVbtlVpIgh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVbtlVpIgh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVbtlVpIgh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVbtlVpIgh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVbtlVpIgh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVbtlVpIgh .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-tVbtlVpIgh .navbar.opened {
  transition: all 0.3s;
}
.cid-tVbtlVpIgh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVbtlVpIgh .navbar .navbar-logo img {
  width: auto;
}
.cid-tVbtlVpIgh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVbtlVpIgh .navbar.collapsed {
  justify-content: center;
}
.cid-tVbtlVpIgh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVbtlVpIgh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVbtlVpIgh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tVbtlVpIgh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVbtlVpIgh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVbtlVpIgh .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-tVbtlVpIgh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVbtlVpIgh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVbtlVpIgh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVbtlVpIgh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVbtlVpIgh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVbtlVpIgh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVbtlVpIgh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVbtlVpIgh .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-tVbtlVpIgh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVbtlVpIgh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVbtlVpIgh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVbtlVpIgh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVbtlVpIgh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVbtlVpIgh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVbtlVpIgh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVbtlVpIgh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVbtlVpIgh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVbtlVpIgh .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-tVbtlVpIgh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVbtlVpIgh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVbtlVpIgh .dropdown-item.active,
.cid-tVbtlVpIgh .dropdown-item:active {
  background-color: transparent;
}
.cid-tVbtlVpIgh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVbtlVpIgh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVbtlVpIgh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVbtlVpIgh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVbtlVpIgh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVbtlVpIgh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVbtlVpIgh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVbtlVpIgh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVbtlVpIgh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVbtlVpIgh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tVbtlVpIgh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVbtlVpIgh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVbtlVpIgh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVbtlVpIgh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVbtlVpIgh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVbtlVpIgh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVbtlVpIgh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVbtlVpIgh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVbtlVpIgh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVbtlVpIgh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVbtlVpIgh .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-tVbtlVpIgh .navbar {
    height: 70px;
  }
  .cid-tVbtlVpIgh .navbar.opened {
    height: auto;
  }
  .cid-tVbtlVpIgh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVbtlW5L2e {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/school-banner.webp");
}
.cid-tVbtlW5L2e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVbtlW5L2e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVbtlW5L2e .mbr-section-title {
  color: #ffffff;
}
.cid-tVbtlWxN7s {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #674ea7;
}
.cid-tVbtlWxN7s .mbr-section-subtitle {
  color: #767676;
}
.cid-tVbtlWxN7s H2 {
  color: #f9f9f9;
}
.cid-tVbLZqJ8YF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tVbtlX7yh9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbtlX7yh9 img,
.cid-tVbtlX7yh9 .item-img {
  width: 100%;
}
.cid-tVbtlX7yh9 .item:focus,
.cid-tVbtlX7yh9 span:focus {
  outline: none;
}
.cid-tVbtlX7yh9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbtlX7yh9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbtlX7yh9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbtlX7yh9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbtlX7yh9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbtlX7yh9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbtlX7yh9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbtlX7yh9 .mbr-section-title {
  color: #232323;
}
.cid-tVbtlX7yh9 .mbr-text,
.cid-tVbtlX7yh9 .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbtlX7yh9 .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbtlX7yh9 .item-subtitle {
  text-align: left;
}
.cid-tVbtlXxa00 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbtlXxa00 img,
.cid-tVbtlXxa00 .item-img {
  width: 100%;
}
.cid-tVbtlXxa00 .item:focus,
.cid-tVbtlXxa00 span:focus {
  outline: none;
}
.cid-tVbtlXxa00 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbtlXxa00 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbtlXxa00 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbtlXxa00 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbtlXxa00 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbtlXxa00 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbtlXxa00 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbtlXxa00 .mbr-section-title {
  color: #232323;
}
.cid-tVbtlXxa00 .mbr-text,
.cid-tVbtlXxa00 .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbtlXxa00 .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbtlXxa00 .item-subtitle {
  text-align: left;
}
.cid-tVbtlXYRuh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVbtlXYRuh img,
.cid-tVbtlXYRuh .item-img {
  width: 100%;
}
.cid-tVbtlXYRuh .item:focus,
.cid-tVbtlXYRuh span:focus {
  outline: none;
}
.cid-tVbtlXYRuh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVbtlXYRuh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVbtlXYRuh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tVbtlXYRuh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVbtlXYRuh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tVbtlXYRuh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tVbtlXYRuh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVbtlXYRuh .mbr-section-title {
  color: #232323;
}
.cid-tVbtlXYRuh .mbr-text,
.cid-tVbtlXYRuh .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-tVbtlXYRuh .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tVbtlXYRuh .item-subtitle {
  text-align: left;
}
.cid-tVbtm0etI5 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fcd84e;
}
@media (max-width: 767px) {
  .cid-tVbtm0etI5 .content {
    text-align: center;
  }
  .cid-tVbtm0etI5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tVbtm0etI5 .img-logo img {
  height: 6rem;
  display: block;
  width: auto;
}
.cid-tVbtm0etI5 .form-group,
.cid-tVbtm0etI5 .input-group-btn {
  padding: 0;
}
.cid-tVbtm0etI5 .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-tVbtm0etI5 .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-tVbtm0etI5 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tVbtm0etI5 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tVbtm0etI5 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tVbtm0etI5 .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tVbtm0etI5 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tVbtm0etI5 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tVbtm0etI5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tVbtm0etI5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tVbtm0etI5 .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tVbtm0etI5 .foot-logo {
    text-align: center !important;
  }
  .cid-tVbtm0etI5 .foot-title {
    text-align: center !important;
  }
  .cid-tVbtm0etI5 .mbr-text {
    text-align: center !important;
  }
  .cid-tVbtm0etI5 .form-group {
    margin: 0;
  }
}
.cid-tVbtm0etI5 .foot-text {
  color: #351c75;
}
.cid-tVbtm0etI5 .foot-title {
  color: #351c75;
}
.cid-tVbtm0etI5 .mbr-links-column {
  color: #351c75;
}
.cid-tVbtm0GgCc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-tVbtm0GgCc .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sFGMsvHDIa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFGMsvHDIa nav.navbar {
  position: fixed;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFGMsvHDIa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFGMsvHDIa .dropdown-item:hover,
.cid-sFGMsvHDIa .dropdown-item:focus {
  background: #351c75 !important;
  color: white !important;
}
.cid-sFGMsvHDIa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFGMsvHDIa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFGMsvHDIa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFGMsvHDIa .nav-link {
  position: relative;
}
.cid-sFGMsvHDIa .container {
  display: flex;
  margin: auto;
}
.cid-sFGMsvHDIa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown-menu,
.cid-sFGMsvHDIa .navbar.opened {
  background: #ffffff !important;
}
.cid-sFGMsvHDIa .nav-item:focus,
.cid-sFGMsvHDIa .nav-link:focus {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFGMsvHDIa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.opened {
  transition: all 0.3s;
}
.cid-sFGMsvHDIa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFGMsvHDIa .navbar .navbar-logo img {
  width: auto;
}
.cid-sFGMsvHDIa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar.collapsed {
  justify-content: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFGMsvHDIa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFGMsvHDIa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFGMsvHDIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFGMsvHDIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFGMsvHDIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFGMsvHDIa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFGMsvHDIa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGMsvHDIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFGMsvHDIa .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown-item.active,
.cid-sFGMsvHDIa .dropdown-item:active {
  background-color: transparent;
}
.cid-sFGMsvHDIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFGMsvHDIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFGMsvHDIa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFGMsvHDIa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFGMsvHDIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFGMsvHDIa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar {
    height: 70px;
  }
  .cid-sFGMsvHDIa .navbar.opened {
    height: auto;
  }
  .cid-sFGMsvHDIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-aepbL7Id6O {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/20230208-054506000-ios.jpg");
}
.cid-aepbL7Id6O .section-overlay {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.cid-aepbL7Id6O .section-overlay + .container {
  position: relative;
}
.cid-aepbL7Id6O .tab-content {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 45px;
}
.cid-aepbL7Id6O .nav-tabs {
  background-color: #1f0c77;
  border-radius: 100px;
  border-bottom: 0;
  padding: 15px;
}
.cid-aepbL7Id6O .nav-tabs .nav-link {
  border-radius: 100px;
  border: 0;
  transition: all 0.3s;
  margin-right: 10px;
}
.cid-aepbL7Id6O .nav-tabs .nav-link:first-child {
  margin-right: 15px;
}
.cid-aepbL7Id6O .nav-tabs .nav-item.show .nav-link,
.cid-aepbL7Id6O .nav-tabs .nav-link.active,
.cid-aepbL7Id6O .nav-tabs .nav-link:focus,
.cid-aepbL7Id6O .nav-tabs .nav-link:hover {
  background: #674ea7;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  color: #ffffff;
}
.cid-aepbL7Id6O .nav-tabs h5 {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-aepbL7Id6O .nav-tabs .nav-link.active h5,
.cid-aepbL7Id6O .nav-tabs .nav-link:focus h5,
.cid-aepbL7Id6O .nav-tabs .nav-link:hover h5 {
  color: #ffffff;
}
.cid-aepbL7Id6O .custom-form .form-control {
  color: #717572;
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}
.cid-aepbL7Id6O .custom-form .btn {
  border: none;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 20px;
  transition: all 0.3s;
  margin-bottom: 0;
}
.cid-aepbL7Id6O .custom-form .btn:hover,
.cid-aepbL7Id6O .custom-form .btn:focus {
  background-color: #e6c63b !important;
  border-color: transparent;
}
.cid-aepbL7Id6O H5 {
  color: #0f49a1;
}
.cid-aepbL7Id6O H2 {
  color: #ffffff;
}
.cid-aepbL7Id6O .imgw {
  display: flex;
  align-items: center;
}
.cid-aepbL7Id6O .cardw {
  margin-bottom: 20px;
  display: flex;
  border-radius: 4px;
  background: #000000;
}
@media (max-width: 991px) {
  .cid-aepbL7Id6O .cardw {
    padding: 10px;
  }
}
@media (min-width: 992px) {
  .cid-aepbL7Id6O .cardw {
    padding: 15px;
  }
}
.cid-aepbL7Id6O .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #351c75;
}
.cid-aepbL7Id6O P {
  color: #e43f3f;
}
.cid-aepbL7Id6O .card-title {
  color: #ffffff;
}
@media only screen and (max-width: 600px) {
  .cid-aepbL7Id6O .col-lg-6.col-md-10.col-8.mx-auto {
    display: table-cell;
  }
  .cid-aepbL7Id6O .nav-tabs {
    padding: 2px !important;
  }
}
.cid-aepbL7Id6O .mbr-section-title {
  color: #ffffff;
}
.cid-aepbL7Id6O .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tUrpUXPYyM {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tUrpUXPYyM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUrpUXPYyM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tUrpUXPYyM .row {
    flex-direction: column-reverse;
  }
  .cid-tUrpUXPYyM .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tUrpUXPYyM .google-map {
  height: 100%;
  position: relative;
}
.cid-tUrpUXPYyM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tUrpUXPYyM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tUrpUXPYyM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tUrpUXPYyM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tUrpUXPYyM .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tUrpUXPYyM .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tUrpUXPYyM .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-tUrpUXPYyM .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tUrpUXPYyM .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tUrpUXPYyM .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #351c75;
}
.cid-sFGSOnwtIp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-sFGSOnwtIp .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tRkWtl8TIW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tRkWtl8TIW nav.navbar {
  position: fixed;
}
.cid-tRkWtl8TIW .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-tRkWtl8TIW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRkWtl8TIW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRkWtl8TIW .dropdown-item:hover,
.cid-tRkWtl8TIW .dropdown-item:focus {
  background: #351c75 !important;
  color: white !important;
}
.cid-tRkWtl8TIW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRkWtl8TIW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRkWtl8TIW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRkWtl8TIW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRkWtl8TIW .nav-link {
  position: relative;
}
.cid-tRkWtl8TIW .container {
  display: flex;
  margin: auto;
}
.cid-tRkWtl8TIW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRkWtl8TIW .dropdown-menu,
.cid-tRkWtl8TIW .navbar.opened {
  background: #ffffff !important;
}
.cid-tRkWtl8TIW .nav-item:focus,
.cid-tRkWtl8TIW .nav-link:focus {
  outline: none;
}
.cid-tRkWtl8TIW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRkWtl8TIW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRkWtl8TIW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRkWtl8TIW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRkWtl8TIW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRkWtl8TIW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRkWtl8TIW .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-tRkWtl8TIW .navbar.opened {
  transition: all 0.3s;
}
.cid-tRkWtl8TIW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRkWtl8TIW .navbar .navbar-logo img {
  width: auto;
}
.cid-tRkWtl8TIW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRkWtl8TIW .navbar.collapsed {
  justify-content: center;
}
.cid-tRkWtl8TIW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRkWtl8TIW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRkWtl8TIW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tRkWtl8TIW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRkWtl8TIW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRkWtl8TIW .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-tRkWtl8TIW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRkWtl8TIW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRkWtl8TIW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRkWtl8TIW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRkWtl8TIW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRkWtl8TIW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRkWtl8TIW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRkWtl8TIW .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-tRkWtl8TIW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRkWtl8TIW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRkWtl8TIW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRkWtl8TIW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRkWtl8TIW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRkWtl8TIW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRkWtl8TIW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRkWtl8TIW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRkWtl8TIW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRkWtl8TIW .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-tRkWtl8TIW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRkWtl8TIW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRkWtl8TIW .dropdown-item.active,
.cid-tRkWtl8TIW .dropdown-item:active {
  background-color: transparent;
}
.cid-tRkWtl8TIW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRkWtl8TIW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRkWtl8TIW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRkWtl8TIW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRkWtl8TIW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRkWtl8TIW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRkWtl8TIW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRkWtl8TIW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRkWtl8TIW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRkWtl8TIW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tRkWtl8TIW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRkWtl8TIW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRkWtl8TIW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRkWtl8TIW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRkWtl8TIW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRkWtl8TIW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRkWtl8TIW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRkWtl8TIW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRkWtl8TIW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRkWtl8TIW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRkWtl8TIW .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-tRkWtl8TIW .navbar {
    height: 70px;
  }
  .cid-tRkWtl8TIW .navbar.opened {
    height: auto;
  }
  .cid-tRkWtl8TIW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRkWtlHCkj {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/grade-1.webp");
}
.cid-tRkWtlHCkj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRkWtlHCkj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRkWtlHCkj .mbr-section-title {
  color: #ffffff;
}
.cid-tRkWtmdMfg {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #674ea7;
}
.cid-tRkWtmdMfg .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tRkWtmdMfg .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tRkWtmyH2E {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRkWtmyH2E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRkWtmyH2E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRkWtmyH2E .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRkWtmyH2E .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRkWtmyH2E .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRkWtmyH2E .mbr-text {
  color: #351c75;
}
.cid-tRkWtmyH2E .name {
  color: #5f6366;
}
.cid-tRkWtmX2vw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg4.webp");
}
.cid-tRkWtmX2vw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRkWtmX2vw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRkWtmX2vw .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tRkWtmX2vw .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRkWtmX2vw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRkWtmX2vw .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRkWtmX2vw .mbr-text {
  color: #351c75;
}
.cid-tRkWtmX2vw .name {
  color: #5f6366;
}
.cid-tRkWtnobfY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRkWtnobfY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRkWtnobfY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRkWtnobfY .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRkWtnobfY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRkWtnobfY .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRkWtnobfY .mbr-text {
  color: #351c75;
}
.cid-tRkWtnobfY .name {
  color: #5f6366;
}
.cid-tRkWtnTook {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg4.webp");
}
.cid-tRkWtnTook .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRkWtnTook .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRkWtnTook .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tRkWtnTook .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRkWtnTook .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRkWtnTook .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRkWtnTook .mbr-text {
  color: #351c75;
}
.cid-tRkWtnTook .name {
  color: #5f6366;
}
.cid-tRkWtomqoa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRkWtomqoa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRkWtomqoa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRkWtomqoa .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRkWtomqoa .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRkWtomqoa .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRkWtomqoa .mbr-text {
  color: #351c75;
}
.cid-tRkWtomqoa .name {
  color: #5f6366;
}
.cid-tRuVpcrEGX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
}
.cid-tRuVpcrEGX .mbr-section-subtitle {
  color: #767676;
}
.cid-tRuVpcrEGX .btn {
  margin: 0 0 .5rem 0;
}
.cid-tRuVpcrEGX H2 {
  color: #ffffff;
}
.cid-tRmb437030 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fcd84e;
}
@media (max-width: 767px) {
  .cid-tRmb437030 .content {
    text-align: center;
  }
  .cid-tRmb437030 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tRmb437030 .img-logo img {
  height: 6rem;
  display: block;
  width: auto;
}
.cid-tRmb437030 .form-group,
.cid-tRmb437030 .input-group-btn {
  padding: 0;
}
.cid-tRmb437030 .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-tRmb437030 .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-tRmb437030 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tRmb437030 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tRmb437030 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tRmb437030 .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tRmb437030 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tRmb437030 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tRmb437030 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tRmb437030 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tRmb437030 .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tRmb437030 .foot-logo {
    text-align: center !important;
  }
  .cid-tRmb437030 .foot-title {
    text-align: center !important;
  }
  .cid-tRmb437030 .mbr-text {
    text-align: center !important;
  }
  .cid-tRmb437030 .form-group {
    margin: 0;
  }
}
.cid-tRmb437030 .foot-text {
  color: #351c75;
}
.cid-tRmb437030 .foot-title {
  color: #351c75;
}
.cid-tRmb437030 .mbr-links-column {
  color: #351c75;
}
.cid-tRkWtpDfHt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-tRkWtpDfHt .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tRl05KMT5m {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tRl05KMT5m nav.navbar {
  position: fixed;
}
.cid-tRl05KMT5m .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-tRl05KMT5m .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRl05KMT5m .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRl05KMT5m .dropdown-item:hover,
.cid-tRl05KMT5m .dropdown-item:focus {
  background: #351c75 !important;
  color: white !important;
}
.cid-tRl05KMT5m .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRl05KMT5m .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRl05KMT5m .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRl05KMT5m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRl05KMT5m .nav-link {
  position: relative;
}
.cid-tRl05KMT5m .container {
  display: flex;
  margin: auto;
}
.cid-tRl05KMT5m .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRl05KMT5m .dropdown-menu,
.cid-tRl05KMT5m .navbar.opened {
  background: #ffffff !important;
}
.cid-tRl05KMT5m .nav-item:focus,
.cid-tRl05KMT5m .nav-link:focus {
  outline: none;
}
.cid-tRl05KMT5m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRl05KMT5m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRl05KMT5m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRl05KMT5m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRl05KMT5m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRl05KMT5m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRl05KMT5m .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-tRl05KMT5m .navbar.opened {
  transition: all 0.3s;
}
.cid-tRl05KMT5m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRl05KMT5m .navbar .navbar-logo img {
  width: auto;
}
.cid-tRl05KMT5m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRl05KMT5m .navbar.collapsed {
  justify-content: center;
}
.cid-tRl05KMT5m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRl05KMT5m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRl05KMT5m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tRl05KMT5m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRl05KMT5m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRl05KMT5m .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-tRl05KMT5m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRl05KMT5m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRl05KMT5m .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRl05KMT5m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRl05KMT5m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRl05KMT5m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRl05KMT5m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRl05KMT5m .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-tRl05KMT5m .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRl05KMT5m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRl05KMT5m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRl05KMT5m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRl05KMT5m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRl05KMT5m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRl05KMT5m .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRl05KMT5m .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRl05KMT5m .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRl05KMT5m .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-tRl05KMT5m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRl05KMT5m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRl05KMT5m .dropdown-item.active,
.cid-tRl05KMT5m .dropdown-item:active {
  background-color: transparent;
}
.cid-tRl05KMT5m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRl05KMT5m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRl05KMT5m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRl05KMT5m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRl05KMT5m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRl05KMT5m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRl05KMT5m ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRl05KMT5m .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRl05KMT5m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRl05KMT5m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tRl05KMT5m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRl05KMT5m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRl05KMT5m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRl05KMT5m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRl05KMT5m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRl05KMT5m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRl05KMT5m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRl05KMT5m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRl05KMT5m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRl05KMT5m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRl05KMT5m .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-tRl05KMT5m .navbar {
    height: 70px;
  }
  .cid-tRl05KMT5m .navbar.opened {
    height: auto;
  }
  .cid-tRl05KMT5m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRl05LssU0 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/grade-6-7-12-11zon.webp");
}
.cid-tRl05LssU0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl05LssU0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRl05LssU0 .mbr-section-title {
  color: #ffffff;
}
.cid-tRl05LZqmI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #674ea7;
}
.cid-tRl05LZqmI .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tRl05LZqmI .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tRl05MjP6b {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRl05MjP6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl05MjP6b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRl05MjP6b .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl05MjP6b .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl05MjP6b .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl05MjP6b .mbr-text {
  color: #351c75;
}
.cid-tRl05MjP6b .name {
  color: #5f6366;
}
.cid-tRl05MM53z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg4.webp");
}
.cid-tRl05MM53z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl05MM53z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRl05MM53z .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tRl05MM53z .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl05MM53z .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl05MM53z .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl05MM53z .mbr-text {
  color: #351c75;
}
.cid-tRl05MM53z .name {
  color: #5f6366;
}
.cid-tRl05Nb83l {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRl05Nb83l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl05Nb83l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRl05Nb83l .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl05Nb83l .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl05Nb83l .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl05Nb83l .mbr-text {
  color: #351c75;
}
.cid-tRl05Nb83l .name {
  color: #5f6366;
}
.cid-tRl05NEkFf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg4.webp");
}
.cid-tRl05NEkFf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl05NEkFf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRl05NEkFf .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tRl05NEkFf .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl05NEkFf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl05NEkFf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl05NEkFf .mbr-text {
  color: #351c75;
}
.cid-tRl05NEkFf .name {
  color: #5f6366;
}
.cid-tRl05O1YV1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRl05O1YV1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl05O1YV1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRl05O1YV1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl05O1YV1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl05O1YV1 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl05O1YV1 .mbr-text {
  color: #351c75;
}
.cid-tRl05O1YV1 .name {
  color: #5f6366;
}
.cid-tRuVsTWFyh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
}
.cid-tRuVsTWFyh .mbr-section-subtitle {
  color: #767676;
}
.cid-tRuVsTWFyh .btn {
  margin: 0 0 .5rem 0;
}
.cid-tRuVsTWFyh H2 {
  color: #ffffff;
}
.cid-tRmb6vyBWk {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fcd84e;
}
@media (max-width: 767px) {
  .cid-tRmb6vyBWk .content {
    text-align: center;
  }
  .cid-tRmb6vyBWk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tRmb6vyBWk .img-logo img {
  height: 6rem;
  display: block;
  width: auto;
}
.cid-tRmb6vyBWk .form-group,
.cid-tRmb6vyBWk .input-group-btn {
  padding: 0;
}
.cid-tRmb6vyBWk .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-tRmb6vyBWk .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-tRmb6vyBWk .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tRmb6vyBWk .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tRmb6vyBWk .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tRmb6vyBWk .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tRmb6vyBWk .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tRmb6vyBWk .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tRmb6vyBWk .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tRmb6vyBWk .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tRmb6vyBWk .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tRmb6vyBWk .foot-logo {
    text-align: center !important;
  }
  .cid-tRmb6vyBWk .foot-title {
    text-align: center !important;
  }
  .cid-tRmb6vyBWk .mbr-text {
    text-align: center !important;
  }
  .cid-tRmb6vyBWk .form-group {
    margin: 0;
  }
}
.cid-tRmb6vyBWk .foot-text {
  color: #351c75;
}
.cid-tRmb6vyBWk .foot-title {
  color: #351c75;
}
.cid-tRmb6vyBWk .mbr-links-column {
  color: #351c75;
}
.cid-tRl05OrDW9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-tRl05OrDW9 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tRl64bz7jE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tRl64bz7jE nav.navbar {
  position: fixed;
}
.cid-tRl64bz7jE .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-tRl64bz7jE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRl64bz7jE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRl64bz7jE .dropdown-item:hover,
.cid-tRl64bz7jE .dropdown-item:focus {
  background: #351c75 !important;
  color: white !important;
}
.cid-tRl64bz7jE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRl64bz7jE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRl64bz7jE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRl64bz7jE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRl64bz7jE .nav-link {
  position: relative;
}
.cid-tRl64bz7jE .container {
  display: flex;
  margin: auto;
}
.cid-tRl64bz7jE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRl64bz7jE .dropdown-menu,
.cid-tRl64bz7jE .navbar.opened {
  background: #ffffff !important;
}
.cid-tRl64bz7jE .nav-item:focus,
.cid-tRl64bz7jE .nav-link:focus {
  outline: none;
}
.cid-tRl64bz7jE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRl64bz7jE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRl64bz7jE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRl64bz7jE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRl64bz7jE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRl64bz7jE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRl64bz7jE .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-tRl64bz7jE .navbar.opened {
  transition: all 0.3s;
}
.cid-tRl64bz7jE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRl64bz7jE .navbar .navbar-logo img {
  width: auto;
}
.cid-tRl64bz7jE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRl64bz7jE .navbar.collapsed {
  justify-content: center;
}
.cid-tRl64bz7jE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRl64bz7jE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRl64bz7jE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tRl64bz7jE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRl64bz7jE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRl64bz7jE .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-tRl64bz7jE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRl64bz7jE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRl64bz7jE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRl64bz7jE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRl64bz7jE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRl64bz7jE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRl64bz7jE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRl64bz7jE .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-tRl64bz7jE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRl64bz7jE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRl64bz7jE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRl64bz7jE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRl64bz7jE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRl64bz7jE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRl64bz7jE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRl64bz7jE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRl64bz7jE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRl64bz7jE .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-tRl64bz7jE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRl64bz7jE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRl64bz7jE .dropdown-item.active,
.cid-tRl64bz7jE .dropdown-item:active {
  background-color: transparent;
}
.cid-tRl64bz7jE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRl64bz7jE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRl64bz7jE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRl64bz7jE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRl64bz7jE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRl64bz7jE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRl64bz7jE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRl64bz7jE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRl64bz7jE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRl64bz7jE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tRl64bz7jE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRl64bz7jE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRl64bz7jE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRl64bz7jE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRl64bz7jE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRl64bz7jE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRl64bz7jE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRl64bz7jE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRl64bz7jE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRl64bz7jE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRl64bz7jE .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-tRl64bz7jE .navbar {
    height: 70px;
  }
  .cid-tRl64bz7jE .navbar.opened {
    height: auto;
  }
  .cid-tRl64bz7jE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRl64c6TiJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/grade-11.webp");
}
.cid-tRl64c6TiJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl64c6TiJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRl64c6TiJ .mbr-section-title {
  color: #ffffff;
}
.cid-tRl64cBWbN {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #674ea7;
}
.cid-tRl64cBWbN .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tRl64cBWbN .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tRl64cTQOO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRl64cTQOO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl64cTQOO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRl64cTQOO .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl64cTQOO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl64cTQOO .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl64cTQOO .mbr-text {
  color: #351c75;
}
.cid-tRl64cTQOO .name {
  color: #5f6366;
}
.cid-tRl64djgyy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg4.webp");
}
.cid-tRl64djgyy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl64djgyy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRl64djgyy .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tRl64djgyy .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl64djgyy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl64djgyy .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl64djgyy .mbr-text {
  color: #351c75;
}
.cid-tRl64djgyy .name {
  color: #5f6366;
}
.cid-tRl64dGeVl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRl64dGeVl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl64dGeVl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRl64dGeVl .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl64dGeVl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl64dGeVl .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl64dGeVl .mbr-text {
  color: #351c75;
}
.cid-tRl64dGeVl .name {
  color: #5f6366;
}
.cid-tRl64e6Dxv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg4.webp");
}
.cid-tRl64e6Dxv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl64e6Dxv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRl64e6Dxv .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tRl64e6Dxv .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl64e6Dxv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl64e6Dxv .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl64e6Dxv .mbr-text {
  color: #351c75;
}
.cid-tRl64e6Dxv .name {
  color: #5f6366;
}
.cid-tRl64et1L8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/purple-band.webp");
}
.cid-tRl64et1L8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl64et1L8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRl64et1L8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl64et1L8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl64et1L8 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl64et1L8 .mbr-text {
  color: #351c75;
}
.cid-tRl64et1L8 .name {
  color: #5f6366;
}
.cid-tRl7fV4rMw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/bg-bg-bg4.webp");
}
.cid-tRl7fV4rMw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRl7fV4rMw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRl7fV4rMw .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tRl7fV4rMw .text-wrapper {
    padding: 2rem;
  }
}
.cid-tRl7fV4rMw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tRl7fV4rMw .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRl7fV4rMw .mbr-text {
  color: #351c75;
}
.cid-tRl7fV4rMw .name {
  color: #5f6366;
}
.cid-tRuVvwT1yv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
}
.cid-tRuVvwT1yv .mbr-section-subtitle {
  color: #767676;
}
.cid-tRuVvwT1yv .btn {
  margin: 0 0 .5rem 0;
}
.cid-tRuVvwT1yv H2 {
  color: #ffffff;
}
.cid-tRmb8FiLF9 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fcd84e;
}
@media (max-width: 767px) {
  .cid-tRmb8FiLF9 .content {
    text-align: center;
  }
  .cid-tRmb8FiLF9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tRmb8FiLF9 .img-logo img {
  height: 6rem;
  display: block;
  width: auto;
}
.cid-tRmb8FiLF9 .form-group,
.cid-tRmb8FiLF9 .input-group-btn {
  padding: 0;
}
.cid-tRmb8FiLF9 .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-tRmb8FiLF9 .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-tRmb8FiLF9 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tRmb8FiLF9 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tRmb8FiLF9 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tRmb8FiLF9 .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tRmb8FiLF9 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tRmb8FiLF9 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-tRmb8FiLF9 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tRmb8FiLF9 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tRmb8FiLF9 .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tRmb8FiLF9 .foot-logo {
    text-align: center !important;
  }
  .cid-tRmb8FiLF9 .foot-title {
    text-align: center !important;
  }
  .cid-tRmb8FiLF9 .mbr-text {
    text-align: center !important;
  }
  .cid-tRmb8FiLF9 .form-group {
    margin: 0;
  }
}
.cid-tRmb8FiLF9 .foot-text {
  color: #351c75;
}
.cid-tRmb8FiLF9 .foot-title {
  color: #351c75;
}
.cid-tRmb8FiLF9 .mbr-links-column {
  color: #351c75;
}
.cid-tRl64eSYMu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #674ea7;
  overflow: hidden;
}
.cid-tRl64eSYMu .media-container-row .mbr-text {
  color: #ffffff;
}
