body {
  font-family: Jost;
}
.display-1 {
  font-family: 'MuseoModerno', display;
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'MuseoModerno', display;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'MuseoModerno', display;
  font-size: 1.6rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.08rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #33358c !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #72dfe9 !important;
}
.bg-warning {
  background-color: #a8aaf1 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #33358c !important;
  border-color: #33358c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #1f2054 !important;
  border-color: #1f2054 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1f2054 !important;
  border-color: #1f2054 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff9083 !important;
  border-color: #ff9083 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff4c36 !important;
  border-color: #ff4c36 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff4c36 !important;
  border-color: #ff4c36 !important;
}
.btn-info,
.btn-info:active {
  background-color: #72dfe9 !important;
  border-color: #72dfe9 !important;
  color: #0c4a50 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #0c4a50 !important;
  background-color: #30d0df !important;
  border-color: #30d0df !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #0c4a50 !important;
  background-color: #30d0df !important;
  border-color: #30d0df !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2d7b86 !important;
  border-color: #2d7b86 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2d7b86 !important;
  border-color: #2d7b86 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #a8aaf1 !important;
  border-color: #a8aaf1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #666ae6 !important;
  border-color: #666ae6 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #666ae6 !important;
  border-color: #666ae6 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff6619 !important;
  border-color: #ff6619 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff6619 !important;
  border-color: #ff6619 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #181941;
  color: #181941;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #33358c;
  border-color: #33358c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #33358c !important;
  border-color: #33358c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #ff351d;
  color: #ff351d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff9083;
  border-color: #ff9083;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9083 !important;
  border-color: #ff9083 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #21c5d4;
  color: #21c5d4;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0c4a50;
  background-color: #72dfe9;
  border-color: #72dfe9;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #0c4a50 !important;
  background-color: #72dfe9 !important;
  border-color: #72dfe9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #266a73;
  color: #266a73;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #40b0bf;
  border-color: #40b0bf;
}
.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: none;
  border-color: #5054e3;
  color: #5054e3;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #a8aaf1;
  border-color: #a8aaf1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #a8aaf1 !important;
  border-color: #a8aaf1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #ff5500;
  color: #ff5500;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ff9966;
  border-color: #ff9966;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #33358c !important;
}
.text-secondary {
  color: #ff9083 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #72dfe9 !important;
}
.text-warning {
  color: #a8aaf1 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #181941 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff351d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #21c5d4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #5054e3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #72dfe9;
}
.alert-warning {
  background-color: #a8aaf1;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #33358c;
  border-color: #33358c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #33358c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7375cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
  font-weight: 400;
}
blockquote {
  border-color: #33358c;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 6px 16px 0 #33358c !important;
  -webkit-box-shadow: 0 6px 16px 0 #33358c !important;
  background-color: #33358c !important;
  border-color: #33358c !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #ff9083 !important;
  -webkit-box-shadow: 0 6px 16px 0 #ff9083 !important;
  background-color: #ff9083 !important;
  border-color: #ff9083 !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #40b0bf !important;
  -webkit-box-shadow: 0 6px 16px 0 #40b0bf !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #33358c;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #33358c;
  border-bottom-color: #33358c;
}
.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: #33358c !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: #ff9083 !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%;
}
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='%2333358c' %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;
}
.cid-syrxCLR5ZO {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #716c80;
}
.cid-syrxCLR5ZO img {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-syrxCLR5ZO .mbr-text,
.cid-syrxCLR5ZO .mbr-section-btn {
  color: #57468b;
}
.cid-syrxCLR5ZO H3 {
  color: #57468b;
}
.cid-syrxCLR5ZO H1 {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-syrxCLR5ZO img {
    width: 100%!important;
  }
}
.cid-s5yY0qI2Sb {
  padding-top: 13rem;
  padding-bottom: 8rem;
  background-color: #f8f8f8;
}
.cid-s5yY0qI2Sb .mbr-section-subtitle {
  color: #33358c;
}
.cid-s5yY0qI2Sb .mbr-text,
.cid-s5yY0qI2Sb .mbr-section-btn {
  color: #616161;
}
.cid-s5yY0qI2Sb .row {
  justify-content: space-between;
}
.cid-s5yY0qI2Sb img {
  border-radius: 8px;
}
.cid-s5yYCuVnr9 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s5yYCuVnr9 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s5yYCuVnr9 .btn {
  border-radius: 100px!important;
  padding: 0.7rem 2.2rem;
  position: relative;
  z-index: 2;
}
.cid-s5yYCuVnr9 .btn:before {
  content: none;
}
.cid-s5yYCuVnr9 .col-auto {
  position: relative;
  margin-top: 2rem;
  padding: 0;
  min-height: 30px;
}
.cid-s5yYCuVnr9 .col-auto:before {
  content: '';
  border-radius: 30px;
  transform: translate(6px, 6px);
  position: absolute;
  top: 0;
  z-index: 1;
  transition: all 0.3s;
  left: 0;
  background: #ff9083;
  width: 100%;
  height: 100%;
}
.cid-s5yYCuVnr9 .col-auto:hover:before {
  transform: translate(0px, 0px);
}
@media (max-width: 767px) {
  .cid-s5yYCuVnr9 .col-auto:before {
    transform: translate(0px, 0px);
  }
}
.cid-s5yYCuVnr9 .wrapper {
  border: 2px solid #f8f8f8;
  border-radius: 30px;
  padding: 3rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-s5yYCuVnr9 .wrapper {
    padding: 1rem;
    padding-bottom: 3rem;
  }
}
.cid-s5yYCuVnr9 h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.cid-s5yYCuVnr9 .form-control,
.cid-s5yYCuVnr9 .field-input {
  padding: 1rem 1.5rem!important;
  border-radius: 30px;
}
.cid-s5yYCuVnr9 textarea {
  min-height: 200px;
}
.cid-s5yYCuVnr9 .form-control,
.cid-s5yYCuVnr9 .field-input {
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s5yYCuVnr9 .form-control::-webkit-input-placeholder,
.cid-s5yYCuVnr9 .field-input::-webkit-input-placeholder,
.cid-s5yYCuVnr9 .form-control::-webkit-input-placeholder,
.cid-s5yYCuVnr9 .field-input::-webkit-input-placeholder {
  color: #777d74;
}
.cid-s5yYCuVnr9 .form-control:-moz-placeholder,
.cid-s5yYCuVnr9 .field-input:-moz-placeholder,
.cid-s5yYCuVnr9 .form-control:-moz-placeholder,
.cid-s5yYCuVnr9 .field-input:-moz-placeholder {
  color: #777d74;
}
.cid-s5yYCuVnr9 .form-control:hover,
.cid-s5yYCuVnr9 .field-input:hover,
.cid-s5yYCuVnr9 .form-control:focus,
.cid-s5yYCuVnr9 .field-input:focus {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-s5yYCuVnr9 .form-control:hover::-webkit-input-placeholder,
.cid-s5yYCuVnr9 .field-input:hover::-webkit-input-placeholder,
.cid-s5yYCuVnr9 .form-control:focus::-webkit-input-placeholder,
.cid-s5yYCuVnr9 .field-input:focus::-webkit-input-placeholder,
.cid-s5yYCuVnr9 .form-control:hover::-webkit-input-placeholder,
.cid-s5yYCuVnr9 .field-input:hover::-webkit-input-placeholder,
.cid-s5yYCuVnr9 .form-control:focus::-webkit-input-placeholder,
.cid-s5yYCuVnr9 .field-input:focus::-webkit-input-placeholder {
  color: #777d74;
}
.cid-s5yYCuVnr9 .form-control:hover:-moz-placeholder,
.cid-s5yYCuVnr9 .field-input:hover:-moz-placeholder,
.cid-s5yYCuVnr9 .form-control:focus:-moz-placeholder,
.cid-s5yYCuVnr9 .field-input:focus:-moz-placeholder,
.cid-s5yYCuVnr9 .form-control:hover:-moz-placeholder,
.cid-s5yYCuVnr9 .field-input:hover:-moz-placeholder,
.cid-s5yYCuVnr9 .form-control:focus:-moz-placeholder,
.cid-s5yYCuVnr9 .field-input:focus:-moz-placeholder {
  color: #777d74;
}
.cid-s5yYCuVnr9 .jq-number__spin:hover,
.cid-s5yYCuVnr9 .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s5yYCuVnr9 .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s5yYCuVnr9 .jq-selectbox li,
.cid-s5yYCuVnr9 .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-s5yYCuVnr9 .jq-selectbox li:hover,
.cid-s5yYCuVnr9 .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-s5yYCuVnr9 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s5yYCuVnr9 .jq-number__spin.minus:hover:after,
.cid-s5yYCuVnr9 .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-s5yYCuVnr9 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s5yYCuVnr9 .jq-number__spin.minus:after,
.cid-s5yYCuVnr9 .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-s5yYCuVnr9 input::-webkit-clear-button {
  display: none;
}
.cid-s5yYCuVnr9 input::-webkit-inner-spin-button {
  display: none;
}
.cid-s5yYCuVnr9 input::-webkit-outer-spin-button {
  display: none;
}
.cid-s5yYCuVnr9 input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 767px) {
  .cid-s5yYCuVnr9 .col-auto {
    margin: auto;
    margin-top: 2rem;
  }
}
.cid-s5yYzYeNiJ {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #1c1c25;
  z-index: 0;
}
.cid-s5yYzYeNiJ .card-wrapper {
  display: flex;
  overflow: visible;
}
.cid-s5yYzYeNiJ img {
  width: 60px;
  display: inline-block;
  margin-bottom: 1rem;
}
.cid-s5yYzYeNiJ .icon1 {
  background: #a8aaf1;
}
.cid-s5yYzYeNiJ .icon2 {
  background: #ff9083;
}
.cid-s5yYzYeNiJ .icon3 {
  background: #72dfe9;
}
.cid-s5yYzYeNiJ .card-box {
  padding-left: 1rem;
}
.cid-s5yYzYeNiJ .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #ffffff inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-s5yYzYeNiJ .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-s5yYzYeNiJ .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-s5yYzYeNiJ .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-s5yYzYeNiJ .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s5yYzYeNiJ .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-s5yYzYeNiJ .card-title {
  transition: all 0.3s;
}
@media (max-width: 992px) {
  .cid-s5yYzYeNiJ .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-s5yYzYeNiJ .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-s5yYzYeNiJ .card-text {
  color: #ffffff;
}
.cid-s5yYzYeNiJ .title {
  color: #ffffff;
}
.cid-s5yYGmH8Ea {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1c1c25;
}
.cid-s5yYGmH8Ea .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s5yYGmH8Ea .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s5yYGmH8Ea .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s5yYGmH8Ea .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-s5yYGmH8Ea .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-s5yYGmH8Ea .media-container-row .foot-menu li:hover {
  color: #ff9083;
}
.cid-s5yYGmH8Ea .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s5yYGmH8Ea .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s5yYGmH8Ea .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s5yYGmH8Ea .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s5yYGmH8Ea .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s5yYGmH8Ea .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s5yYGmH8Ea .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s5yYGmH8Ea .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s5yYGmH8Ea .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-s5yYGmH8Ea .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-s5yYGmH8Ea .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-tfnGk9LHjB {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #716c80;
}
.cid-tfnGk9LHjB img {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-tfnGk9LHjB .mbr-text,
.cid-tfnGk9LHjB .mbr-section-btn {
  color: #57468b;
}
.cid-tfnGk9LHjB H3 {
  color: #57468b;
}
.cid-tfnGk9LHjB H1 {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tfnGk9LHjB img {
    width: 100%!important;
  }
}
.cid-tfnHZiFgUd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tfnHZiFgUd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tfnHZiFgUd .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-tfnHZiFgUd .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-tfnHZiFgUd .btn-primary-outline:active {
  color: gray;
}
.cid-tfnHZiFgUd .btn-primary-outline:hover {
  color: white;
}
.cid-tfnHZiFgUd .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-tfnHZiFgUd div {
  overflow: hidden;
}
.cid-tfnHZiFgUd li.active .btn-primary-outline {
  color: white;
}
.cid-tfnHZiFgUd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfnHZiFgUd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfnHZiFgUd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tfnHZiFgUd .mbr-gallery-item {
  overflow: hidden;
}
.cid-tfnHZiFgUd .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-tfnHZiFgUd .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-tfnHZiFgUd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tfnHZiFgUd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tfnHZiFgUd .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-tfnHZiFgUd .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tfnHZiFgUd .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tfnGkaMa9k {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tfnGkaMa9k .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tfnGkaMa9k .btn {
  border-radius: 100px!important;
  padding: 0.7rem 2.2rem;
  position: relative;
  z-index: 2;
}
.cid-tfnGkaMa9k .btn:before {
  content: none;
}
.cid-tfnGkaMa9k .col-auto {
  position: relative;
  margin-top: 2rem;
  padding: 0;
  min-height: 30px;
}
.cid-tfnGkaMa9k .col-auto:before {
  content: '';
  border-radius: 30px;
  transform: translate(6px, 6px);
  position: absolute;
  top: 0;
  z-index: 1;
  transition: all 0.3s;
  left: 0;
  background: #ff9083;
  width: 100%;
  height: 100%;
}
.cid-tfnGkaMa9k .col-auto:hover:before {
  transform: translate(0px, 0px);
}
@media (max-width: 767px) {
  .cid-tfnGkaMa9k .col-auto:before {
    transform: translate(0px, 0px);
  }
}
.cid-tfnGkaMa9k .wrapper {
  border: 2px solid #f8f8f8;
  border-radius: 30px;
  padding: 3rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-tfnGkaMa9k .wrapper {
    padding: 1rem;
    padding-bottom: 3rem;
  }
}
.cid-tfnGkaMa9k h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.cid-tfnGkaMa9k .form-control,
.cid-tfnGkaMa9k .field-input {
  padding: 1rem 1.5rem!important;
  border-radius: 30px;
}
.cid-tfnGkaMa9k textarea {
  min-height: 200px;
}
.cid-tfnGkaMa9k .form-control,
.cid-tfnGkaMa9k .field-input {
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tfnGkaMa9k .form-control::-webkit-input-placeholder,
.cid-tfnGkaMa9k .field-input::-webkit-input-placeholder,
.cid-tfnGkaMa9k .form-control::-webkit-input-placeholder,
.cid-tfnGkaMa9k .field-input::-webkit-input-placeholder {
  color: #777d74;
}
.cid-tfnGkaMa9k .form-control:-moz-placeholder,
.cid-tfnGkaMa9k .field-input:-moz-placeholder,
.cid-tfnGkaMa9k .form-control:-moz-placeholder,
.cid-tfnGkaMa9k .field-input:-moz-placeholder {
  color: #777d74;
}
.cid-tfnGkaMa9k .form-control:hover,
.cid-tfnGkaMa9k .field-input:hover,
.cid-tfnGkaMa9k .form-control:focus,
.cid-tfnGkaMa9k .field-input:focus {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tfnGkaMa9k .form-control:hover::-webkit-input-placeholder,
.cid-tfnGkaMa9k .field-input:hover::-webkit-input-placeholder,
.cid-tfnGkaMa9k .form-control:focus::-webkit-input-placeholder,
.cid-tfnGkaMa9k .field-input:focus::-webkit-input-placeholder,
.cid-tfnGkaMa9k .form-control:hover::-webkit-input-placeholder,
.cid-tfnGkaMa9k .field-input:hover::-webkit-input-placeholder,
.cid-tfnGkaMa9k .form-control:focus::-webkit-input-placeholder,
.cid-tfnGkaMa9k .field-input:focus::-webkit-input-placeholder {
  color: #777d74;
}
.cid-tfnGkaMa9k .form-control:hover:-moz-placeholder,
.cid-tfnGkaMa9k .field-input:hover:-moz-placeholder,
.cid-tfnGkaMa9k .form-control:focus:-moz-placeholder,
.cid-tfnGkaMa9k .field-input:focus:-moz-placeholder,
.cid-tfnGkaMa9k .form-control:hover:-moz-placeholder,
.cid-tfnGkaMa9k .field-input:hover:-moz-placeholder,
.cid-tfnGkaMa9k .form-control:focus:-moz-placeholder,
.cid-tfnGkaMa9k .field-input:focus:-moz-placeholder {
  color: #777d74;
}
.cid-tfnGkaMa9k .jq-number__spin:hover,
.cid-tfnGkaMa9k .jq-number__spin:focus {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tfnGkaMa9k .jq-number__spin {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tfnGkaMa9k .jq-selectbox li,
.cid-tfnGkaMa9k .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-tfnGkaMa9k .jq-selectbox li:hover,
.cid-tfnGkaMa9k .jq-selectbox li.selected {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-tfnGkaMa9k .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tfnGkaMa9k .jq-number__spin.minus:hover:after,
.cid-tfnGkaMa9k .jq-number__spin.plus:hover:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-tfnGkaMa9k .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tfnGkaMa9k .jq-number__spin.minus:after,
.cid-tfnGkaMa9k .jq-number__spin.plus:after {
  border-top-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
}
.cid-tfnGkaMa9k input::-webkit-clear-button {
  display: none;
}
.cid-tfnGkaMa9k input::-webkit-inner-spin-button {
  display: none;
}
.cid-tfnGkaMa9k input::-webkit-outer-spin-button {
  display: none;
}
.cid-tfnGkaMa9k input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 767px) {
  .cid-tfnGkaMa9k .col-auto {
    margin: auto;
    margin-top: 2rem;
  }
}
.cid-tfnGkb6IXP {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #1c1c25;
  z-index: 0;
}
.cid-tfnGkb6IXP .card-wrapper {
  display: flex;
  overflow: visible;
}
.cid-tfnGkb6IXP img {
  width: 60px;
  display: inline-block;
  margin-bottom: 1rem;
}
.cid-tfnGkb6IXP .icon1 {
  background: #a8aaf1;
}
.cid-tfnGkb6IXP .icon2 {
  background: #ff9083;
}
.cid-tfnGkb6IXP .icon3 {
  background: #72dfe9;
}
.cid-tfnGkb6IXP .card-box {
  padding-left: 1rem;
}
.cid-tfnGkb6IXP .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #ffffff inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-tfnGkb6IXP .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-tfnGkb6IXP .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-tfnGkb6IXP .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-tfnGkb6IXP .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tfnGkb6IXP .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-tfnGkb6IXP .card-title {
  transition: all 0.3s;
}
@media (max-width: 992px) {
  .cid-tfnGkb6IXP .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-tfnGkb6IXP .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-tfnGkb6IXP .card-text {
  color: #ffffff;
}
.cid-tfnGkb6IXP .title {
  color: #ffffff;
}
.cid-tfnGkbzVW0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1c1c25;
}
.cid-tfnGkbzVW0 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tfnGkbzVW0 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tfnGkbzVW0 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tfnGkbzVW0 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-tfnGkbzVW0 .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-tfnGkbzVW0 .media-container-row .foot-menu li:hover {
  color: #ff9083;
}
.cid-tfnGkbzVW0 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tfnGkbzVW0 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tfnGkbzVW0 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tfnGkbzVW0 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tfnGkbzVW0 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tfnGkbzVW0 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tfnGkbzVW0 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tfnGkbzVW0 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tfnGkbzVW0 .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tfnGkbzVW0 .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-tfnGkbzVW0 .media-container-row .mbr-text {
  color: #c8c8c8;
}
