body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10rem;
}
.display-1 > .mbr-iconfont {
  font-size: 16rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 6.4rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.76rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 6rem;
  }
}
@media (max-width: 767px) {
  .display-1 {
    font-size: 2.5rem !important;
  }
}
@media (max-width: 992px) {
  .display-4:not(.nav-link) {
    font-size: 0.66rem;
  }
}
@media (max-width: 992px) {
  .display-5 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 8rem;
    font-size: calc( 4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((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))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #002ef3 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #002ef3 !important;
  border-color: #002ef3 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0020a6 !important;
  border-color: #0020a6 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0020a6 !important;
  border-color: #0020a6 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #07ff36 !important;
  border-color: #07ff36 !important;
  color: #000701 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #000701 !important;
  background-color: #00b923 !important;
  border-color: #00b923 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000701 !important;
  background-color: #00b923 !important;
  border-color: #00b923 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !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: #001b8d;
  color: #001b8d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #002ef3;
  border-color: #002ef3;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #002ef3 !important;
  border-color: #002ef3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #00a01e;
  color: #00a01e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000701;
  background-color: #07ff36;
  border-color: #07ff36;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #000701 !important;
  background-color: #07ff36 !important;
  border-color: #07ff36 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #4d4d4d;
  color: #4d4d4d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !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: #002ef3 !important;
}
.text-secondary {
  color: #07ff36 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #808080 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5a79ff !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #6dff89 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fbf7ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #002ef3;
  border-color: #002ef3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #002ef3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c0ccff;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #002ef3;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #002ef3;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #002ef3;
  border-bottom-color: #002ef3;
}
.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: #002ef3 !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: #07ff36 !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='%23002ef3' %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-sbcfneMYKZ {
  background: #000000;
  padding-top: 30px;
  padding-bottom: 45px;
  background: linear-gradient(0deg, #000bf3, #000000);
}
.cid-sbcfneMYKZ .image-block {
  margin: auto;
}
.cid-sbcfneMYKZ figcaption {
  position: relative;
}
.cid-sbcfneMYKZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sbcfneMYKZ .image-block {
    width: 65% !important;
  }
}
.cid-sbcid3vnei {
  padding-top: 30px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/fondoportada-1-1280x720.jpg");
}
.cid-sbcid3vnei .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.cid-sbcid3vnei .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sbcid3vnei .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0 rem;
}
.cid-sbcid3vnei .card-title,
.cid-sbcid3vnei .card-img {
  text-align: center;
}
.cid-sbaKMynofX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sbaKMynofX .container {
  max-width: 1500px;
}
.cid-sbaKMynofX .row {
  background: #ffffff;
}
.cid-sbaKMynofX .img-col {
  padding: 0;
}
.cid-sbaKMynofX .title-col {
  padding: 4rem 8rem;
}
.cid-sbaKMynofX img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sbaKMynofX h2 {
  padding: 0;
  margin: 0;
}
.cid-sbaKMynofX .text-wrap {
  margin: auto;
}
.cid-sbaKMynofX .mbr-text {
  color: #000000;
}
@media (max-width: 1200px) {
  .cid-sbaKMynofX .row {
    margin: 2rem;
  }
  .cid-sbaKMynofX .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sbaKMynofX .row {
    margin: 0rem;
  }
  .cid-sbaKMynofX .title-col {
    padding: 2rem 1rem;
  }
}
.cid-sbaKMynofX H2 {
  color: #000000;
}
.cid-slJiMWP4Pz {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-slJiMWP4Pz h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-slJiMWP4Pz h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-slJiMWP4Pz .box {
  background-image: url("../../../assets/images/pantalla-completa-27-12-23-21-56-550x310.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-slJiMWP4Pz .icon-wrap {
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: auto;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-slJiMWP4Pz .icon-wrap:hover {
  border: 4px solid #ffffff;
}
.cid-slJiMWP4Pz .icon-wrap:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-slJiMWP4Pz .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-slJiMWP4Pz .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-slJiMWP4Pz .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-slJiMWP4Pz .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-slJiMWP4Pz .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-slJiMWP4Pz a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-slJiMWP4Pz a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-slJiMWP4Pz .box {
    height: 250px;
  }
}
.cid-sbctSlpC6K {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sbctSlpC6K .image-block {
  margin: auto;
}
.cid-sbctSlpC6K figcaption {
  position: relative;
}
.cid-sbctSlpC6K figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sbctSlpC6K .image-block {
    width: 80% !important;
  }
}
.cid-sbb0pW1SNP {
  display: flex;
  background-color: #ffffff;
}
.cid-sbb0pW1SNP .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #adcde9);
}
.cid-sbb0pW1SNP .mbr-section-title {
  margin: 0;
}
.cid-sbb0pW1SNP .mbr-text {
  color: #efefef;
}
.cid-sbb0pW1SNP .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sbb0pW1SNP .card-img {
  text-align: left;
}
.cid-sbb0pW1SNP .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sbb0pW1SNP .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sbb0pW1SNP .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sbb0pW1SNP .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sbb0pW1SNP .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sbb0pW1SNP .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sbb0pW1SNP .title-cont,
.cid-sbb0pW1SNP .mbr-section-title {
  color: #000bf3;
  text-align: center;
}
.cid-sbb0pW1SNP .mbr-section-subtitle,
.cid-sbb0pW1SNP .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sbb0pW1SNP .card-title,
.cid-sbb0pW1SNP .card-img {
  color: #000000;
  text-align: center;
}
.cid-sbb0pW1SNP .card-box .mbr-text {
  color: #465052;
  text-align: center;
}
.cid-slIavb0Y7v {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-slIavb0Y7v .mbr-text {
  color: #767676;
}
.cid-slIavb0Y7v .card-subtitle {
  margin: 0;
}
.cid-slIavb0Y7v .link:hover {
  color: #002ef3 !important;
  text-decoration: none !important;
}
.cid-slIavb0Y7v .card {
  margin-bottom: 2rem;
}
.cid-slIavb0Y7v .card:hover .img-overlay {
  opacity: 0.15;
}
.cid-slIavb0Y7v .card:hover .card-img:before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-slIavb0Y7v .card:hover .card-img:after {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cid-slIavb0Y7v .card-img {
  height: 220px;
}
.cid-slIavb0Y7v img {
  object-fit: cover;
  height: 100%;
}
.cid-slIavb0Y7v h4 {
  margin: 0;
}
.cid-slIavb0Y7v .row {
  justify-content: center;
}
.cid-slIavb0Y7v .mbr-text,
.cid-slIavb0Y7v .link {
  color: #808080;
}
.cid-slIavb0Y7v h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-slIavb0Y7v h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-slIavb0Y7v .card-title,
.cid-slIavb0Y7v .card-img {
  color: #000000;
}
.cid-sb079c3CXE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sb079c3CXE .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sb079c3CXE .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sb079c3CXE .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sb079c3CXE .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sb079c3CXE .process-icon,
.cid-sb079c3CXE .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-sb079c3CXE .wrapper,
.cid-sb079c3CXE .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-sb079c3CXE .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #232323;
  opacity: .4;
}
.cid-sb079c3CXE .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-sb079c3CXE .icon-container a {
  display: inherit;
}
.cid-sb079c3CXE .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #000bf3 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-sb079c3CXE .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-sb079c3CXE .icon-main:hover .icon-wrapper {
  background-color: #000bf3 !important;
}
.cid-sb079c3CXE .icon-main:hover .icon-number {
  background-color: #232323 !important;
  color: #ffffff !important;
}
.cid-sb079c3CXE .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-sb079c3CXE .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-sb079c3CXE .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sb079c3CXE .third-elem .wrapper:before {
    display: none;
  }
}
.cid-sb079c3CXE .mbr-section-title {
  margin: 0;
}
.cid-sb079c3CXE .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-slJp4jditU {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-slJp4jditU .mbr-text {
  color: #c1c1c1;
}
.cid-slJp4jditU H3 {
  text-align: center;
  color: #ffffff;
}
.cid-slJp4jditU .mbr-text,
.cid-slJp4jditU .mbr-section-btn {
  text-align: center;
  color: #cccccc;
}
.cid-slJpiznVNQ {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-slJpiznVNQ .container {
    max-width: 1400px;
  }
}
.cid-slJpiznVNQ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #002ef3;
  margin-bottom: 2rem;
}
.cid-slJpiznVNQ .card-wrapper {
  margin-top: 3rem;
}
.cid-slJpiznVNQ .row {
  justify-content: center;
}
.cid-slJpiznVNQ .mbr-section-title {
  color: #233d63;
}
.cid-sb3vQQhEtv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/5360-700x467.jpg");
}
.cid-sb3vQQhEtv .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sb3vQQhEtv .carousel-item.active,
.cid-sb3vQQhEtv .carousel-item-next,
.cid-sb3vQQhEtv .carousel-item-prev {
  display: flex;
}
.cid-sb3vQQhEtv .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
  width: 20%;
}
.cid-sb3vQQhEtv .carousel-controls a span {
  position: absolute;
  top: 45%;
  font-size: 1.2rem;
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #cccccc;
  opacity: .9;
}
.cid-sb3vQQhEtv .carousel-controls a:hover span {
  opacity: 1;
}
.cid-sb3vQQhEtv .user_image {
  width: 100px;
  height: 100px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  margin: 1rem auto 1rem auto;
  display: flex;
}
.cid-sb3vQQhEtv .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sb3vQQhEtv .mbr-iconfont {
  font-size: 3rem;
  position: absolute;
  opacity: 0.3;
  color: #f4f8fa;
}
.cid-sb3vQQhEtv .mbr-iconfont.left-top {
  top: 0;
  left: 0;
}
.cid-sb3vQQhEtv .mbr-iconfont.right-bottom {
  bottom: 1rem;
  right: 0;
}
.cid-sb3vQQhEtv .user_text {
  position: relative;
}
@media (min-width: 768px) {
  .cid-sb3vQQhEtv .user_text p {
    padding: 1rem 4rem;
  }
}
@media (max-width: 230px) {
  .cid-sb3vQQhEtv .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sb0SDjNO8E {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sb0SDjNO8E .mbr-text {
    text-align: center;
  }
}
.cid-sb0SDjNO8E .container-fluid {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-sb0SDjNO8E .media-content {
    max-width: 700px;
    padding: 5rem 2rem;
    margin: auto;
    margin-right: 0;
  }
}
.cid-sb0SDjNO8E .media-content {
  padding: 5rem 2rem;
}
.cid-sb0SDjNO8E img {
  height: 100%;
  object-fit: cover;
}
.cid-sb0SDjNO8E .mbr-figure {
  height: 100%;
}
.cid-sb0SDjNO8E .col-lg-5,
.cid-sb0SDjNO8E .col-lg-7 {
  padding: 0;
}
.cid-sb0SDjNO8E .row {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sb0SDjNO8E .media-content {
    padding: 3rem 1rem;
  }
}
.cid-sbFyw9loUu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sbFyw9loUu .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  opacity: .5;
}
.cid-sbFyw9loUu .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sbFyw9loUu .links-block ul li {
  margin: 0 1rem;
}
.cid-sbFyw9loUu .icons-block ul li {
  margin: 0 .5rem;
}
.cid-sbFyw9loUu .links-block ul,
.cid-sbFyw9loUu .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sbrkZeRpbD {
  background: #000000;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-sbrkZeRpbD .image-block {
  margin: auto;
}
.cid-sbrkZeRpbD figcaption {
  position: relative;
}
.cid-sbrkZeRpbD figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sbrkZeRpbD .image-block {
    width: 65% !important;
  }
}
.cid-sbrl1LDdZx {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sbrl1LDdZx .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sbrl1LDdZx .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sbrl1LDdZx .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sbrl1LDdZx .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-sbrl1LDdZx .process-icon,
.cid-sbrl1LDdZx .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-sbrl1LDdZx .wrapper,
.cid-sbrl1LDdZx .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-sbrl1LDdZx .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #232323;
  opacity: .4;
}
.cid-sbrl1LDdZx .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-sbrl1LDdZx .icon-container a {
  display: inherit;
}
.cid-sbrl1LDdZx .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #000bf3 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-sbrl1LDdZx .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-sbrl1LDdZx .icon-main:hover .icon-wrapper {
  background-color: #000bf3 !important;
}
.cid-sbrl1LDdZx .icon-main:hover .icon-number {
  background-color: #232323 !important;
  color: #ffffff !important;
}
.cid-sbrl1LDdZx .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-sbrl1LDdZx .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-sbrl1LDdZx .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sbrl1LDdZx .third-elem .wrapper:before {
    display: none;
  }
}
.cid-sbrl1LDdZx .mbr-section-title {
  margin: 0;
}
.cid-sbrl1LDdZx .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-sbrtNYjKDF {
  display: flex;
  background-color: #ffffff;
}
.cid-sbrtNYjKDF .mbr-overlay {
  background: #1516b0;
  background: linear-gradient(90deg, #1516b0, #adcde9);
}
.cid-sbrtNYjKDF .mbr-section-title {
  margin: 0;
}
.cid-sbrtNYjKDF .mbr-text {
  color: #efefef;
}
.cid-sbrtNYjKDF .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sbrtNYjKDF .card-img {
  text-align: left;
}
.cid-sbrtNYjKDF .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sbrtNYjKDF .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sbrtNYjKDF .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sbrtNYjKDF .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sbrtNYjKDF .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sbrtNYjKDF .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sbrtNYjKDF .title-cont,
.cid-sbrtNYjKDF .mbr-section-title {
  color: #010445;
  text-align: center;
}
.cid-sbrtNYjKDF .mbr-section-subtitle,
.cid-sbrtNYjKDF .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sbrtNYjKDF .card-title,
.cid-sbrtNYjKDF .card-img {
  color: #000000;
  text-align: center;
}
.cid-sbrtNYjKDF .card-box .mbr-text {
  color: #465052;
  text-align: center;
}
.cid-sbrEnlP7Pb {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sbrEnlP7Pb .container-fluid {
  padding: 0 3rem;
}
.cid-sbrEnlP7Pb .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #002ef3 50%, #07ff36 120%);
  display: inline-block;
}
.cid-sbrEnlP7Pb .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-sbrEnlP7Pb .header-text {
  padding: 2rem 1rem !important;
}
.cid-sbrEnlP7Pb .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-sbrEnlP7Pb .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-sbrEnlP7Pb .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-sbrEnlP7Pb .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sbrEnlP7Pb .card .card-header a.panel-title:hover .sign {
  background-color: #000bf3 !important;
}
.cid-sbrEnlP7Pb .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #4a52f7;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-sbrEnlP7Pb .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-sbrEnlP7Pb .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-sbrEnlP7Pb .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-sbrEnlP7Pb .container-fluid {
    padding: 0 1rem;
  }
  .cid-sbrEnlP7Pb .header-text {
    padding: 1rem !important;
  }
  .cid-sbrEnlP7Pb .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-sbrEnlP7Pb .panel-body {
    width: calc(100% - 48px);
  }
  .cid-sbrEnlP7Pb .panel-group {
    padding: 0;
  }
}
.cid-sbrEnlP7Pb .header-text,
.cid-sbrEnlP7Pb .sign {
  color: #232323;
}
.cid-sbFwjn6YK3 {
  padding-top: 180px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sbFwjn6YK3 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.5;
}
.cid-sbFwjn6YK3 .container {
  max-width: 1400px;
  padding: 0 3rem;
}
.cid-sbFwjn6YK3 textarea {
  min-height: 150px;
}
.cid-sbFwjn6YK3 .row2 {
  justify-content: space-between;
  border: 2px solid #c1c1c1;
  padding: 3rem;
}
.cid-sbFwjn6YK3 h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sbFwjn6YK3 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sbFwjn6YK3 form .btn {
  border-radius: 30px;
  margin: 0.18rem;
}
.cid-sbFwjn6YK3 .form-control,
.cid-sbFwjn6YK3 .field-input {
  padding: 1rem;
  background-color: transparent;
  border: 2px solid #c1c1c1;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sbFwjn6YK3 .form-control::-webkit-input-placeholder,
.cid-sbFwjn6YK3 .field-input::-webkit-input-placeholder,
.cid-sbFwjn6YK3 .form-control::-webkit-input-placeholder,
.cid-sbFwjn6YK3 .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-sbFwjn6YK3 .form-control:-moz-placeholder,
.cid-sbFwjn6YK3 .field-input:-moz-placeholder,
.cid-sbFwjn6YK3 .form-control:-moz-placeholder,
.cid-sbFwjn6YK3 .field-input:-moz-placeholder {
  color: #000000;
}
.cid-sbFwjn6YK3 .form-control:hover,
.cid-sbFwjn6YK3 .field-input:hover,
.cid-sbFwjn6YK3 .form-control:focus,
.cid-sbFwjn6YK3 .field-input:focus {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sbFwjn6YK3 .form-control:hover::-webkit-input-placeholder,
.cid-sbFwjn6YK3 .field-input:hover::-webkit-input-placeholder,
.cid-sbFwjn6YK3 .form-control:focus::-webkit-input-placeholder,
.cid-sbFwjn6YK3 .field-input:focus::-webkit-input-placeholder,
.cid-sbFwjn6YK3 .form-control:hover::-webkit-input-placeholder,
.cid-sbFwjn6YK3 .field-input:hover::-webkit-input-placeholder,
.cid-sbFwjn6YK3 .form-control:focus::-webkit-input-placeholder,
.cid-sbFwjn6YK3 .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-sbFwjn6YK3 .form-control:hover:-moz-placeholder,
.cid-sbFwjn6YK3 .field-input:hover:-moz-placeholder,
.cid-sbFwjn6YK3 .form-control:focus:-moz-placeholder,
.cid-sbFwjn6YK3 .field-input:focus:-moz-placeholder,
.cid-sbFwjn6YK3 .form-control:hover:-moz-placeholder,
.cid-sbFwjn6YK3 .field-input:hover:-moz-placeholder,
.cid-sbFwjn6YK3 .form-control:focus:-moz-placeholder,
.cid-sbFwjn6YK3 .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-sbFwjn6YK3 .jq-number__spin:hover,
.cid-sbFwjn6YK3 .jq-number__spin:focus {
  background-color: transparent;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sbFwjn6YK3 .jq-number__spin {
  background-color: transparent;
  border-color: #c1c1c1;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sbFwjn6YK3 input::-webkit-clear-button {
  display: none;
}
.cid-sbFwjn6YK3 input::-webkit-inner-spin-button {
  display: none;
}
.cid-sbFwjn6YK3 input::-webkit-outer-spin-button {
  display: none;
}
.cid-sbFwjn6YK3 input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 767px) {
  .cid-sbFwjn6YK3 .container {
    padding: 0 2rem;
  }
  .cid-sbFwjn6YK3 .row2 {
    padding: 1rem 0;
  }
}
.cid-sbFwjn6YK3 H2 {
  color: #000000;
}
.cid-sbFwjn6YK3 .mbr-text,
.cid-sbFwjn6YK3 .mbr-section-btn {
  color: #000000;
}
