.btn {
  border-width: 2px;
}
body {
  font-family: JetBrains Mono;
}
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Arimo', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Inria Serif', serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inria Serif', serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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.4rem 2.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 0.8rem 3rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #103178 !important;
}
.bg-success {
  background-color: #ffbfff !important;
}
.bg-info {
  background-color: #951697 !important;
}
.bg-warning {
  background-color: #ffc800 !important;
}
.bg-danger {
  background-color: #ffc800 !important;
}
.btn-primary {
  box-shadow: none!important;
}
.btn-primary,
.btn-primary:active {
  background-color: #103178 !important;
  border-color: #103178 !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: #103178 !important;
  background-color: white!important;
  border-color: #103178 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #06122b !important;
  border-color: #06122b !important;
}
.btn-secondary {
  box-shadow: none!important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #951697 !important;
  border-color: #951697 !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: #951697 !important;
  background-color: white!important;
  border-color: #951697 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4a0b4b !important;
  border-color: #4a0b4b !important;
}
.btn-info {
  box-shadow: none!important;
}
.btn-info,
.btn-info:active {
  background-color: #951697 !important;
  border-color: #951697 !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: #951697 !important;
  background-color: white!important;
  border-color: #951697 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a0b4b !important;
  border-color: #4a0b4b !important;
}
.btn-success {
  box-shadow: none!important;
}
.btn-success,
.btn-success:active {
  background-color: #ffbfff !important;
  border-color: #ffbfff !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: #ffbfff !important;
  background-color: white!important;
  border-color: #ffbfff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ff68ff !important;
  border-color: #ff68ff !important;
}
.btn-warning {
  box-shadow: none!important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffc800 !important;
  border-color: #ffc800 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffc800 !important;
  background-color: white!important;
  border-color: #ffc800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a88400 !important;
  border-color: #a88400 !important;
}
.btn-danger {
  box-shadow: none!important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffc800 !important;
  border-color: #ffc800 !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: #ffc800 !important;
  background-color: white!important;
  border-color: #ffc800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a88400 !important;
  border-color: #a88400 !important;
}
.btn-white {
  background: white;
  transition: all 0.3s;
  color: #103178;
  border-color: white;
}
.btn-white:hover {
  background: #103178;
  color: white;
  border-color: #103178;
}
.btn-black {
  box-shadow: none!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: #232323 !important;
  background-color: white!important;
  border-color: #232323 !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: #103178;
  color: #103178;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #06122b !important;
  background-color: transparent!important;
  border-color: #06122b !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #103178 !important;
  border-color: #103178 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #951697;
  color: #951697;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #4a0b4b !important;
  background-color: transparent!important;
  border-color: #4a0b4b !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #951697 !important;
  border-color: #951697 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #951697;
  color: #951697;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #4a0b4b !important;
  background-color: transparent!important;
  border-color: #4a0b4b !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #951697 !important;
  border-color: #951697 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ffbfff;
  color: #ffbfff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ff68ff !important;
  background-color: transparent!important;
  border-color: #ff68ff !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #bf00bf !important;
  background-color: #ffbfff !important;
  border-color: #ffbfff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffc800;
  color: #ffc800;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a88400 !important;
  background-color: transparent!important;
  border-color: #a88400 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #ffc800 !important;
  border-color: #ffc800 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffc800;
  color: #ffc800;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a88400 !important;
  background-color: transparent!important;
  border-color: #a88400 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #000000 !important;
  background-color: #ffc800 !important;
  border-color: #ffc800 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #103178 !important;
}
.text-secondary {
  color: #951697 !important;
}
.text-success {
  color: #ffbfff !important;
}
.text-info {
  color: #951697 !important;
}
.text-warning {
  color: #ffc800 !important;
}
.text-danger {
  color: #ffc800 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #040c1e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3d093e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ff59ff !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3d093e !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #997800 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #997800 !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]) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #103178;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #951697;
}
.alert-warning {
  background-color: #ffc800;
}
.alert-danger {
  background-color: #ffc800;
}
.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: #103178;
  border-color: #103178;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #103178;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2561e2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e248e4;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff4cc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fff4cc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Arimo', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #103178 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Arimo', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #103178;
}
/* 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: #103178;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #103178;
}
.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: #103178;
  border-bottom-color: #103178;
}
.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: #103178 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #951697 !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='%23103178' %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-srr3CUcqNB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-srr3CUcqNB .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-srr3CUcqNB .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-srr3CUcqNB .iconfont-wrapper {
  color: #005c9f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-srr3CUcqNB .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-srr3CUcqNB .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-srr3CUcqNB .container {
    padding: 0 1rem;
  }
}
.cid-srr3CUcqNB .menu-tite {
  background: #103178;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-srr3CUcqNB .nav-link {
  position: relative;
}
.cid-srr3CUcqNB .nav-link:hover {
  color: #951697 !important;
}
.cid-srr3CUcqNB nav.navbar {
  position: fixed;
}
.cid-srr3CUcqNB .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-srr3CUcqNB .navbar.opened {
  transition: all 0.3s;
}
.cid-srr3CUcqNB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-srr3CUcqNB .navbar .navbar-logo img {
  width: auto;
}
.cid-srr3CUcqNB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-srr3CUcqNB .navbar.collapsed {
  justify-content: center;
}
.cid-srr3CUcqNB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-srr3CUcqNB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-srr3CUcqNB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-srr3CUcqNB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-srr3CUcqNB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-srr3CUcqNB .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-srr3CUcqNB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-srr3CUcqNB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-srr3CUcqNB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-srr3CUcqNB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-srr3CUcqNB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-srr3CUcqNB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-srr3CUcqNB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-srr3CUcqNB .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-srr3CUcqNB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-srr3CUcqNB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-srr3CUcqNB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-srr3CUcqNB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-srr3CUcqNB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-srr3CUcqNB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-srr3CUcqNB .navbar.navbar-short {
  min-height: 60px;
}
.cid-srr3CUcqNB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-srr3CUcqNB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-srr3CUcqNB .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-srr3CUcqNB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-srr3CUcqNB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-srr3CUcqNB .dropdown-item:hover,
.cid-srr3CUcqNB .dropdown-item:focus {
  background: #103178 !important;
  color: white !important;
}
.cid-srr3CUcqNB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-srr3CUcqNB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-srr3CUcqNB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-srr3CUcqNB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-srr3CUcqNB .dropdown-menu,
.cid-srr3CUcqNB .navbar.opened {
  background: #ffffff !important;
}
.cid-srr3CUcqNB .nav-item:focus,
.cid-srr3CUcqNB .nav-link:focus {
  outline: none;
}
.cid-srr3CUcqNB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-srr3CUcqNB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srr3CUcqNB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-srr3CUcqNB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-srr3CUcqNB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-srr3CUcqNB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-srr3CUcqNB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-srr3CUcqNB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-srr3CUcqNB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-srr3CUcqNB .dropdown-item.active,
.cid-srr3CUcqNB .dropdown-item:active {
  background-color: transparent;
}
.cid-srr3CUcqNB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-srr3CUcqNB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-srr3CUcqNB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-srr3CUcqNB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-srr3CUcqNB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-srr3CUcqNB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srr3CUcqNB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-srr3CUcqNB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-srr3CUcqNB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-srr3CUcqNB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-srr3CUcqNB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-srr3CUcqNB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srr3CUcqNB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srr3CUcqNB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-srr3CUcqNB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srr3CUcqNB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-srr3CUcqNB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-srr3CUcqNB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srr3CUcqNB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-srr3CUcqNB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-srr3CUcqNB .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-srr3CUcqNB .navbar {
    height: 70px;
  }
  .cid-srr3CUcqNB .navbar.opened {
    height: auto;
  }
  .cid-srr3CUcqNB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-srDiY3pii4 {
  padding-top: 225px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/main-1600x1143.jpg");
  position: relative;
  overflow: hidden;
}
.cid-srDiY3pii4 svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-srDiY3pii4 #e2_shape {
  fill: #ffffff !important;
}
.cid-srDiY3pii4 img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 576px) {
  .cid-srDiY3pii4 img {
    width: 90%!important;
  }
}
.cid-srDiY3pii4 H1 {
  color: #ffbfff;
}
.cid-srDiY3pii4 H3 {
  color: #ffffff;
}
.cid-srDiY3pii4 .mbr-text,
.cid-srDiY3pii4 .mbr-section-btn {
  color: #ffffff;
}
.cid-srDm0NCydP {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-srDm0NCydP .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-srEVp3VjE7 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-srEVp3VjE7 .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.cid-srEVp3VjE7 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-srEVp3VjE7 .image-block:hover:before {
  opacity: 0;
}
.cid-srEVp3VjE7 .image-block:hover .wrap {
  opacity: 1;
}
.cid-srEVp3VjE7 .image-block:hover img {
  transform: scale(1.05);
}
.cid-srEVp3VjE7 h4 {
  letter-spacing: 2px;
}
.cid-srEVp3VjE7 figcaption {
  position: relative;
}
.cid-srEVp3VjE7 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-srEVp3VjE7 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-srEVp3VjE7 .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-srEVp3VjE7 .wrap {
    opacity: 1!important;
  }
  .cid-srEVp3VjE7 .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-uFl4tqVBWy {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uFl4tqVBWy .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.cid-uFl4tqVBWy .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-uFl4tqVBWy .image-block:hover:before {
  opacity: 0;
}
.cid-uFl4tqVBWy .image-block:hover .wrap {
  opacity: 1;
}
.cid-uFl4tqVBWy .image-block:hover img {
  transform: scale(1.05);
}
.cid-uFl4tqVBWy h4 {
  letter-spacing: 2px;
}
.cid-uFl4tqVBWy figcaption {
  position: relative;
}
.cid-uFl4tqVBWy figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uFl4tqVBWy img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uFl4tqVBWy .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uFl4tqVBWy .wrap {
    opacity: 1!important;
  }
  .cid-uFl4tqVBWy .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-srEJHSQuAs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-srEJHSQuAs .mbr-section-title {
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #232323;
  text-align: center;
}
.cid-srEJHSQuAs .nav {
  border: none;
}
.cid-srEJHSQuAs .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-srEJHSQuAs .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #000000;
  font-style: normal;
  font-weight: 500;
  padding: 1rem 3rem;
  margin: 0px -0.5px 1rem -0.5px;
  transition: all .5s;
  border-radius: 0px !important;
  border-bottom: 1px solid #000000;
}
.cid-srEJHSQuAs .nav-tabs .nav-link:hover {
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff;
}
.cid-srEJHSQuAs .nav-tabs .nav-link.active {
  border: 1px solid #000000;
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #000000;
}
.cid-srEJHSQuAs P {
  text-align: left;
  color: #000000;
}
.cid-srrmeOo78Z {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-srrmeOo78Z .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-srrmeOo78Z .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-srrmeOo78Z .col + .mbr-section-btn .btn,
.cid-srrmeOo78Z .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-srrmeOo78Z .col + .mbr-section-btn .btn,
  .cid-srrmeOo78Z .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-srrmeOo78Z .dragArea > *:nth-last-child(2).col,
  .cid-srrmeOo78Z .dragArea > *:nth-last-child(2).col-auto,
  .cid-srrmeOo78Z .col + .mbr-section-btn,
  .cid-srrmeOo78Z .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-srrmeOo78Z .dragArea {
    flex-direction: column;
  }
}
.cid-srrmeOo78Z .btn-primary {
  border: 1px solid #103178 !important;
}
.cid-srrmeOo78Z .btn-primary:hover {
  border: 1px solid #103178 !important;
}
.cid-srrmeOo78Z .stripe {
  border-bottom: 1px solid #9fdbf8;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-srrmeOo78Z .form-group {
  max-width: 220px;
}
.cid-srrmeOo78Z .mbr-section-btn {
  padding-left: 0;
}
.cid-srrmeOo78Z .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-srrmeOo78Z .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #9fdbf8;
  width: 85%;
}
.cid-srrmeOo78Z .mbr-text {
  color: #444;
}
.cid-srrmeOo78Z h5 {
  margin-bottom: 0;
}
.cid-srrmeOo78Z .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-srrmeOo78Z .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-srrmeOo78Z .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-srrmeOo78Z .socicon {
  font-size: 1.3rem;
  background: #000000;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-srrmeOo78Z .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-srrmeOo78Z .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-srrmeOo78Z .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-srrmeOo78Z .social-list a:hover {
  opacity: 0.4;
}
.cid-srrmeOo78Z .media-container-row > div {
  padding: 0px;
}
.cid-srrmeOo78Z .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-srrmeOo78Z .group-title {
  text-align: left;
  color: #9fdbf8;
  padding-bottom: 0.2rem;
}
.cid-srrmeOo78Z .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-srrmeOo78Z .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-srrmeOo78Z .social-list,
  .cid-srrmeOo78Z .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-srrmeOo78Z h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-srrmeOo78Z .form-group {
    max-width: 180px;
  }
}
.cid-srrmeOo78Z .links span {
  color: #9e9e9e;
}
.cid-srrmeOo78Z .logo-sub-title {
  text-align: center;
  color: #8cdd54;
}
.cid-srrmeOo78Z .logo-title {
  text-align: center;
}
.cid-srrmeOo78Z .logo-title,
.cid-srrmeOo78Z .logo {
  color: #9fdbf8;
}
.cid-srz0aftFCe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-srz0aftFCe .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-srz0aftFCe .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-srz0aftFCe .iconfont-wrapper {
  color: #005c9f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-srz0aftFCe .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-srz0aftFCe .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-srz0aftFCe .container {
    padding: 0 1rem;
  }
}
.cid-srz0aftFCe .menu-tite {
  background: #103178;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-srz0aftFCe .nav-link {
  position: relative;
}
.cid-srz0aftFCe .nav-link:hover {
  color: #951697 !important;
}
.cid-srz0aftFCe nav.navbar {
  position: fixed;
}
.cid-srz0aftFCe .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-srz0aftFCe .navbar.opened {
  transition: all 0.3s;
}
.cid-srz0aftFCe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-srz0aftFCe .navbar .navbar-logo img {
  width: auto;
}
.cid-srz0aftFCe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-srz0aftFCe .navbar.collapsed {
  justify-content: center;
}
.cid-srz0aftFCe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-srz0aftFCe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-srz0aftFCe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-srz0aftFCe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-srz0aftFCe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-srz0aftFCe .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-srz0aftFCe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-srz0aftFCe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-srz0aftFCe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-srz0aftFCe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-srz0aftFCe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-srz0aftFCe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-srz0aftFCe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-srz0aftFCe .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-srz0aftFCe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-srz0aftFCe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-srz0aftFCe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-srz0aftFCe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-srz0aftFCe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-srz0aftFCe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-srz0aftFCe .navbar.navbar-short {
  min-height: 60px;
}
.cid-srz0aftFCe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-srz0aftFCe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-srz0aftFCe .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-srz0aftFCe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-srz0aftFCe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-srz0aftFCe .dropdown-item:hover,
.cid-srz0aftFCe .dropdown-item:focus {
  background: #103178 !important;
  color: white !important;
}
.cid-srz0aftFCe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-srz0aftFCe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-srz0aftFCe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-srz0aftFCe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-srz0aftFCe .dropdown-menu,
.cid-srz0aftFCe .navbar.opened {
  background: #ffffff !important;
}
.cid-srz0aftFCe .nav-item:focus,
.cid-srz0aftFCe .nav-link:focus {
  outline: none;
}
.cid-srz0aftFCe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-srz0aftFCe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srz0aftFCe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-srz0aftFCe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-srz0aftFCe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-srz0aftFCe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-srz0aftFCe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-srz0aftFCe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-srz0aftFCe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-srz0aftFCe .dropdown-item.active,
.cid-srz0aftFCe .dropdown-item:active {
  background-color: transparent;
}
.cid-srz0aftFCe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-srz0aftFCe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-srz0aftFCe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-srz0aftFCe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-srz0aftFCe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-srz0aftFCe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srz0aftFCe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-srz0aftFCe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-srz0aftFCe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-srz0aftFCe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-srz0aftFCe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-srz0aftFCe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srz0aftFCe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srz0aftFCe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-srz0aftFCe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srz0aftFCe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-srz0aftFCe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-srz0aftFCe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srz0aftFCe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-srz0aftFCe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-srz0aftFCe .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-srz0aftFCe .navbar {
    height: 70px;
  }
  .cid-srz0aftFCe .navbar.opened {
    height: auto;
  }
  .cid-srz0aftFCe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-srz0omHyx8 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-srz0omHyx8 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-srz0omHyx8 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-srz0omHyx8 .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-srz0omHyx8 .input-group-btn .btn {
  border-radius: 0px !important;
}
.cid-srz0omHyx8 .form-control {
  background: none;
  border-radius: 0px;
}
.cid-srz0omHyx8 textarea.form-control {
  min-height: 214.5px;
}
.cid-srz0omHyx8 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
  margin-bottom: 2.5rem;
}
.cid-srz0omHyx8 h4,
.cid-srz0omHyx8 p {
  margin: 0;
}
.cid-srz0omHyx8 h2 {
  color: #333;
  margin-bottom: 2rem;
}
.cid-srz0omHyx8 h3 {
  color: #767676;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-srz0omHyx8 .icon {
  color: #656565;
  font-size: 2.5rem;
}
@media (max-width: 991px) {
  .cid-srz0omHyx8 h2 {
    text-align: center;
  }
  .cid-srz0omHyx8 h3 {
    text-align: center;
  }
  .cid-srz0omHyx8 .input-group-btn {
    text-align: center;
  }
  .cid-srz0omHyx8 .social-list {
    text-align: center;
  }
  .cid-srz0omHyx8 .order-2 {
    margin-top: 2.5rem;
  }
}
.cid-srz0omHyx8 H2 {
  color: #656565;
}
.cid-srz0omHyx8 .content {
  text-align: left;
  color: #000000;
}
.cid-srz0omHyx8 .type {
  text-align: left;
  padding-bottom: 8px;
  color: #951697;
}
.cid-srz0omHyx8 .title1 {
  text-align: left;
  color: #000000;
}
.cid-srz0omHyx8 .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-srz0omHyx8 .title2 {
  color: #000000;
}
.cid-srz0omHyx8 LABEL {
  color: #000000;
}
.cid-srz0ah1eVI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-srz0ah1eVI .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-srz0ah1eVI .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-srz0ah1eVI .col + .mbr-section-btn .btn,
.cid-srz0ah1eVI .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-srz0ah1eVI .col + .mbr-section-btn .btn,
  .cid-srz0ah1eVI .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-srz0ah1eVI .dragArea > *:nth-last-child(2).col,
  .cid-srz0ah1eVI .dragArea > *:nth-last-child(2).col-auto,
  .cid-srz0ah1eVI .col + .mbr-section-btn,
  .cid-srz0ah1eVI .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-srz0ah1eVI .dragArea {
    flex-direction: column;
  }
}
.cid-srz0ah1eVI .btn-primary {
  border: 1px solid #103178 !important;
}
.cid-srz0ah1eVI .btn-primary:hover {
  border: 1px solid #103178 !important;
}
.cid-srz0ah1eVI .stripe {
  border-bottom: 1px solid #9fdbf8;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-srz0ah1eVI .form-group {
  max-width: 220px;
}
.cid-srz0ah1eVI .mbr-section-btn {
  padding-left: 0;
}
.cid-srz0ah1eVI .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-srz0ah1eVI .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #9fdbf8;
  width: 85%;
}
.cid-srz0ah1eVI .mbr-text {
  color: #444;
}
.cid-srz0ah1eVI h5 {
  margin-bottom: 0;
}
.cid-srz0ah1eVI .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-srz0ah1eVI .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-srz0ah1eVI .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-srz0ah1eVI .socicon {
  font-size: 1.3rem;
  background: #000000;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-srz0ah1eVI .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-srz0ah1eVI .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-srz0ah1eVI .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-srz0ah1eVI .social-list a:hover {
  opacity: 0.4;
}
.cid-srz0ah1eVI .media-container-row > div {
  padding: 0px;
}
.cid-srz0ah1eVI .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-srz0ah1eVI .group-title {
  text-align: left;
  color: #9fdbf8;
  padding-bottom: 0.2rem;
}
.cid-srz0ah1eVI .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-srz0ah1eVI .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-srz0ah1eVI .social-list,
  .cid-srz0ah1eVI .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-srz0ah1eVI h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-srz0ah1eVI .form-group {
    max-width: 180px;
  }
}
.cid-srz0ah1eVI .links span {
  color: #9e9e9e;
}
.cid-srz0ah1eVI .logo-sub-title {
  text-align: center;
  color: #8cdd54;
}
.cid-srz0ah1eVI .logo-title {
  text-align: center;
}
.cid-srz0ah1eVI .logo-title,
.cid-srz0ah1eVI .logo {
  color: #9fdbf8;
}
.cid-srz4v6ikDX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-srz4v6ikDX .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-srz4v6ikDX .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-srz4v6ikDX .iconfont-wrapper {
  color: #005c9f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-srz4v6ikDX .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-srz4v6ikDX .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-srz4v6ikDX .container {
    padding: 0 1rem;
  }
}
.cid-srz4v6ikDX .menu-tite {
  background: #103178;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-srz4v6ikDX .nav-link {
  position: relative;
}
.cid-srz4v6ikDX .nav-link:hover {
  color: #951697 !important;
}
.cid-srz4v6ikDX nav.navbar {
  position: fixed;
}
.cid-srz4v6ikDX .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-srz4v6ikDX .navbar.opened {
  transition: all 0.3s;
}
.cid-srz4v6ikDX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-srz4v6ikDX .navbar .navbar-logo img {
  width: auto;
}
.cid-srz4v6ikDX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-srz4v6ikDX .navbar.collapsed {
  justify-content: center;
}
.cid-srz4v6ikDX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-srz4v6ikDX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-srz4v6ikDX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-srz4v6ikDX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-srz4v6ikDX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-srz4v6ikDX .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-srz4v6ikDX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-srz4v6ikDX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-srz4v6ikDX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-srz4v6ikDX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-srz4v6ikDX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-srz4v6ikDX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-srz4v6ikDX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-srz4v6ikDX .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-srz4v6ikDX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-srz4v6ikDX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-srz4v6ikDX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-srz4v6ikDX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-srz4v6ikDX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-srz4v6ikDX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-srz4v6ikDX .navbar.navbar-short {
  min-height: 60px;
}
.cid-srz4v6ikDX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-srz4v6ikDX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-srz4v6ikDX .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-srz4v6ikDX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-srz4v6ikDX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-srz4v6ikDX .dropdown-item:hover,
.cid-srz4v6ikDX .dropdown-item:focus {
  background: #103178 !important;
  color: white !important;
}
.cid-srz4v6ikDX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-srz4v6ikDX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-srz4v6ikDX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-srz4v6ikDX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-srz4v6ikDX .dropdown-menu,
.cid-srz4v6ikDX .navbar.opened {
  background: #ffffff !important;
}
.cid-srz4v6ikDX .nav-item:focus,
.cid-srz4v6ikDX .nav-link:focus {
  outline: none;
}
.cid-srz4v6ikDX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-srz4v6ikDX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srz4v6ikDX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-srz4v6ikDX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-srz4v6ikDX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-srz4v6ikDX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-srz4v6ikDX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-srz4v6ikDX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-srz4v6ikDX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-srz4v6ikDX .dropdown-item.active,
.cid-srz4v6ikDX .dropdown-item:active {
  background-color: transparent;
}
.cid-srz4v6ikDX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-srz4v6ikDX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-srz4v6ikDX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-srz4v6ikDX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-srz4v6ikDX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-srz4v6ikDX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srz4v6ikDX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-srz4v6ikDX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-srz4v6ikDX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-srz4v6ikDX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-srz4v6ikDX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-srz4v6ikDX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srz4v6ikDX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srz4v6ikDX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-srz4v6ikDX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srz4v6ikDX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-srz4v6ikDX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-srz4v6ikDX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srz4v6ikDX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-srz4v6ikDX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-srz4v6ikDX .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-srz4v6ikDX .navbar {
    height: 70px;
  }
  .cid-srz4v6ikDX .navbar.opened {
    height: auto;
  }
  .cid-srz4v6ikDX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-srz4JtXQvO {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srz4JtXQvO .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-srz4JtXQvO .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-srz4JtXQvO .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #103178;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-srz4JtXQvO .card-title {
  color: #951697;
  margin: 0;
  text-align: center;
}
.cid-srz4JtXQvO .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-srz4JtXQvO .card-box {
  padding: 1rem;
}
.cid-srz4JtXQvO .mbr-section-title,
.cid-srz4JtXQvO .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srz4JtXQvO .card-box > p,
.cid-srz4JtXQvO .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-srz5Aw9wRJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srz5Aw9wRJ .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-srz5Aw9wRJ .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-srz5Aw9wRJ .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-srz5Aw9wRJ .card-title {
  color: #951697;
  margin: 0;
  text-align: center;
}
.cid-srz5Aw9wRJ .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-srz5Aw9wRJ .card-box {
  padding: 1rem;
}
.cid-srz5Aw9wRJ .mbr-section-title,
.cid-srz5Aw9wRJ .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srz5Aw9wRJ .card-box > p,
.cid-srz5Aw9wRJ .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-srz5H8iUnt {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-srz5H8iUnt .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-srz5H8iUnt .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-srz5H8iUnt .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-srz5H8iUnt .card-title {
  color: #951697;
  margin: 0;
  text-align: center;
}
.cid-srz5H8iUnt .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-srz5H8iUnt .card-box {
  padding: 1rem;
}
.cid-srz5H8iUnt .mbr-section-title,
.cid-srz5H8iUnt .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srz5H8iUnt .card-box > p,
.cid-srz5H8iUnt .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-srz4v7nXbB {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-srz4v7nXbB .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-srz4v7nXbB .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-srz4v7nXbB .col + .mbr-section-btn .btn,
.cid-srz4v7nXbB .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-srz4v7nXbB .col + .mbr-section-btn .btn,
  .cid-srz4v7nXbB .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-srz4v7nXbB .dragArea > *:nth-last-child(2).col,
  .cid-srz4v7nXbB .dragArea > *:nth-last-child(2).col-auto,
  .cid-srz4v7nXbB .col + .mbr-section-btn,
  .cid-srz4v7nXbB .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-srz4v7nXbB .dragArea {
    flex-direction: column;
  }
}
.cid-srz4v7nXbB .btn-primary {
  border: 1px solid #103178 !important;
}
.cid-srz4v7nXbB .btn-primary:hover {
  border: 1px solid #103178 !important;
}
.cid-srz4v7nXbB .stripe {
  border-bottom: 1px solid #9fdbf8;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-srz4v7nXbB .form-group {
  max-width: 220px;
}
.cid-srz4v7nXbB .mbr-section-btn {
  padding-left: 0;
}
.cid-srz4v7nXbB .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-srz4v7nXbB .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #9fdbf8;
  width: 85%;
}
.cid-srz4v7nXbB .mbr-text {
  color: #444;
}
.cid-srz4v7nXbB h5 {
  margin-bottom: 0;
}
.cid-srz4v7nXbB .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-srz4v7nXbB .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-srz4v7nXbB .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-srz4v7nXbB .socicon {
  font-size: 1.3rem;
  background: #000000;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-srz4v7nXbB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-srz4v7nXbB .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-srz4v7nXbB .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-srz4v7nXbB .social-list a:hover {
  opacity: 0.4;
}
.cid-srz4v7nXbB .media-container-row > div {
  padding: 0px;
}
.cid-srz4v7nXbB .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-srz4v7nXbB .group-title {
  text-align: left;
  color: #9fdbf8;
  padding-bottom: 0.2rem;
}
.cid-srz4v7nXbB .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-srz4v7nXbB .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-srz4v7nXbB .social-list,
  .cid-srz4v7nXbB .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-srz4v7nXbB h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-srz4v7nXbB .form-group {
    max-width: 180px;
  }
}
.cid-srz4v7nXbB .links span {
  color: #9e9e9e;
}
.cid-srz4v7nXbB .logo-sub-title {
  text-align: center;
  color: #8cdd54;
}
.cid-srz4v7nXbB .logo-title {
  text-align: center;
}
.cid-srz4v7nXbB .logo-title,
.cid-srz4v7nXbB .logo {
  color: #9fdbf8;
}
.cid-srz6FEq9qL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-srz6FEq9qL .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-srz6FEq9qL .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-srz6FEq9qL .iconfont-wrapper {
  color: #005c9f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-srz6FEq9qL .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-srz6FEq9qL .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-srz6FEq9qL .container {
    padding: 0 1rem;
  }
}
.cid-srz6FEq9qL .menu-tite {
  background: #103178;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-srz6FEq9qL .nav-link {
  position: relative;
}
.cid-srz6FEq9qL .nav-link:hover {
  color: #951697 !important;
}
.cid-srz6FEq9qL nav.navbar {
  position: fixed;
}
.cid-srz6FEq9qL .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-srz6FEq9qL .navbar.opened {
  transition: all 0.3s;
}
.cid-srz6FEq9qL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-srz6FEq9qL .navbar .navbar-logo img {
  width: auto;
}
.cid-srz6FEq9qL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-srz6FEq9qL .navbar.collapsed {
  justify-content: center;
}
.cid-srz6FEq9qL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-srz6FEq9qL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-srz6FEq9qL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-srz6FEq9qL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-srz6FEq9qL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-srz6FEq9qL .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-srz6FEq9qL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-srz6FEq9qL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-srz6FEq9qL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-srz6FEq9qL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-srz6FEq9qL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-srz6FEq9qL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-srz6FEq9qL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-srz6FEq9qL .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-srz6FEq9qL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-srz6FEq9qL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-srz6FEq9qL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-srz6FEq9qL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-srz6FEq9qL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-srz6FEq9qL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-srz6FEq9qL .navbar.navbar-short {
  min-height: 60px;
}
.cid-srz6FEq9qL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-srz6FEq9qL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-srz6FEq9qL .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-srz6FEq9qL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-srz6FEq9qL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-srz6FEq9qL .dropdown-item:hover,
.cid-srz6FEq9qL .dropdown-item:focus {
  background: #103178 !important;
  color: white !important;
}
.cid-srz6FEq9qL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-srz6FEq9qL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-srz6FEq9qL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-srz6FEq9qL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-srz6FEq9qL .dropdown-menu,
.cid-srz6FEq9qL .navbar.opened {
  background: #ffffff !important;
}
.cid-srz6FEq9qL .nav-item:focus,
.cid-srz6FEq9qL .nav-link:focus {
  outline: none;
}
.cid-srz6FEq9qL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-srz6FEq9qL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srz6FEq9qL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-srz6FEq9qL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-srz6FEq9qL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-srz6FEq9qL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-srz6FEq9qL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-srz6FEq9qL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-srz6FEq9qL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-srz6FEq9qL .dropdown-item.active,
.cid-srz6FEq9qL .dropdown-item:active {
  background-color: transparent;
}
.cid-srz6FEq9qL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-srz6FEq9qL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-srz6FEq9qL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-srz6FEq9qL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-srz6FEq9qL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-srz6FEq9qL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srz6FEq9qL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-srz6FEq9qL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-srz6FEq9qL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-srz6FEq9qL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-srz6FEq9qL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-srz6FEq9qL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srz6FEq9qL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srz6FEq9qL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-srz6FEq9qL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srz6FEq9qL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-srz6FEq9qL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-srz6FEq9qL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srz6FEq9qL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-srz6FEq9qL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-srz6FEq9qL .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-srz6FEq9qL .navbar {
    height: 70px;
  }
  .cid-srz6FEq9qL .navbar.opened {
    height: auto;
  }
  .cid-srz6FEq9qL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-srz6FFniu6 {
  padding-top: 135px;
  padding-bottom: 30px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-srz6FFniu6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-srz6FFniu6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-srz6FFniu6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-srz6FFniu6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-srz6FFniu6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #353535;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-srz6FFniu6 .icon-focus {
  display: none;
}
.cid-srz6FFniu6 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-srz6FFniu6 ul {
  font-size: 0;
}
.cid-srz6FFniu6 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-srz6FFniu6 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-srz6FFniu6 .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #103178, #951697);
}
.cid-srz6FFniu6 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-srz6FFniu6 .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-srz6FFniu6 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-srz6FFniu6 .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-srz6FFniu6 .btn:hover {
  background: transparent !important;
}
.cid-srz6FFniu6 .btn:hover:before {
  background: transparent !important;
}
.cid-srz6FFniu6 .btn:before {
  background-color: transparent !important;
}
.cid-srz6FFniu6 .btn:focus {
  box-shadow: none;
}
.cid-srz6FFniu6 .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-srz6FGxyqs {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-srz6FGxyqs .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-srz6FGxyqs .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-srz6FGxyqs .col + .mbr-section-btn .btn,
.cid-srz6FGxyqs .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-srz6FGxyqs .col + .mbr-section-btn .btn,
  .cid-srz6FGxyqs .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-srz6FGxyqs .dragArea > *:nth-last-child(2).col,
  .cid-srz6FGxyqs .dragArea > *:nth-last-child(2).col-auto,
  .cid-srz6FGxyqs .col + .mbr-section-btn,
  .cid-srz6FGxyqs .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-srz6FGxyqs .dragArea {
    flex-direction: column;
  }
}
.cid-srz6FGxyqs .btn-primary {
  border: 1px solid #103178 !important;
}
.cid-srz6FGxyqs .btn-primary:hover {
  border: 1px solid #103178 !important;
}
.cid-srz6FGxyqs .stripe {
  border-bottom: 1px solid #9fdbf8;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-srz6FGxyqs .form-group {
  max-width: 220px;
}
.cid-srz6FGxyqs .mbr-section-btn {
  padding-left: 0;
}
.cid-srz6FGxyqs .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-srz6FGxyqs .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #9fdbf8;
  width: 85%;
}
.cid-srz6FGxyqs .mbr-text {
  color: #444;
}
.cid-srz6FGxyqs h5 {
  margin-bottom: 0;
}
.cid-srz6FGxyqs .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-srz6FGxyqs .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-srz6FGxyqs .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-srz6FGxyqs .socicon {
  font-size: 1.3rem;
  background: #000000;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-srz6FGxyqs .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-srz6FGxyqs .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-srz6FGxyqs .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-srz6FGxyqs .social-list a:hover {
  opacity: 0.4;
}
.cid-srz6FGxyqs .media-container-row > div {
  padding: 0px;
}
.cid-srz6FGxyqs .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-srz6FGxyqs .group-title {
  text-align: left;
  color: #9fdbf8;
  padding-bottom: 0.2rem;
}
.cid-srz6FGxyqs .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-srz6FGxyqs .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-srz6FGxyqs .social-list,
  .cid-srz6FGxyqs .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-srz6FGxyqs h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-srz6FGxyqs .form-group {
    max-width: 180px;
  }
}
.cid-srz6FGxyqs .links span {
  color: #9e9e9e;
}
.cid-srz6FGxyqs .logo-sub-title {
  text-align: center;
  color: #8cdd54;
}
.cid-srz6FGxyqs .logo-title {
  text-align: center;
}
.cid-srz6FGxyqs .logo-title,
.cid-srz6FGxyqs .logo {
  color: #9fdbf8;
}
.cid-srzhVv9X8D {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-srzhVv9X8D .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-srzhVv9X8D .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-srzhVv9X8D .iconfont-wrapper {
  color: #005c9f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-srzhVv9X8D .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-srzhVv9X8D .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-srzhVv9X8D .container {
    padding: 0 1rem;
  }
}
.cid-srzhVv9X8D .menu-tite {
  background: #103178;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-srzhVv9X8D .nav-link {
  position: relative;
}
.cid-srzhVv9X8D .nav-link:hover {
  color: #951697 !important;
}
.cid-srzhVv9X8D nav.navbar {
  position: fixed;
}
.cid-srzhVv9X8D .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-srzhVv9X8D .navbar.opened {
  transition: all 0.3s;
}
.cid-srzhVv9X8D .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-srzhVv9X8D .navbar .navbar-logo img {
  width: auto;
}
.cid-srzhVv9X8D .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-srzhVv9X8D .navbar.collapsed {
  justify-content: center;
}
.cid-srzhVv9X8D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-srzhVv9X8D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-srzhVv9X8D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-srzhVv9X8D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-srzhVv9X8D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-srzhVv9X8D .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-srzhVv9X8D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-srzhVv9X8D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-srzhVv9X8D .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-srzhVv9X8D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-srzhVv9X8D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-srzhVv9X8D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-srzhVv9X8D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-srzhVv9X8D .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-srzhVv9X8D .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-srzhVv9X8D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-srzhVv9X8D .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-srzhVv9X8D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-srzhVv9X8D .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-srzhVv9X8D .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-srzhVv9X8D .navbar.navbar-short {
  min-height: 60px;
}
.cid-srzhVv9X8D .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-srzhVv9X8D .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-srzhVv9X8D .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-srzhVv9X8D .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-srzhVv9X8D .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-srzhVv9X8D .dropdown-item:hover,
.cid-srzhVv9X8D .dropdown-item:focus {
  background: #103178 !important;
  color: white !important;
}
.cid-srzhVv9X8D .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-srzhVv9X8D .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-srzhVv9X8D .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-srzhVv9X8D .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-srzhVv9X8D .dropdown-menu,
.cid-srzhVv9X8D .navbar.opened {
  background: #ffffff !important;
}
.cid-srzhVv9X8D .nav-item:focus,
.cid-srzhVv9X8D .nav-link:focus {
  outline: none;
}
.cid-srzhVv9X8D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-srzhVv9X8D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srzhVv9X8D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-srzhVv9X8D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-srzhVv9X8D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-srzhVv9X8D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-srzhVv9X8D .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-srzhVv9X8D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-srzhVv9X8D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-srzhVv9X8D .dropdown-item.active,
.cid-srzhVv9X8D .dropdown-item:active {
  background-color: transparent;
}
.cid-srzhVv9X8D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-srzhVv9X8D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-srzhVv9X8D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-srzhVv9X8D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-srzhVv9X8D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-srzhVv9X8D .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srzhVv9X8D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-srzhVv9X8D .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-srzhVv9X8D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-srzhVv9X8D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-srzhVv9X8D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-srzhVv9X8D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srzhVv9X8D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-srzhVv9X8D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-srzhVv9X8D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srzhVv9X8D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-srzhVv9X8D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-srzhVv9X8D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-srzhVv9X8D .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-srzhVv9X8D a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-srzhVv9X8D .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-srzhVv9X8D .navbar {
    height: 70px;
  }
  .cid-srzhVv9X8D .navbar.opened {
    height: auto;
  }
  .cid-srzhVv9X8D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-srzi5yezgA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fef8f5;
}
.cid-srzi5yezgA .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-srzi5yezgA .text-wrapper:hover .mbr-section-title a {
  color: #951697 !important;
}
.cid-srzi5yezgA .image-wrapper,
.cid-srzi5yezgA img {
  width: 100%;
  object-fit: cover;
}
.cid-srzi5yezgA .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-srzi5yezgA .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-srzi5yezgA .mbr-section-btn .btn-secondary-outline:hover,
.cid-srzi5yezgA .mbr-section-btn .btn-secondary-outline .active,
.cid-srzi5yezgA .mbr-section-btn .btn-secondary-outline:focus {
  color: #103178 !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-srzi5yezgA .mbr-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .cid-srzi5yezgA {
    flex-direction: column;
  }
  .cid-srzi5yezgA .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-srzi5yezgA .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-srzi5yezgA .mbr-text,
.cid-srzi5yezgA .mbr-section-btn {
  color: #000000;
}
.cid-srzi5yezgA .mbr-section-title {
  color: #000000;
}
.cid-srzk7xwPON {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-srzk7xwPON .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-srzk7xwPON .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-srzk7xwPON .image-block:hover:before {
  opacity: 0.4;
}
.cid-srzk7xwPON .image-block:hover .wrap {
  opacity: 1;
}
.cid-srzk7xwPON .image-block:hover img {
  transform: scale(1.05);
}
.cid-srzk7xwPON h4 {
  letter-spacing: 2px;
}
.cid-srzk7xwPON figcaption {
  position: relative;
}
.cid-srzk7xwPON figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-srzk7xwPON img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-srzk7xwPON .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-srzk7xwPON .wrap {
    opacity: 1!important;
  }
  .cid-srzk7xwPON .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-srAt2Jys8b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-srAt2Jys8b img {
  transition: all 0.3s;
}
.cid-srAt2Jys8b .image-wrapper {
  overflow: hidden;
  padding: 0;
}
.cid-srAt2Jys8b p {
  max-width: 500px;
}
.cid-srAt2Jys8b .card-wrapper {
  margin-bottom: 2rem;
  background: #f2eae2;
}
.cid-srAt2Jys8b .card-wrapper:hover .link:before {
  background: #951697;
}
.cid-srAt2Jys8b .card-wrapper:hover img {
  transform: scale(1.1);
}
.cid-srAt2Jys8b .card-row,
.cid-srAt2Jys8b .img-col {
  margin: 0;
  padding: 0;
}
.cid-srAt2Jys8b .text-box {
  padding: 2rem 1rem;
}
.cid-srAt2Jys8b .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-srAt2Jys8b H5 {
  color: #3098f3;
}
.cid-srAt2Jys8b H2 {
  color: #082c4e;
}
.cid-srAt2Jys8b H4 {
  color: #000000;
}
.cid-srAt2Jys8b .mbr-text {
  text-align: left;
}
.cid-srzhVximTg {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-srzhVximTg .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-srzhVximTg .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-srzhVximTg .col + .mbr-section-btn .btn,
.cid-srzhVximTg .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-srzhVximTg .col + .mbr-section-btn .btn,
  .cid-srzhVximTg .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-srzhVximTg .dragArea > *:nth-last-child(2).col,
  .cid-srzhVximTg .dragArea > *:nth-last-child(2).col-auto,
  .cid-srzhVximTg .col + .mbr-section-btn,
  .cid-srzhVximTg .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-srzhVximTg .dragArea {
    flex-direction: column;
  }
}
.cid-srzhVximTg .btn-primary {
  border: 1px solid #103178 !important;
}
.cid-srzhVximTg .btn-primary:hover {
  border: 1px solid #103178 !important;
}
.cid-srzhVximTg .stripe {
  border-bottom: 1px solid #9fdbf8;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-srzhVximTg .form-group {
  max-width: 220px;
}
.cid-srzhVximTg .mbr-section-btn {
  padding-left: 0;
}
.cid-srzhVximTg .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-srzhVximTg .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #9fdbf8;
  width: 85%;
}
.cid-srzhVximTg .mbr-text {
  color: #444;
}
.cid-srzhVximTg h5 {
  margin-bottom: 0;
}
.cid-srzhVximTg .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-srzhVximTg .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-srzhVximTg .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-srzhVximTg .socicon {
  font-size: 1.3rem;
  background: #000000;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-srzhVximTg .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-srzhVximTg .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-srzhVximTg .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-srzhVximTg .social-list a:hover {
  opacity: 0.4;
}
.cid-srzhVximTg .media-container-row > div {
  padding: 0px;
}
.cid-srzhVximTg .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-srzhVximTg .group-title {
  text-align: left;
  color: #9fdbf8;
  padding-bottom: 0.2rem;
}
.cid-srzhVximTg .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-srzhVximTg .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-srzhVximTg .social-list,
  .cid-srzhVximTg .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-srzhVximTg h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-srzhVximTg .form-group {
    max-width: 180px;
  }
}
.cid-srzhVximTg .links span {
  color: #9e9e9e;
}
.cid-srzhVximTg .logo-sub-title {
  text-align: center;
  color: #8cdd54;
}
.cid-srzhVximTg .logo-title {
  text-align: center;
}
.cid-srzhVximTg .logo-title,
.cid-srzhVximTg .logo {
  color: #9fdbf8;
}
.cid-uUGyDogcQj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uUGyDogcQj .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-uUGyDogcQj .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-uUGyDogcQj .iconfont-wrapper {
  color: #005c9f !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uUGyDogcQj .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uUGyDogcQj .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uUGyDogcQj .container {
    padding: 0 1rem;
  }
}
.cid-uUGyDogcQj .menu-tite {
  background: #103178;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-uUGyDogcQj .nav-link {
  position: relative;
}
.cid-uUGyDogcQj .nav-link:hover {
  color: #951697 !important;
}
.cid-uUGyDogcQj nav.navbar {
  position: fixed;
}
.cid-uUGyDogcQj .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uUGyDogcQj .navbar.opened {
  transition: all 0.3s;
}
.cid-uUGyDogcQj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uUGyDogcQj .navbar .navbar-logo img {
  width: auto;
}
.cid-uUGyDogcQj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUGyDogcQj .navbar.collapsed {
  justify-content: center;
}
.cid-uUGyDogcQj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uUGyDogcQj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUGyDogcQj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uUGyDogcQj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUGyDogcQj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUGyDogcQj .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-uUGyDogcQj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUGyDogcQj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uUGyDogcQj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uUGyDogcQj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uUGyDogcQj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUGyDogcQj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUGyDogcQj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUGyDogcQj .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-uUGyDogcQj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uUGyDogcQj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUGyDogcQj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uUGyDogcQj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uUGyDogcQj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uUGyDogcQj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uUGyDogcQj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uUGyDogcQj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uUGyDogcQj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uUGyDogcQj .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-uUGyDogcQj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uUGyDogcQj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uUGyDogcQj .dropdown-item:hover,
.cid-uUGyDogcQj .dropdown-item:focus {
  background: #103178 !important;
  color: white !important;
}
.cid-uUGyDogcQj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uUGyDogcQj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uUGyDogcQj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-uUGyDogcQj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uUGyDogcQj .dropdown-menu,
.cid-uUGyDogcQj .navbar.opened {
  background: #ffffff !important;
}
.cid-uUGyDogcQj .nav-item:focus,
.cid-uUGyDogcQj .nav-link:focus {
  outline: none;
}
.cid-uUGyDogcQj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uUGyDogcQj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUGyDogcQj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uUGyDogcQj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uUGyDogcQj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uUGyDogcQj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uUGyDogcQj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uUGyDogcQj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUGyDogcQj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUGyDogcQj .dropdown-item.active,
.cid-uUGyDogcQj .dropdown-item:active {
  background-color: transparent;
}
.cid-uUGyDogcQj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUGyDogcQj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUGyDogcQj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUGyDogcQj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uUGyDogcQj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUGyDogcQj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUGyDogcQj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uUGyDogcQj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uUGyDogcQj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uUGyDogcQj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uUGyDogcQj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uUGyDogcQj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUGyDogcQj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uUGyDogcQj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uUGyDogcQj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUGyDogcQj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uUGyDogcQj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uUGyDogcQj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uUGyDogcQj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uUGyDogcQj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uUGyDogcQj .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-uUGyDogcQj .navbar {
    height: 70px;
  }
  .cid-uUGyDogcQj .navbar.opened {
    height: auto;
  }
  .cid-uUGyDogcQj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUGQDdZsHl {
  padding-top: 135px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uUGQDdZsHl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uUGQDdZsHl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uUGQDdZsHl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uUGQDdZsHl .title {
  padding: 0 2rem;
}
.cid-uUGQDdZsHl .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
  height: 300px !important;
}
.cid-uUGQDdZsHl .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-uUGQDdZsHl .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-uUGQDdZsHl .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-uUGQDdZsHl .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-uUGQDdZsHl .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-uUGQDdZsHl .container {
  padding: 0 1rem;
}
.cid-uUGQDdZsHl .mbr-gallery-item--p4 {
  padding: 1rem !important;
}
.cid-uUGQDdZsHl .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uUGQDdZsHl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uUGQDdZsHl .icon-focus {
  display: none;
}
.cid-uUGQDdZsHl .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-uUGQDdZsHl .btn-primary-outline:hover {
  background: transparent !important;
  color: #103178 !important;
}
.cid-uUGQDdZsHl li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-uUGQDdZsHl li {
  position: relative;
}
.cid-uUGQDdZsHl .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-uUGQDdZsHl .btn {
  font-family: JetBrains Mono !important;
}
.cid-uUGQDdZsHl .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uUGQDdZsHl .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUGQDdZsHl li:not(:last-child):after {
    top: 9px;
  }
  .cid-uUGQDdZsHl .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-uUGQDdZsHl .container {
    padding: 0rem;
  }
  .cid-uUGQDdZsHl .title {
    padding: 0 1rem;
  }
}
.cid-uUGQDdZsHl H2 {
  color: #89b758;
}
.cid-uUGyDpAVO2 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-uUGyDpAVO2 .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-uUGyDpAVO2 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uUGyDpAVO2 .col + .mbr-section-btn .btn,
.cid-uUGyDpAVO2 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-uUGyDpAVO2 .col + .mbr-section-btn .btn,
  .cid-uUGyDpAVO2 .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-uUGyDpAVO2 .dragArea > *:nth-last-child(2).col,
  .cid-uUGyDpAVO2 .dragArea > *:nth-last-child(2).col-auto,
  .cid-uUGyDpAVO2 .col + .mbr-section-btn,
  .cid-uUGyDpAVO2 .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-uUGyDpAVO2 .dragArea {
    flex-direction: column;
  }
}
.cid-uUGyDpAVO2 .btn-primary {
  border: 1px solid #103178 !important;
}
.cid-uUGyDpAVO2 .btn-primary:hover {
  border: 1px solid #103178 !important;
}
.cid-uUGyDpAVO2 .stripe {
  border-bottom: 1px solid #9fdbf8;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uUGyDpAVO2 .form-group {
  max-width: 220px;
}
.cid-uUGyDpAVO2 .mbr-section-btn {
  padding-left: 0;
}
.cid-uUGyDpAVO2 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uUGyDpAVO2 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #9fdbf8;
  width: 85%;
}
.cid-uUGyDpAVO2 .mbr-text {
  color: #444;
}
.cid-uUGyDpAVO2 h5 {
  margin-bottom: 0;
}
.cid-uUGyDpAVO2 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uUGyDpAVO2 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uUGyDpAVO2 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uUGyDpAVO2 .socicon {
  font-size: 1.3rem;
  background: #000000;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uUGyDpAVO2 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uUGyDpAVO2 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uUGyDpAVO2 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uUGyDpAVO2 .social-list a:hover {
  opacity: 0.4;
}
.cid-uUGyDpAVO2 .media-container-row > div {
  padding: 0px;
}
.cid-uUGyDpAVO2 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uUGyDpAVO2 .group-title {
  text-align: left;
  color: #9fdbf8;
  padding-bottom: 0.2rem;
}
.cid-uUGyDpAVO2 .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uUGyDpAVO2 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uUGyDpAVO2 .social-list,
  .cid-uUGyDpAVO2 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uUGyDpAVO2 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uUGyDpAVO2 .form-group {
    max-width: 180px;
  }
}
.cid-uUGyDpAVO2 .links span {
  color: #9e9e9e;
}
.cid-uUGyDpAVO2 .logo-sub-title {
  text-align: center;
  color: #8cdd54;
}
.cid-uUGyDpAVO2 .logo-title {
  text-align: center;
}
.cid-uUGyDpAVO2 .logo-title,
.cid-uUGyDpAVO2 .logo {
  color: #9fdbf8;
}
