body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
}
.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: 1.44rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.26rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .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.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #251241 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #818181 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #251241 !important;
  border-color: #251241 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #818181 !important;
  border-color: #818181 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #565656 !important;
  border-color: #565656 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #565656 !important;
  border-color: #565656 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #251241;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #251241 !important;
  border-color: #251241 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #818181;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #565656 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #818181 !important;
  border-color: #818181 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #251241 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #818181 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #251241 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff6666 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #40b0bf !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #47b5ed !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffe161 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #818181 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !important;
}
.nav-tabs .nav-link.active {
  color: #251241;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #818181;
}
.mbr-gallery-filter li.active .btn {
  background-color: #251241;
  border-color: #251241;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #251241;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9264d4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c1c1c1;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #251241 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #251241;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #251241;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #251241;
}
.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: #251241;
  border-bottom-color: #251241;
}
.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: #251241 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23251241' %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-sMLt7WbFv2 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #160f60;
}
.cid-sMLt7WbFv2 .img-wrap {
  -webkit-animation: jump 2s ease-in-out alternate;
  animation: jump 2s ease-in-out alternate;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  position: relative;
}
.cid-sMLt7WbFv2 .img-wrap img {
  width: 100%;
}
.cid-sMLt7WbFv2 .mbr-section-subtitle {
  color: #40b0bf;
}
.cid-sMLt7WbFv2 .mbr-section-title {
  color: #ffffff;
}
.cid-sMLt7WbFv2 .mbr-text {
  color: #b0b6d4;
  font-weight: 500;
}
.cid-sMLt7WbFv2 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sMLt7WbFv2 .mbr-section-btn .btn:first-child {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-sMLt7WbFv2 .mbr-section-btn {
    justify-content: center !important;
  }
}
@-webkit-keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-sJg0Fgkn8y {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sJg0Fgkn8y .link-wrapper {
  width: 100%;
}
.cid-sJg0Fgkn8y .container-fluid {
  max-width: 1750px;
  justify-content: center;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sJg0Fgkn8y .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sJg0Fgkn8y .card-big {
  border-right: 1px solid #000000;
  padding-right: 3rem;
}
@media (max-width: 992px) {
  .cid-sJg0Fgkn8y .card-big {
    border-right: 0px;
    padding-right: 1rem;
  }
}
.cid-sJg0Fgkn8y .img-big {
  height: 680px;
  position: relative;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
}
.cid-sJg0Fgkn8y .item-img {
  position: relative;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  height: 250px;
}
.cid-sJg0Fgkn8y img {
  object-fit: cover;
  height: 100%;
}
.cid-sJg0Fgkn8y .card-wrapper {
  margin-bottom: 3rem;
}
.cid-sJg0Fgkn8y .card-date {
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  width: fit-content;
  color: #ffffff;
  line-height: 2;
  padding: 4px 12px;
  text-align: center;
}
.cid-sJg0Fgkn8y .card-date:before {
  top: 50%;
  content: '';
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 1px ;
  background: #efefef;
}
.cid-sJg0Fgkn8y .card-type {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000000;
  width: fit-content;
  color: #ffffff;
  margin: 0;
  padding: 4px 12px;
}
.cid-sJg0Fgkn8y .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sJg0Fgkn8y .row {
    justify-content: flex-start;
  }
}
.cid-sJg0Fgkn8y .card {
  border-left: 1px solid #000000;
  border-radius: 0;
  padding-left: 2rem;
}
@media (max-width: 992px) {
  .cid-sJg0Fgkn8y .card {
    border-left: 0px;
    padding-left: 0rem;
  }
}
.cid-sJg0Fgkn8y .first {
  border: 0;
}
.cid-sJg0Fgkn8y .card-text {
  color: #160f60;
}
.cid-sJg0Fgkn8y .card-text a {
  position: relative;
  background: none!important;
}
.cid-sJg0Fgkn8y .card-text a:before {
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sJg0Fgkn8y .card-text a:hover:before {
  width: 0;
  right: 0;
  left: auto;
}
.cid-sJg0Fgkn8y .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sJg0Fgkn8y .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sJg0Fgkn8y .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sJg0Fgkn8y .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sJg0Fgkn8y .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sJg0Fgkn8y .card-title,
.cid-sJg0Fgkn8y .iconfont-wrapper {
  color: #000000;
}
.cid-sJg0Fgkn8y .link,
.cid-sJg0Fgkn8y .link-wrapper {
  color: #000000;
}
.cid-sjf5e91H2e {
  z-index: 1000;
  width: 100%;
}
.cid-sjf5e91H2e .navbar.collapsed ul.navbar-nav li {
  margin: 0;
  width: fit-content;
}
.cid-sjf5e91H2e .container-fluid {
  padding: 0 1rem;
  margin: 0 auto;
}
.cid-sjf5e91H2e .icons-menu {
  width: fit-content;
  padding: 0 4rem;
  padding-bottom: 3rem;
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sjf5e91H2e .icons-menu {
    padding: 0 3rem;
  }
}
.cid-sjf5e91H2e nav.navbar {
  position: fixed;
}
.cid-sjf5e91H2e .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-sjf5e91H2e .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sjf5e91H2e .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sjf5e91H2e .dropdown-item:hover,
.cid-sjf5e91H2e .dropdown-item:focus {
  background: #251241 !important;
  color: white !important;
}
.cid-sjf5e91H2e .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sjf5e91H2e .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sjf5e91H2e .nav-dropdown {
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-sjf5e91H2e .nav-dropdown {
    padding: 2rem 0rem;
  }
}
.cid-sjf5e91H2e .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 1rem !important;
}
.cid-sjf5e91H2e .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sjf5e91H2e .nav-link {
  position: relative;
}
.cid-sjf5e91H2e .container {
  display: flex;
  margin: auto;
}
.cid-sjf5e91H2e .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sjf5e91H2e .dropdown-menu,
.cid-sjf5e91H2e .navbar.opened {
  background: #251241 !important;
  min-height: 100%;
}
.cid-sjf5e91H2e .nav-item:focus,
.cid-sjf5e91H2e .nav-link:focus {
  outline: none;
}
.cid-sjf5e91H2e .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sjf5e91H2e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sjf5e91H2e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sjf5e91H2e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sjf5e91H2e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sjf5e91H2e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em .5em 0.235em 1.3em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sjf5e91H2e .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(37, 18, 65, 0.4);
}
.cid-sjf5e91H2e .navbar.opened {
  transition: all 0.3s;
}
.cid-sjf5e91H2e .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sjf5e91H2e .navbar .navbar-logo img {
  width: auto;
}
.cid-sjf5e91H2e .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sjf5e91H2e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sjf5e91H2e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sjf5e91H2e .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sjf5e91H2e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjf5e91H2e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjf5e91H2e .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-sjf5e91H2e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem .5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sjf5e91H2e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sjf5e91H2e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjf5e91H2e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjf5e91H2e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjf5e91H2e .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-sjf5e91H2e .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sjf5e91H2e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sjf5e91H2e .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem .5rem !important;
    text-align: center;
  }
  .cid-sjf5e91H2e .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sjf5e91H2e .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sjf5e91H2e .navbar.navbar-short {
  min-height: 60px;
}
.cid-sjf5e91H2e .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sjf5e91H2e .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sjf5e91H2e .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-sjf5e91H2e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjf5e91H2e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjf5e91H2e .dropdown-item.active,
.cid-sjf5e91H2e .dropdown-item:active {
  background-color: transparent;
}
.cid-sjf5e91H2e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjf5e91H2e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sjf5e91H2e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sjf5e91H2e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #251241;
}
.cid-sjf5e91H2e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sjf5e91H2e .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sjf5e91H2e ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sjf5e91H2e .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sjf5e91H2e button.navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #ffffff;
}
.cid-sjf5e91H2e button.navbar-toggler[aria-expanded="true"] .hamburger span {
  background: #ffffff;
}
.cid-sjf5e91H2e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sjf5e91H2e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
}
.cid-sjf5e91H2e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sjf5e91H2e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjf5e91H2e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjf5e91H2e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sjf5e91H2e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjf5e91H2e nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sjf5e91H2e nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sjf5e91H2e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjf5e91H2e .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sjf5e91H2e a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sjf5e91H2e .navbar {
    height: 70px;
  }
  .cid-sjf5e91H2e .navbar.opened {
    height: auto;
  }
  .cid-sjf5e91H2e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjf4SAeXk4 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #160f60;
}
.cid-sjf4SAeXk4 .container-fluid {
  max-width: 100%;
  padding: 0;
}
.cid-sjf4SAeXk4 MARQUEE {
  color: #ffffff;
}
.cid-sJg2FqzRHo {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sJg2FqzRHo img {
  width: 65%;
  pointer-events: all;
}
.cid-sJg2FqzRHo .row {
  justify-content: center;
}
.cid-sJg2FqzRHo .img1 {
  position: absolute;
  left: -8rem;
  top: 5rem;
  z-index: 4;
  width: 100%;
  pointer-events: none;
}
.cid-sJg2FqzRHo .img2 {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  pointer-events: none;
}
.cid-sJg2FqzRHo .img3 {
  position: absolute;
  top: 12rem;
  right: -8rem;
  width: 100%;
  pointer-events: none;
}
.cid-sJg2FqzRHo .item {
  height: 600px;
  margin: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sJg2FqzRHo .img1 {
    left: -2rem;
    top: 5rem;
  }
  .cid-sJg2FqzRHo .img2 {
    top: 0rem;
    left: 0rem;
  }
  .cid-sJg2FqzRHo .img3 {
    top: 8rem;
    right: -2rem;
  }
  .cid-sJg2FqzRHo .item {
    height: 300px;
  }
}
.cid-sJh9BHAe0V {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-sJh9BHAe0V .container {
  max-width: 1200px;
}
.cid-sJh9BHAe0V a {
  position: relative;
  font-weight: bold;
  background: none!important;
}
.cid-sJh9BHAe0V a:before {
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sJh9BHAe0V a:hover:before {
  width: 0;
  right: 0;
  left: auto;
}
.cid-sJh9BHAe0V .mbr-section-subtitle {
  text-align: center;
  color: #251241;
}
.cid-sJh9BHAe0V .mbr-section-title {
  text-align: center;
  color: #251241;
}
.cid-sJh7IyzQ6Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sJh7IyzQ6Z .container {
  max-width: 1400px;
}
.cid-sJh7IyzQ6Z img,
.cid-sJh7IyzQ6Z .item-img {
  width: 100%;
  position: relative;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-sJh7IyzQ6Z img:before,
.cid-sJh7IyzQ6Z .item-img:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sJh7IyzQ6Z img:hover:before,
.cid-sJh7IyzQ6Z .item-img:hover:before {
  opacity: 0.2;
}
.cid-sJh7IyzQ6Z .item:focus,
.cid-sJh7IyzQ6Z span:focus {
  outline: none;
}
.cid-sJh7IyzQ6Z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sJh7IyzQ6Z .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sJh7IyzQ6Z .item-content {
  padding-top: 1.5rem;
}
.cid-sJh7IyzQ6Z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sJh7IyzQ6Z .mbr-section-title {
  color: #232323;
}
.cid-sJh7IyzQ6Z .mbr-text,
.cid-sJh7IyzQ6Z .mbr-section-btn {
  color: #818181;
}
.cid-sJxtjMKsqu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #160f60;
}
.cid-sJxtjMKsqu .container-fluid {
  max-width: 100%;
  padding: 0;
}
.cid-sJxtjMKsqu MARQUEE {
  color: #ffffff;
}
.cid-sJrR1edwqR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sJrR1edwqR .link-wrapper {
  width: 100%;
}
.cid-sJrR1edwqR .container-fluid {
  max-width: 100%!important;
}
.cid-sJrR1edwqR .col {
  padding: 0;
  margin: auto;
}
.cid-sJrR1edwqR .img-big {
  height: 500px;
}
.cid-sJrR1edwqR .img-big img {
  object-fit: cover;
  height: 100%;
}
.cid-sJrR1edwqR .item-img {
  position: relative;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  height: 250px;
}
.cid-sJrR1edwqR .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-sJrR1edwqR .card-date {
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  width: fit-content;
  color: #ffffff;
  line-height: 2;
  padding: 4px 12px;
  text-align: center;
}
.cid-sJrR1edwqR .card-date:before {
  top: 50%;
  content: '';
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 1px ;
  background: #efefef;
}
.cid-sJrR1edwqR .card-type {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000000;
  width: fit-content;
  color: #ffffff;
  margin: 0;
  padding: 4px 12px;
}
.cid-sJrR1edwqR .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sJrR1edwqR .row {
    justify-content: flex-start;
  }
}
.cid-sJrR1edwqR .card {
  border-left: 1px solid #000000;
  border-radius: 0;
  padding: 0 3rem;
}
@media (max-width: 1750px) {
  .cid-sJrR1edwqR .card {
    padding: 0 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sJrR1edwqR .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
@media (max-width: 767px) {
  .cid-sJrR1edwqR .img-col {
    padding: 0rem;
  }
}
.cid-sJrR1edwqR .first {
  border: 0;
}
.cid-sJrR1edwqR .card-text {
  color: #818181;
}
.cid-sJrR1edwqR .card-text a {
  position: relative;
  background: none!important;
}
.cid-sJrR1edwqR .card-text a:before {
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sJrR1edwqR .card-text a:hover:before {
  width: 0;
  right: 0;
  left: auto;
}
.cid-sJrR1edwqR .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sJrR1edwqR .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sJrR1edwqR .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sJrR1edwqR .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sJrR1edwqR .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sJrR1edwqR .card-title,
.cid-sJrR1edwqR .iconfont-wrapper {
  color: #000000;
}
.cid-sJrR1edwqR .link,
.cid-sJrR1edwqR .link-wrapper {
  color: #000000;
}
.cid-sJxtdPBCv0 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #160f60;
}
.cid-sJxtdPBCv0 .container-fluid {
  max-width: 100%;
  padding: 0;
}
.cid-sJxtdPBCv0 MARQUEE {
  color: #ffffff;
}
.cid-sJs65RCb53 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/cleaningdry-1-1500x695.jpg");
}
.cid-sJs65RCb53 .mbr-media {
  position: relative;
}
.cid-sJs65RCb53 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sJs65RCb53 .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-sJs65RCb53 .box {
    min-height: 300px;
  }
}
.cid-sJs65RCb53 .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sJs65RCb53 .icon-wrap a {
  height: 20px;
}
.cid-sJs65RCb53 .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #ffffff;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-sJs65RCb53 .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #5e71db;
}
.cid-sJs65RCb53 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sJs65RCb53 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sJs65RCb53 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sJs65RCb53 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sJs65RCb53 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sJs65RCb53 .mbr-section-title {
  color: #ffffff;
}
.cid-sJxtfcOvsx {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #160f60;
}
.cid-sJxtfcOvsx .container-fluid {
  max-width: 100%;
  padding: 0;
}
.cid-sJxtfcOvsx MARQUEE {
  color: #ffffff;
}
.cid-sJxrrhPIrd {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #6ec7f2;
}
.cid-sJxrrhPIrd .mbr-section-subtitle {
  font-weight: 400;
}
.cid-sJxrrhPIrd .mbr-section-title {
  padding-bottom: 2rem;
}
.cid-sJxrrhPIrd .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sJxrrhPIrd .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-sJxrrhPIrd .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-sJxrrhPIrd .form-control {
  min-height: 2.7em;
  padding: 0 1.8rem;
  font-size: 18px;
  background-color: white;
  width: 100%;
}
@media (max-width: 350px) {
  .cid-sJxrrhPIrd .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sJxrrhPIrd .form-control {
    margin-bottom: 10px;
  }
  .cid-sJxrrhPIrd .form-group {
    max-width: 300px;
  }
  .cid-sJxrrhPIrd .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-sJxrrhPIrd .form-group,
.cid-sJxrrhPIrd .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-sJxrrhPIrd .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-sJxrrhPIrd .col + .input-group-btn .btn,
  .cid-sJxrrhPIrd .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-sJxrrhPIrd .dragArea > *:nth-last-child(2).col,
  .cid-sJxrrhPIrd .dragArea > *:nth-last-child(2).col-auto,
  .cid-sJxrrhPIrd .col + .input-group-btn,
  .cid-sJxrrhPIrd .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-sJxrrhPIrd .dragArea > *:nth-last-child(2).col input,
  .cid-sJxrrhPIrd .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-sJxrrhPIrd .mbr-section-subtitle,
.cid-sJxrrhPIrd .mbr-section-btn {
  color: #251241;
}
.cid-sjf5kGhEkX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #9fdbf8;
}
.cid-sjf5kGhEkX .row {
  flex-direction: row-reverse;
}
.cid-sjf5kGhEkX .container {
  max-width: 1750px;
}
.cid-sjf5kGhEkX .card-wrapper {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.cid-sjf5kGhEkX img {
  width: 150px;
  display: inline-block;
}
.cid-sjf5kGhEkX p {
  line-height: 1.8;
}
.cid-sjf5kGhEkX .mbr-text {
  color: #251241;
}
.cid-sJy0rCJnog {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sJy0rCJnog p {
  text-align: center;
}
.cid-sJy0rCJnog .mbr-iconfont-social {
  font-size: 1rem;
  color: #000000;
}
.cid-sJy0rCJnog .social-list a:focus {
  text-decoration: none;
}
.cid-sJy0rCJnog .text-copyright {
  width: 100%;
}
.cid-sJy0rCJnog .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sJy0rCJnog .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sJy0rCJnog .logo-footer {
  line-height: normal;
}
.cid-sJy0rCJnog .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sJy0rCJnog .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sJy0rCJnog .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sJy0rCJnog img {
  display: inline;
}
.cid-sJs86HqNzo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sJs86HqNzo .container {
  max-width: 1400px;
}
.cid-sJs86HqNzo .mbr-text {
  color: #bbbbbb;
}
