body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.25rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.2rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.125rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.4rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.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: 768px) {
  .display-1 {
    font-size: 2.6rem;
    font-size: calc( 1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.7rem;
    font-size: calc( 1.3937499999999998rem + (2.125 - 1.3937499999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.3937499999999998rem + (2.125 - 1.3937499999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #133996 !important;
}
.bg-success {
  background-color: #48cbe6 !important;
}
.bg-info {
  background-color: #fdece8 !important;
}
.bg-warning {
  background-color: #ffcf5c !important;
}
.bg-danger {
  background-color: #939bb4 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #133996 !important;
  border-color: #133996 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0a1f52 !important;
  border-color: #0a1f52 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a1f52 !important;
  border-color: #0a1f52 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fc643f !important;
  border-color: #fc643f !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #eb3104 !important;
  border-color: #eb3104 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3104 !important;
  border-color: #eb3104 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fdece8 !important;
  border-color: #fdece8 !important;
  color: #d43712 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #d43712 !important;
  background-color: #f7b2a2 !important;
  border-color: #f7b2a2 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #d43712 !important;
  background-color: #f7b2a2 !important;
  border-color: #f7b2a2 !important;
}
.btn-success,
.btn-success:active {
  background-color: #48cbe6 !important;
  border-color: #48cbe6 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #1ba9c6 !important;
  border-color: #1ba9c6 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1ba9c6 !important;
  border-color: #1ba9c6 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffcf5c !important;
  border-color: #ffcf5c !important;
  color: #5c4100 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #5c4100 !important;
  background-color: #ffb810 !important;
  border-color: #ffb810 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #5c4100 !important;
  background-color: #ffb810 !important;
  border-color: #ffb810 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #939bb4 !important;
  border-color: #939bb4 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #677294 !important;
  border-color: #677294 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #677294 !important;
  border-color: #677294 !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: #133996;
  color: #133996;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #133996;
  border-color: #133996;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #133996 !important;
  border-color: #133996 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #fc643f;
  color: #fc643f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #fc643f;
  border-color: #fc643f;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fc643f !important;
  border-color: #fc643f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #fdece8;
  color: #fdece8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d43712;
  background-color: #fdece8;
  border-color: #fdece8;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #d43712 !important;
  background-color: #fdece8 !important;
  border-color: #fdece8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #48cbe6;
  color: #48cbe6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #48cbe6;
  border-color: #48cbe6;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #48cbe6 !important;
  border-color: #48cbe6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #ffcf5c;
  color: #ffcf5c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5c4100;
  background-color: #ffcf5c;
  border-color: #ffcf5c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5c4100 !important;
  background-color: #ffcf5c !important;
  border-color: #ffcf5c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #939bb4;
  color: #939bb4;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #939bb4;
  border-color: #939bb4;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #939bb4 !important;
  border-color: #939bb4 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.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: #133996 !important;
}
.text-secondary {
  color: #fc643f !important;
}
.text-success {
  color: #48cbe6 !important;
}
.text-info {
  color: #fdece8 !important;
}
.text-warning {
  color: #ffcf5c !important;
}
.text-danger {
  color: #939bb4 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #08173b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #d22c03 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1896b0 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #f59e8a !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5ad00 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #5c6685 !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: #fdece8;
}
.alert-warning {
  background-color: #ffcf5c;
}
.alert-danger {
  background-color: #939bb4;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 10px;
}
.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: #133996;
  border-color: #133996;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #133996;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4272e7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fbfeff;
}
.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: #dee1e8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.4rem;
  font-weight: 400;
}
blockquote {
  border-color: #133996;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #fc643f !important;
  border-color: #fc643f !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #fc643f !important;
  -webkit-box-shadow: 0 6px 16px 0 #fc643f !important;
  background-color: #fc643f !important;
  border-color: #fc643f !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 #48cbe6 !important;
  -webkit-box-shadow: 0 6px 16px 0 #48cbe6 !important;
  background-color: #48cbe6 !important;
  border-color: #48cbe6 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #133996;
  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: #133996;
  border-bottom-color: #133996;
}
.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: #133996 !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: #fc643f !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='%23133996' %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-sB1PAob9XA {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #fdece8;
}
.cid-sB1PAob9XA .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sB1PAob9XA .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sAAwsRw15z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fdece8;
}
.cid-sAAwsRw15z img,
.cid-sAAwsRw15z .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sAAwsRw15z .item:focus,
.cid-sAAwsRw15z span:focus {
  outline: none;
}
.cid-sAAwsRw15z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sAAwsRw15z .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sAAwsRw15z .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sAAwsRw15z .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sAAwsRw15z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sAAwsRw15z .mbr-section-title {
  color: #fc643f;
}
.cid-sAAwsRw15z .mbr-text,
.cid-sAAwsRw15z .mbr-section-btn {
  text-align: left;
}
.cid-sAAwsRw15z .item-title {
  text-align: left;
}
.cid-sAAwsRw15z .item-subtitle {
  text-align: left;
}
.cid-sAAwsRw15z .mbr-section-subtitle {
  color: #ff7708;
}
.cid-sAAwt0cQMo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fdece8;
}
.cid-sAAwt0cQMo .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sAAwt0cQMo .team-card:hover {
  transform: translateY(-10px);
}
.cid-sAAwt0cQMo .card-wrap {
  background: #fdece8;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sAAwt0cQMo .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sAAwt0cQMo .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sAAwt0cQMo .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sAAwt0cQMo .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sAAwt0cQMo .social-row {
  text-align: center;
}
.cid-sAAwt0cQMo .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sAAwt0cQMo .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sAAwt0cQMo .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sAAwt0cQMo .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sAAwHzuTMC {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fdece8;
}
.cid-sAAwHzuTMC .video-wrapper iframe {
  width: 100%;
}
.cid-sAAwHzuTMC .mbr-section-title,
.cid-sAAwHzuTMC .mbr-section-subtitle,
.cid-sAAwHzuTMC .mbr-text {
  text-align: center;
}
.cid-sAAwHzuTMC .mbr-section-title {
  color: #00c48c;
}
.cid-sAAwOsU57p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sAAwOsU57p .media-container-row .mbr-text {
  color: #5b686b;
}
.cid-uKEV7Qvtq3 {
  height: 0 !important;
}
.cid-uKEV7Qvtq3 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uKEV7Qvtq3 .nav-item:focus,
.cid-uKEV7Qvtq3 .nav-link:focus {
  outline: none;
}
.cid-uKEV7Qvtq3 .text-white:hover,
.cid-uKEV7Qvtq3 .text-white:active,
.cid-uKEV7Qvtq3 .text-white:focus {
  color: white!important;
}
.cid-uKEV7Qvtq3 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-uKEV7Qvtq3 .navbar.opened {
  transition: all .3s;
  background: #fe0939 !important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uKEV7Qvtq3 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEV7Qvtq3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKEV7Qvtq3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKEV7Qvtq3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEV7Qvtq3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKEV7Qvtq3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKEV7Qvtq3 .navbar.navbar-short {
  background: #fe0939 !important;
  min-height: 60px;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-logo img {
  height: 6rem !important;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKEV7Qvtq3 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uKEV7Qvtq3 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover {
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-menu {
  background-color: white!important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(253, 141, 113, 0.35);
  display: block;
}
.cid-uKEV7Qvtq3 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uKEV7Qvtq3 .nav-item {
    position: relative;
  }
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .collapsed {
  flex-direction: row!important;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar-caption {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEV7Qvtq3 .dropdown-item.active,
.cid-uKEV7Qvtq3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEV7Qvtq3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKEV7Qvtq3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKEV7Qvtq3 .navbar-buttons {
  text-align: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKEV7Qvtq3 .nav-link {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKEV7Qvtq3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKEV7Qvtq3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .icons-menu span {
  font-size: 26px;
  color: #133996;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKEV7Qvtq3 .navbar {
    height: 77px;
  }
  .cid-uKEV7Qvtq3 .navbar.opened {
    height: auto;
  }
  .cid-uKEV7Qvtq3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s0ZU7qq2Db {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #bfebf3;
}
.cid-s0ZU7qq2Db .text-content .btn-bgr {
  z-index: 0;
}
.cid-s0ZU7qq2Db .mbr-overlay {
  background: #d7e8f6;
}
.cid-s0ZU7qq2Db .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-s0ZU7qq2Db .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s0ZU7qq2Db .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-s0ZU7qq2Db .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-s0ZU7qq2Db .text-content {
    margin-bottom: 2rem;
  }
}
.cid-s0ZRD8kQth {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bfebf3;
}
.cid-s0ZRD8kQth .text-content .btn-bgr {
  z-index: 0;
}
.cid-s0ZRD8kQth .mbr-overlay {
  background: #d7e8f6;
}
.cid-s0ZRD8kQth .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-s0ZRD8kQth .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s0ZRD8kQth .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-s0ZRD8kQth .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-s0ZRD8kQth .text-content {
    margin-bottom: 2rem;
  }
}
.cid-s0ZToD6KaJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #bfebf3;
}
.cid-s0ZToD6KaJ .text-content .btn-bgr {
  z-index: 0;
}
.cid-s0ZToD6KaJ .mbr-overlay {
  background: #d7e8f6;
}
.cid-s0ZToD6KaJ .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-s0ZToD6KaJ .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s0ZToD6KaJ .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-s0ZToD6KaJ .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-s0ZToD6KaJ .text-content {
    margin-bottom: 2rem;
  }
}
.cid-sAAwOsU57p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sAAwOsU57p .media-container-row .mbr-text {
  color: #5b686b;
}
.cid-uKEV7Qvtq3 {
  height: 0 !important;
}
.cid-uKEV7Qvtq3 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uKEV7Qvtq3 .nav-item:focus,
.cid-uKEV7Qvtq3 .nav-link:focus {
  outline: none;
}
.cid-uKEV7Qvtq3 .text-white:hover,
.cid-uKEV7Qvtq3 .text-white:active,
.cid-uKEV7Qvtq3 .text-white:focus {
  color: white!important;
}
.cid-uKEV7Qvtq3 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-uKEV7Qvtq3 .navbar.opened {
  transition: all .3s;
  background: #fe0939 !important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uKEV7Qvtq3 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEV7Qvtq3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKEV7Qvtq3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKEV7Qvtq3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEV7Qvtq3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKEV7Qvtq3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKEV7Qvtq3 .navbar.navbar-short {
  background: #fe0939 !important;
  min-height: 60px;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-logo img {
  height: 6rem !important;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKEV7Qvtq3 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uKEV7Qvtq3 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover {
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-menu {
  background-color: white!important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(253, 141, 113, 0.35);
  display: block;
}
.cid-uKEV7Qvtq3 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uKEV7Qvtq3 .nav-item {
    position: relative;
  }
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .collapsed {
  flex-direction: row!important;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar-caption {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEV7Qvtq3 .dropdown-item.active,
.cid-uKEV7Qvtq3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEV7Qvtq3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKEV7Qvtq3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKEV7Qvtq3 .navbar-buttons {
  text-align: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKEV7Qvtq3 .nav-link {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKEV7Qvtq3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKEV7Qvtq3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .icons-menu span {
  font-size: 26px;
  color: #133996;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKEV7Qvtq3 .navbar {
    height: 77px;
  }
  .cid-uKEV7Qvtq3 .navbar.opened {
    height: auto;
  }
  .cid-uKEV7Qvtq3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufFDUQFteW {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ufFDUQFteW img {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-ufFDUQFteW .mbr-text,
.cid-ufFDUQFteW .mbr-section-btn {
  color: #57468b;
}
.cid-ufFDUQFteW H3 {
  color: #fc643f;
}
.cid-ufFDUQFteW H1 {
  color: #00c48c;
}
@media (max-width: 992px) {
  .cid-ufFDUQFteW img {
    width: 100%!important;
  }
}
.cid-sAAwOsU57p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sAAwOsU57p .media-container-row .mbr-text {
  color: #5b686b;
}
.cid-uKEV7Qvtq3 {
  height: 0 !important;
}
.cid-uKEV7Qvtq3 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uKEV7Qvtq3 .nav-item:focus,
.cid-uKEV7Qvtq3 .nav-link:focus {
  outline: none;
}
.cid-uKEV7Qvtq3 .text-white:hover,
.cid-uKEV7Qvtq3 .text-white:active,
.cid-uKEV7Qvtq3 .text-white:focus {
  color: white!important;
}
.cid-uKEV7Qvtq3 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-uKEV7Qvtq3 .navbar.opened {
  transition: all .3s;
  background: #fe0939 !important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uKEV7Qvtq3 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEV7Qvtq3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKEV7Qvtq3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKEV7Qvtq3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEV7Qvtq3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKEV7Qvtq3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKEV7Qvtq3 .navbar.navbar-short {
  background: #fe0939 !important;
  min-height: 60px;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-logo img {
  height: 6rem !important;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKEV7Qvtq3 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uKEV7Qvtq3 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover {
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-menu {
  background-color: white!important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(253, 141, 113, 0.35);
  display: block;
}
.cid-uKEV7Qvtq3 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uKEV7Qvtq3 .nav-item {
    position: relative;
  }
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .collapsed {
  flex-direction: row!important;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar-caption {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEV7Qvtq3 .dropdown-item.active,
.cid-uKEV7Qvtq3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEV7Qvtq3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKEV7Qvtq3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKEV7Qvtq3 .navbar-buttons {
  text-align: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKEV7Qvtq3 .nav-link {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKEV7Qvtq3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKEV7Qvtq3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .icons-menu span {
  font-size: 26px;
  color: #133996;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKEV7Qvtq3 .navbar {
    height: 77px;
  }
  .cid-uKEV7Qvtq3 .navbar.opened {
    height: auto;
  }
  .cid-uKEV7Qvtq3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s2YP94iUaO {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s2YP94iUaO .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s2YP94iUaO .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s2YP94iUaO .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-s2YP94iUaO .underline .line {
  width: 3rem;
  height: 2px;
  background: #000000;
  display: inline-block;
}
.cid-s2YP94iUaO .process-icon,
.cid-s2YP94iUaO .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-s2YP94iUaO .wrapper,
.cid-s2YP94iUaO .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-s2YP94iUaO .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #ffcf5c;
  opacity: .4;
}
.cid-s2YP94iUaO .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-s2YP94iUaO .icon-container a {
  display: inherit;
}
.cid-s2YP94iUaO .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: #ff3366 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-s2YP94iUaO .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-s2YP94iUaO .icon-main:hover .icon-wrapper {
  background-color: #ff3366 !important;
}
.cid-s2YP94iUaO .icon-main:hover .icon-number {
  background-color: #ffcf5c !important;
  color: #000000 !important;
}
.cid-s2YP94iUaO .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-s2YP94iUaO .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-s2YP94iUaO .wrapper::before {
    display: none;
  }
  .cid-s2YP94iUaO .img3 {
    position: relative !important;
    margin: 0 auto;
    right: 0px;
  }
}
@media (max-width: 991px) {
  .cid-s2YP94iUaO .third-elem .wrapper:before {
    display: none;
  }
  .cid-s2YP94iUaO .img3 div[id^="jarallax-container"] > * {
    margin-top: 0% !important;
  }
  .cid-s2YP94iUaO .text-wrap > * {
    text-align: center;
  }
}
.cid-s2YP94iUaO .mbr-section-title {
  margin: 0;
}
.cid-s2YP94iUaO .mbr-section-subtitle {
  color: #fc643f;
  text-align: center;
}
.cid-s2YP94iUaO .mbr-section-title,
.cid-s2YP94iUaO .underline {
  color: #00c48c;
}
.cid-sAAtX6Qyui {
  position: relative;
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sAAtX6Qyui .buttons-block {
  justify-content: center;
}
.cid-sAAtX6Qyui .mbr-section-title {
  color: #133996;
}
.cid-sAAtX6Qyui .mbr-section-subtitle {
  color: #000000;
}
.cid-sAAtX6Qyui .mbr-text {
  color: #000000;
}
.cid-sAAtX6Qyui .mbr-section-title,
.cid-sAAtX6Qyui .mbr-section-subtitle,
.cid-sAAtX6Qyui .mbr-text {
  z-index: 70;
}
.cid-sAAtX6Qyui .buttons-block {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 36px;
  z-index: 70;
}
.cid-sAAtX6Qyui .buttons-block .mbr-section-btn {
  margin-left: 6px;
  margin-right: 6px;
}
.cid-sAAtX6Qyui .buttons-block .mbr-section-btn .btn {
  border-radius: 20px !important;
  border-width: 1px;
  padding: 0.6rem 2.5rem !important;
  font-weight: 400 !important;
}
.cid-sAAtX6Qyui .buttons-block .mbr-section-btn .btn .mbr-iconfont {
  margin-right: 10px;
}
.cid-sAAtX6Qyui img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.cid-sAAtX6Qyui .wrap {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.cid-sAAtX6Qyui .image-1 {
  position: absolute;
  left: -420px;
  bottom: 97px;
  -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.cid-sAAtX6Qyui .image-2 {
  position: absolute;
  left: -23%;
  top: -75%;
  right: auto;
  bottom: auto;
  -webkit-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
.cid-sAAtX6Qyui .image-3 {
  position: absolute;
  left: 169px;
  bottom: 469px;
  -webkit-transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.cid-sAAtX6Qyui .image-4 {
  position: absolute;
  left: auto;
  right: -31px;
  bottom: -52px;
  -webkit-transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.cid-sAAtX6Qyui .image-5 {
  position: absolute;
  left: 757px;
  top: -425px;
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}
.cid-sAAtX6Qyui .image-6 {
  position: absolute;
  left: -75px;
  top: 60px;
  -webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  will-change: transform;
}
@media (max-width: 1199px) {
  .cid-sAAtX6Qyui .image-5 {
    left: 557px;
  }
}
@media (max-width: 992px) {
  .cid-sAAtX6Qyui .container {
    padding: 140px 15px;
  }
}
@media (max-width: 767px) {
  .cid-sAAtX6Qyui .btn {
    font-size: 1.0625rem !important;
  }
  .cid-sAAtX6Qyui .image-5 {
    left: 457px;
  }
}
@media (max-width: 576px) {
  .cid-sAAtX6Qyui .image-5 {
    left: 257px;
    top: -525px;
  }
}
.cid-s2YP94U8Ky {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s2YP94U8Ky .mbr-text {
  color: #fc643f;
}
.cid-s2YP94U8Ky .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-s2YP94U8Ky .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-s2YP94U8Ky .mbr-text UL {
  text-align: left;
}
.cid-sAAwOsU57p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sAAwOsU57p .media-container-row .mbr-text {
  color: #5b686b;
}
.cid-uKEV7Qvtq3 {
  height: 0 !important;
}
.cid-uKEV7Qvtq3 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uKEV7Qvtq3 .nav-item:focus,
.cid-uKEV7Qvtq3 .nav-link:focus {
  outline: none;
}
.cid-uKEV7Qvtq3 .text-white:hover,
.cid-uKEV7Qvtq3 .text-white:active,
.cid-uKEV7Qvtq3 .text-white:focus {
  color: white!important;
}
.cid-uKEV7Qvtq3 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-uKEV7Qvtq3 .navbar.opened {
  transition: all .3s;
  background: #fe0939 !important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uKEV7Qvtq3 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEV7Qvtq3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKEV7Qvtq3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKEV7Qvtq3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEV7Qvtq3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKEV7Qvtq3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKEV7Qvtq3 .navbar.navbar-short {
  background: #fe0939 !important;
  min-height: 60px;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-logo img {
  height: 6rem !important;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKEV7Qvtq3 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uKEV7Qvtq3 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover {
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-menu {
  background-color: white!important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(253, 141, 113, 0.35);
  display: block;
}
.cid-uKEV7Qvtq3 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uKEV7Qvtq3 .nav-item {
    position: relative;
  }
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .collapsed {
  flex-direction: row!important;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar-caption {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEV7Qvtq3 .dropdown-item.active,
.cid-uKEV7Qvtq3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEV7Qvtq3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKEV7Qvtq3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKEV7Qvtq3 .navbar-buttons {
  text-align: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKEV7Qvtq3 .nav-link {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKEV7Qvtq3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKEV7Qvtq3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .icons-menu span {
  font-size: 26px;
  color: #133996;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKEV7Qvtq3 .navbar {
    height: 77px;
  }
  .cid-uKEV7Qvtq3 .navbar.opened {
    height: auto;
  }
  .cid-uKEV7Qvtq3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbDz6cd4HM {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #fdece8;
}
.cid-tbDz6cd4HM .row {
  justify-content: flex-end;
}
.cid-tbDz6cd4HM .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #fdece8;
}
.cid-tbDz6cd4HM .block {
  background-color: #ffda00;
}
.cid-tbDz6cd4HM img {
  width: 100%;
}
.cid-tbDz6cd4HM .content-wrapper {
  margin: auto;
  position: relative;
  padding: 5rem 5rem;
}
.cid-tbDz6cd4HM .content {
  max-width: 600px;
}
.cid-tbDz6cd4HM h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 19rem;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-tbDz6cd4HM .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-tbDz6cd4HM h4 {
    right: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tbDz6cd4HM .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-tbDz6cd4HM h4 {
    right: 2rem;
    bottom: 30%;
  }
  .cid-tbDz6cd4HM .content-wrapper {
    padding: 4rem 3rem 4rem 0rem;
  }
}
.cid-tbDz6cd4HM H1 {
  color: #57468b;
}
.cid-taTukcFGRq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fdece8;
}
.cid-taTukcFGRq .text-content .btn-bgr {
  z-index: 0;
}
.cid-taTukcFGRq .mbr-overlay {
  background: #d7e8f6;
}
.cid-taTukcFGRq .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-taTukcFGRq .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-taTukcFGRq .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 768px) {
  .cid-taTukcFGRq .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-taTukcFGRq .text-content {
    margin-bottom: 2rem;
  }
}
.cid-taTukcFGRq P {
  color: #000000;
}
.cid-s5x6qUmu2e {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fdece8;
}
.cid-s5x6qUmu2e .text-content .btn-bgr {
  z-index: 0;
}
.cid-s5x6qUmu2e .mbr-overlay {
  background: #d7e8f6;
}
.cid-s5x6qUmu2e .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s5x6qUmu2e .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-s5x6qUmu2e .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s5x6qUmu2e .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-s5x6qUmu2e .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-s5x6qUmu2e .text-content {
    margin-bottom: 2rem;
  }
}
.cid-s5x6qVLJpD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fdece8;
}
.cid-s5x6qVLJpD .text-content .btn-bgr {
  z-index: 0;
}
.cid-s5x6qVLJpD .mbr-overlay {
  background: #d7e8f6;
}
.cid-s5x6qVLJpD .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-s5x6qVLJpD .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s5x6qVLJpD .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-s5x6qVLJpD .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-s5x6qVLJpD .text-content {
    margin-bottom: 2rem;
  }
}
.cid-s5x6qTX3Qg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fdece8;
}
.cid-s5x6qTX3Qg .text-content .btn-bgr {
  z-index: 0;
}
.cid-s5x6qTX3Qg .mbr-overlay {
  background: #d7e8f6;
}
.cid-s5x6qTX3Qg .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s5x6qTX3Qg .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-s5x6qTX3Qg .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s5x6qTX3Qg .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-s5x6qTX3Qg .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-s5x6qTX3Qg .text-content {
    margin-bottom: 2rem;
  }
}
.cid-s5x6qUGRA9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fdece8;
}
.cid-s5x6qUGRA9 .text-content .btn-bgr {
  z-index: 0;
}
.cid-s5x6qUGRA9 .mbr-overlay {
  background: #d7e8f6;
}
.cid-s5x6qUGRA9 .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-s5x6qUGRA9 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s5x6qUGRA9 .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-s5x6qUGRA9 .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-s5x6qUGRA9 .text-content {
    margin-bottom: 2rem;
  }
}
.cid-s5x6qV3k7g {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fdece8;
}
.cid-s5x6qV3k7g .text-content .btn-bgr {
  z-index: 0;
}
.cid-s5x6qV3k7g .mbr-overlay {
  background: #d7e8f6;
}
.cid-s5x6qV3k7g .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s5x6qV3k7g .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-s5x6qV3k7g .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s5x6qV3k7g .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-s5x6qV3k7g .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-s5x6qV3k7g .text-content {
    margin-bottom: 2rem;
  }
}
.cid-s5x6qW93NZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fdece8;
}
.cid-s5x6qW93NZ .text-content .btn-bgr {
  z-index: 0;
}
.cid-s5x6qW93NZ .mbr-overlay {
  background: #d7e8f6;
}
.cid-s5x6qW93NZ .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-s5x6qW93NZ .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s5x6qW93NZ .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-s5x6qW93NZ .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-s5x6qW93NZ .text-content {
    margin-bottom: 2rem;
  }
}
.cid-ufFb7x8o8k {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fdece8;
}
.cid-ufFb7x8o8k .buttons-block {
  justify-content: center;
}
.cid-ufFb7x8o8k .container {
  overflow: hidden;
  height: 20%;
  max-width: 50%;
  margin-right: auto;
  margin-left: auto;
  padding: 52px 92px;
  border-radius: 50px;
  background-color: #00c48c;
}
.cid-ufFb7x8o8k .mbr-section-title,
.cid-ufFb7x8o8k .mbr-section-subtitle,
.cid-ufFb7x8o8k .mbr-text {
  z-index: 70;
}
.cid-ufFb7x8o8k .buttons-block {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 36px;
  z-index: 70;
}
.cid-ufFb7x8o8k .buttons-block .mbr-section-btn {
  margin-left: 6px;
  margin-right: 6px;
}
.cid-ufFb7x8o8k .buttons-block .mbr-section-btn .btn {
  border-radius: 20px !important;
  border-width: 1px;
  padding: 0.6rem 2.5rem !important;
  font-weight: 400 !important;
}
.cid-ufFb7x8o8k .buttons-block .mbr-section-btn .btn .mbr-iconfont {
  margin-right: 10px;
}
.cid-ufFb7x8o8k img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.cid-ufFb7x8o8k .wrap {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.cid-ufFb7x8o8k .image-1 {
  position: absolute;
  left: -420px;
  bottom: 97px;
  -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.cid-ufFb7x8o8k .image-2 {
  position: absolute;
  left: -23%;
  top: -75%;
  right: auto;
  bottom: auto;
  -webkit-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
.cid-ufFb7x8o8k .image-3 {
  position: absolute;
  left: 169px;
  bottom: 469px;
  -webkit-transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.cid-ufFb7x8o8k .image-4 {
  position: absolute;
  left: auto;
  right: -31px;
  bottom: -52px;
  -webkit-transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.cid-ufFb7x8o8k .image-5 {
  position: absolute;
  left: 757px;
  top: -425px;
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}
.cid-ufFb7x8o8k .image-6 {
  position: absolute;
  left: -75px;
  top: 60px;
  -webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  will-change: transform;
}
@media (max-width: 1199px) {
  .cid-ufFb7x8o8k .image-5 {
    left: 557px;
  }
}
@media (max-width: 992px) {
  .cid-ufFb7x8o8k .container {
    padding: 140px 15px;
  }
}
@media (max-width: 767px) {
  .cid-ufFb7x8o8k .btn {
    font-size: 1.0625rem !important;
  }
  .cid-ufFb7x8o8k .image-5 {
    left: 457px;
  }
}
@media (max-width: 576px) {
  .cid-ufFb7x8o8k .image-5 {
    left: 257px;
    top: -525px;
  }
}
.cid-sAAwOsU57p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sAAwOsU57p .media-container-row .mbr-text {
  color: #5b686b;
}
.cid-uKEV7Qvtq3 {
  height: 0 !important;
}
.cid-uKEV7Qvtq3 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uKEV7Qvtq3 .nav-item:focus,
.cid-uKEV7Qvtq3 .nav-link:focus {
  outline: none;
}
.cid-uKEV7Qvtq3 .text-white:hover,
.cid-uKEV7Qvtq3 .text-white:active,
.cid-uKEV7Qvtq3 .text-white:focus {
  color: white!important;
}
.cid-uKEV7Qvtq3 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-uKEV7Qvtq3 .navbar.opened {
  transition: all .3s;
  background: #fe0939 !important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uKEV7Qvtq3 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEV7Qvtq3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKEV7Qvtq3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKEV7Qvtq3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEV7Qvtq3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKEV7Qvtq3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKEV7Qvtq3 .navbar.navbar-short {
  background: #fe0939 !important;
  min-height: 60px;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-logo img {
  height: 6rem !important;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKEV7Qvtq3 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uKEV7Qvtq3 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover {
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-menu {
  background-color: white!important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(253, 141, 113, 0.35);
  display: block;
}
.cid-uKEV7Qvtq3 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uKEV7Qvtq3 .nav-item {
    position: relative;
  }
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .collapsed {
  flex-direction: row!important;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar-caption {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEV7Qvtq3 .dropdown-item.active,
.cid-uKEV7Qvtq3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEV7Qvtq3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKEV7Qvtq3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKEV7Qvtq3 .navbar-buttons {
  text-align: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKEV7Qvtq3 .nav-link {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKEV7Qvtq3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKEV7Qvtq3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .icons-menu span {
  font-size: 26px;
  color: #133996;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKEV7Qvtq3 .navbar {
    height: 77px;
  }
  .cid-uKEV7Qvtq3 .navbar.opened {
    height: auto;
  }
  .cid-uKEV7Qvtq3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKEV7Qvtq3 {
  height: 0 !important;
}
.cid-uKEV7Qvtq3 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uKEV7Qvtq3 .nav-item:focus,
.cid-uKEV7Qvtq3 .nav-link:focus {
  outline: none;
}
.cid-uKEV7Qvtq3 .text-white:hover,
.cid-uKEV7Qvtq3 .text-white:active,
.cid-uKEV7Qvtq3 .text-white:focus {
  color: white!important;
}
.cid-uKEV7Qvtq3 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-uKEV7Qvtq3 .navbar.opened {
  transition: all .3s;
  background: #fe0939 !important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uKEV7Qvtq3 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEV7Qvtq3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKEV7Qvtq3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKEV7Qvtq3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEV7Qvtq3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKEV7Qvtq3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKEV7Qvtq3 .navbar.navbar-short {
  background: #fe0939 !important;
  min-height: 60px;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-logo img {
  height: 6rem !important;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKEV7Qvtq3 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uKEV7Qvtq3 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover {
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-menu {
  background-color: white!important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(253, 141, 113, 0.35);
  display: block;
}
.cid-uKEV7Qvtq3 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uKEV7Qvtq3 .nav-item {
    position: relative;
  }
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .collapsed {
  flex-direction: row!important;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar-caption {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEV7Qvtq3 .dropdown-item.active,
.cid-uKEV7Qvtq3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEV7Qvtq3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKEV7Qvtq3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKEV7Qvtq3 .navbar-buttons {
  text-align: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKEV7Qvtq3 .nav-link {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKEV7Qvtq3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKEV7Qvtq3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .icons-menu span {
  font-size: 26px;
  color: #133996;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKEV7Qvtq3 .navbar {
    height: 77px;
  }
  .cid-uKEV7Qvtq3 .navbar.opened {
    height: auto;
  }
  .cid-uKEV7Qvtq3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-taT7R4aQJX {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-taT7R4aQJX .mbr-fallback-image.disabled {
  display: none;
}
.cid-taT7R4aQJX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taT7R4aQJX .video-wrapper iframe {
  width: 100%;
}
.cid-taT7R4aQJX .mbr-section-title,
.cid-taT7R4aQJX .mbr-section-subtitle,
.cid-taT7R4aQJX .mbr-text {
  text-align: center;
}
.cid-taT7R4aQJX .mbr-section-title {
  color: #00c48c;
}
.cid-taT7PZeM9v {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-taT7PZeM9v .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 991px) {
  .cid-taT7PZeM9v .item {
    margin-bottom: 4rem;
  }
}
.cid-taT7PZeM9v .item:last-child .icon-box:before {
  display: none;
}
.cid-taT7PZeM9v .item.last .icon-box:before {
  display: none;
}
.cid-taT7PZeM9v .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-taT7PZeM9v .icon-box {
    margin-right: 1rem;
  }
}
.cid-taT7PZeM9v .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #6592e6;
  transform: translate(-50%, 0);
}
.cid-taT7PZeM9v span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-taT7PZeM9v .card {
    margin-bottom: 2rem;
  }
  .cid-taT7PZeM9v .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-taT7PZeM9v .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-taT7PZeM9v .icon-box::before {
    top: 114%;
  }
}
.cid-taT7PZeM9v .icon-text {
  text-align: center;
}
.cid-taT7PZeM9v .icon-title {
  text-align: left;
  color: #fc643f;
}
.cid-t5pKvEhAO1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-t5pKvEhAO1 .media-container-row .mbr-text {
  color: #5b686b;
}
.cid-s7C4S9CpUU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s7C4S9CpUU section {
  position: relative;
}
.cid-s7C4S9CpUU .container {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 169px 92px;
  border-radius: 50px;
  background-color: #fdece8;
  max-width: 80%;
}
.cid-s7C4S9CpUU .mbr-text,
.cid-s7C4S9CpUU .mbr-section-btn {
  color: #48cbe6;
}
.cid-s7C4S9CpUU .circles {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
}
.cid-s7C4S9CpUU .circle1 {
  height: 100%;
  width: 87px;
  right: 130px;
  top: 100px;
  position: absolute !important;
  background-image: url("../../../assets/images/7.svg");
}
.cid-s7C4S9CpUU .circle1 div[id^="jarallax-container"] > * {
  background-size: inherit !important;
  width: 87px !important;
}
.cid-s7C4S9CpUU .circle2 {
  height: 100%;
  width: 206px;
  right: -30px;
  bottom: -240px;
  position: absolute !important;
  background-image: url("../../../assets/images/8.svg");
  background-repeat: no-repeat;
}
.cid-s7C4S9CpUU .circle2 span {
  position: absolute;
  top: 80px;
  left: 83px;
}
.cid-s7C4S9CpUU .circle3 {
  height: 100%;
  width: 35px;
  position: absolute !important;
  right: 230px;
  background-image: url("../../../assets/images/9.svg");
}
.cid-s7C4S9CpUU .circle3 div[id^="jarallax-container"] > * {
  background-size: inherit !important;
  width: 35px !important;
}
.cid-s7C4S9CpUU .circle4 {
  left: 436px;
  top: 400px;
  height: 100%;
  width: 234px;
  position: absolute !important;
  background-image: url("../../../assets/images/3.svg");
  background-repeat: no-repeat;
}
.cid-s7C4S9CpUU .circle4 span {
  position: absolute;
  top: 96px;
  left: 93px;
}
.cid-s7C4S9CpUU .circle5 {
  left: 263px;
  top: -51px;
  height: 100%;
  width: 57px;
  position: absolute !important;
  background-image: url("../../../assets/images/11.svg");
}
.cid-s7C4S9CpUU .circle5 div[id^="jarallax-container"] > * {
  background-size: inherit !important;
  width: 57px !important;
  position: static !important;
}
.cid-s7C4S9CpUU .circle6 {
  left: 20px;
  top: 301px;
  height: 100%;
  width: 206px;
  position: absolute !important;
  background-image: url("../../../assets/images/12.svg");
  background-repeat: no-repeat;
}
.cid-s7C4S9CpUU .circle6 span {
  position: absolute;
  top: 80px;
  left: 83px;
}
.cid-s7C4S9CpUU .circle7 {
  top: -100px;
  left: 0;
  height: 100%;
  width: 35px;
  position: absolute !important;
  background-image: url("../../../assets/images/13.svg");
}
.cid-s7C4S9CpUU .circle7 div[id^="jarallax-container"] > * {
  background-size: inherit !important;
  width: 35px !important;
  position: static !important;
}
.cid-s7C4S9CpUU .mbr-section-title {
  color: #133996;
}
.cid-s7C4S9CpUU .mbr-iconfont {
  font-size: 2.5rem;
  color: white;
}
@media (max-width: 1199px) {
  .cid-s7C4S9CpUU .circle2 {
    right: -60px;
    bottom: -290px;
  }
  .cid-s7C4S9CpUU .circle4 {
    left: 256px;
    top: 430px;
  }
}
@media (max-width: 991px) {
  .cid-s7C4S9CpUU .circles {
    display: none;
  }
  .cid-s7C4S9CpUU .container {
    padding: 140px 15px;
  }
}
.cid-sAAwOsU57p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sAAwOsU57p .media-container-row .mbr-text {
  color: #5b686b;
}
.cid-uKEV7Qvtq3 {
  height: 0 !important;
}
.cid-uKEV7Qvtq3 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uKEV7Qvtq3 .nav-item:focus,
.cid-uKEV7Qvtq3 .nav-link:focus {
  outline: none;
}
.cid-uKEV7Qvtq3 .text-white:hover,
.cid-uKEV7Qvtq3 .text-white:active,
.cid-uKEV7Qvtq3 .text-white:focus {
  color: white!important;
}
.cid-uKEV7Qvtq3 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-uKEV7Qvtq3 .navbar.opened {
  transition: all .3s;
  background: #fe0939 !important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uKEV7Qvtq3 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEV7Qvtq3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKEV7Qvtq3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKEV7Qvtq3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEV7Qvtq3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKEV7Qvtq3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKEV7Qvtq3 .navbar.navbar-short {
  background: #fe0939 !important;
  min-height: 60px;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-logo img {
  height: 6rem !important;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKEV7Qvtq3 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uKEV7Qvtq3 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover {
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-menu {
  background-color: white!important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(253, 141, 113, 0.35);
  display: block;
}
.cid-uKEV7Qvtq3 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uKEV7Qvtq3 .nav-item {
    position: relative;
  }
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .collapsed {
  flex-direction: row!important;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar-caption {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEV7Qvtq3 .dropdown-item.active,
.cid-uKEV7Qvtq3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEV7Qvtq3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKEV7Qvtq3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKEV7Qvtq3 .navbar-buttons {
  text-align: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKEV7Qvtq3 .nav-link {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKEV7Qvtq3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKEV7Qvtq3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .icons-menu span {
  font-size: 26px;
  color: #133996;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKEV7Qvtq3 .navbar {
    height: 77px;
  }
  .cid-uKEV7Qvtq3 .navbar.opened {
    height: auto;
  }
  .cid-uKEV7Qvtq3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s2HwivqGnG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s2HwivqGnG section {
  position: relative;
}
.cid-s2HwivqGnG .container {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 169px 92px;
  border-radius: 50px;
  background-color: #fdece8;
  max-width: 80%;
}
.cid-s2HwivqGnG .mbr-text,
.cid-s2HwivqGnG .mbr-section-btn {
  color: #48cbe6;
}
.cid-s2HwivqGnG .circles {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
}
.cid-s2HwivqGnG .circle1 {
  height: 100%;
  width: 87px;
  right: 130px;
  top: 100px;
  position: absolute !important;
  background-image: url("../../../assets/images/7.svg");
}
.cid-s2HwivqGnG .circle1 div[id^="jarallax-container"] > * {
  background-size: inherit !important;
  width: 87px !important;
}
.cid-s2HwivqGnG .circle2 {
  height: 100%;
  width: 206px;
  right: -30px;
  bottom: -240px;
  position: absolute !important;
  background-image: url("../../../assets/images/8.svg");
  background-repeat: no-repeat;
}
.cid-s2HwivqGnG .circle2 span {
  position: absolute;
  top: 80px;
  left: 83px;
}
.cid-s2HwivqGnG .circle3 {
  height: 100%;
  width: 35px;
  position: absolute !important;
  right: 230px;
  background-image: url("../../../assets/images/9.svg");
}
.cid-s2HwivqGnG .circle3 div[id^="jarallax-container"] > * {
  background-size: inherit !important;
  width: 35px !important;
}
.cid-s2HwivqGnG .circle4 {
  left: 436px;
  top: 400px;
  height: 100%;
  width: 234px;
  position: absolute !important;
  background-image: url("../../../assets/images/106.svg");
  background-repeat: no-repeat;
}
.cid-s2HwivqGnG .circle4 span {
  position: absolute;
  top: 96px;
  left: 93px;
}
.cid-s2HwivqGnG .circle5 {
  left: 263px;
  top: -51px;
  height: 100%;
  width: 57px;
  position: absolute !important;
  background-image: url("../../../assets/images/11.svg");
}
.cid-s2HwivqGnG .circle5 div[id^="jarallax-container"] > * {
  background-size: inherit !important;
  width: 57px !important;
  position: static !important;
}
.cid-s2HwivqGnG .circle6 {
  left: 20px;
  top: 301px;
  height: 100%;
  width: 206px;
  position: absolute !important;
  background-image: url("../../../assets/images/12.svg");
  background-repeat: no-repeat;
}
.cid-s2HwivqGnG .circle6 span {
  position: absolute;
  top: 80px;
  left: 83px;
}
.cid-s2HwivqGnG .circle7 {
  top: -100px;
  left: 0;
  height: 100%;
  width: 35px;
  position: absolute !important;
  background-image: url("../../../assets/images/13.svg");
}
.cid-s2HwivqGnG .circle7 div[id^="jarallax-container"] > * {
  background-size: inherit !important;
  width: 35px !important;
  position: static !important;
}
.cid-s2HwivqGnG .mbr-section-title {
  color: #133996;
}
.cid-s2HwivqGnG .mbr-iconfont {
  font-size: 2.5rem;
  color: white;
}
@media (max-width: 1199px) {
  .cid-s2HwivqGnG .circle2 {
    right: -60px;
    bottom: -290px;
  }
  .cid-s2HwivqGnG .circle4 {
    left: 256px;
    top: 430px;
  }
}
@media (max-width: 991px) {
  .cid-s2HwivqGnG .circles {
    display: none;
  }
  .cid-s2HwivqGnG .container {
    padding: 140px 15px;
  }
}
.cid-sAAwOsU57p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sAAwOsU57p .media-container-row .mbr-text {
  color: #5b686b;
}
.cid-s0OdDNwPD9 {
  padding-top: 180px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s0OdDNwPD9 .image-1 {
  left: -95px !important;
  bottom: -113px !important;
}
.cid-s0OdDNwPD9 .image-2 {
  top: 95px !important;
}
.cid-s0OdDNwPD9 .image-3 {
  left: 379px !important;
  bottom: -51px !important;
}
.cid-s0OdDNwPD9 .image-4 {
  bottom: -242px !important;
}
@media (max-width: 1199px) {
  .cid-s0OdDNwPD9 .image-1 {
    left: -175px !important;
  }
  .cid-s0OdDNwPD9 .image-2 {
    top: 5px !important;
  }
  .cid-s0OdDNwPD9 .image-3 {
    left: -11px !important;
    bottom: -141px !important;
  }
  .cid-s0OdDNwPD9 .image-4 {
    bottom: -352px !important;
  }
  .cid-s0OdDNwPD9 .image-5 {
    left: -203px !important;
    top: 185px !important;
  }
}
@media (max-width: 992px) {
  .cid-s0OdDNwPD9 .image-1 {
    left: 185px !important;
  }
  .cid-s0OdDNwPD9 .image-2 {
    top: -25px !important;
    left: 37% !important;
  }
  .cid-s0OdDNwPD9 .image-3 {
    left: 589px !important;
    bottom: 149px !important;
  }
  .cid-s0OdDNwPD9 .image-4 {
    bottom: -62px !important;
  }
  .cid-s0OdDNwPD9 .image-5 {
    left: 207px !important;
    top: -55px !important;
  }
  .cid-s0OdDNwPD9 .image-6 {
    left: -295px;
    top: 80px;
  }
}
@media (max-width: 767px) {
  .cid-s0OdDNwPD9 .image-1 {
    left: -185px !important;
    bottom: -273px !important;
  }
  .cid-s0OdDNwPD9 .image-2 {
    left: 187px !important;
    top: 105px !important;
  }
  .cid-s0OdDNwPD9 .image-3 {
    left: 299px !important;
    bottom: 9px !important;
  }
  .cid-s0OdDNwPD9 .image-4 {
    right: 209px !important;
    bottom: -212px !important;
  }
  .cid-s0OdDNwPD9 .image-5 {
    left: 117px !important;
    top: 25px !important;
  }
}
.cid-s0OdDNwPD9 section {
  position: relative;
}
.cid-s0OdDNwPD9 .mbr-section-title {
  z-index: 70;
  color: #133996;
}
.cid-s0OdDNwPD9 .mbr-text,
.cid-s0OdDNwPD9 .mbr-section-btn {
  color: #ff3366;
  z-index: 70;
}
.cid-s0OdDNwPD9 img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.cid-s0OdDNwPD9 .wrap {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.cid-s0OdDNwPD9 .image-1 {
  position: absolute;
  left: -95px;
  bottom: -3px;
  -webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  will-change: transform;
}
.cid-s0OdDNwPD9 .image-2 {
  position: absolute;
  left: -23%;
  top: -75%;
  right: auto;
  bottom: auto;
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}
.cid-s0OdDNwPD9 .image-3 {
  position: absolute;
  left: 209px;
  bottom: -131px;
  -webkit-transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.cid-s0OdDNwPD9 .image-4 {
  position: absolute;
  right: -61px;
  bottom: -52px;
  -webkit-transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.cid-s0OdDNwPD9 .image-5 {
  position: absolute;
  left: 77px;
  top: 175px;
  -webkit-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
.cid-s0OdDNwPD9 .image-6 {
  position: absolute;
  left: -295px;
  top: 290px;
  -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
@media (max-width: 1199px) {
  .cid-s0OdDNwPD9 .image-6 {
    left: -165px;
    top: 290px;
  }
}
@media (max-width: 992px) {
  .cid-s0OdDNwPD9 .image-1 {
    bottom: -323px;
  }
  .cid-s0OdDNwPD9 .image-2 {
    left: -53%;
  }
  .cid-s0OdDNwPD9 .image-3 {
    bottom: 29px;
  }
  .cid-s0OdDNwPD9 .image-5 {
    left: 337px;
    top: -65px;
  }
  .cid-s0OdDNwPD9 .image-6 {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .cid-s0OdDNwPD9 .image-1 {
    left: 205px;
    bottom: -273px;
  }
  .cid-s0OdDNwPD9 .image-2 {
    left: -27%;
  }
  .cid-s0OdDNwPD9 .image-4 {
    right: -101px;
  }
}
.cid-taT3KlJ5R6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-taT3KlJ5R6 .text-content .btn-bgr {
  z-index: 0;
}
.cid-taT3KlJ5R6 .mbr-overlay {
  background: #d7e8f6;
}
.cid-taT3KlJ5R6 .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-taT3KlJ5R6 .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
  border-radius: 20px;
}
.cid-taT3KlJ5R6 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-taT3KlJ5R6 .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-taT3KlJ5R6 .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-taT3KlJ5R6 .text-content {
    margin-bottom: 2rem;
  }
}
.cid-taT3KlJ5R6 .mbr-section-btn,
.cid-taT3KlJ5R6 .mbr-section-title {
  color: #00c48c;
  text-align: center;
}
.cid-sAAwOsU57p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sAAwOsU57p .media-container-row .mbr-text {
  color: #5b686b;
}
.cid-uKEV7Qvtq3 {
  height: 0 !important;
}
.cid-uKEV7Qvtq3 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uKEV7Qvtq3 .nav-item:focus,
.cid-uKEV7Qvtq3 .nav-link:focus {
  outline: none;
}
.cid-uKEV7Qvtq3 .text-white:hover,
.cid-uKEV7Qvtq3 .text-white:active,
.cid-uKEV7Qvtq3 .text-white:focus {
  color: white!important;
}
.cid-uKEV7Qvtq3 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-uKEV7Qvtq3 .navbar.opened {
  transition: all .3s;
  background: #fe0939 !important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uKEV7Qvtq3 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEV7Qvtq3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKEV7Qvtq3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKEV7Qvtq3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEV7Qvtq3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKEV7Qvtq3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uKEV7Qvtq3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uKEV7Qvtq3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKEV7Qvtq3 .navbar.navbar-short {
  background: #fe0939 !important;
  min-height: 60px;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-logo img {
  height: 6rem !important;
}
.cid-uKEV7Qvtq3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKEV7Qvtq3 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uKEV7Qvtq3 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-item:hover {
  color: black!important;
}
.cid-uKEV7Qvtq3 .dropdown-menu {
  background-color: white!important;
}
.cid-uKEV7Qvtq3 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(253, 141, 113, 0.35);
  display: block;
}
.cid-uKEV7Qvtq3 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #fc643f;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uKEV7Qvtq3 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uKEV7Qvtq3 .nav-item {
    position: relative;
  }
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKEV7Qvtq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uKEV7Qvtq3 .collapsed {
  flex-direction: row!important;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEV7Qvtq3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEV7Qvtq3 .navbar-caption {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKEV7Qvtq3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEV7Qvtq3 .dropdown-item.active,
.cid-uKEV7Qvtq3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEV7Qvtq3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEV7Qvtq3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe0939;
}
.cid-uKEV7Qvtq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKEV7Qvtq3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKEV7Qvtq3 .navbar-buttons {
  text-align: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #57468b;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKEV7Qvtq3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKEV7Qvtq3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKEV7Qvtq3 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKEV7Qvtq3 .nav-link {
  font-weight: 600!important;
}
.cid-uKEV7Qvtq3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uKEV7Qvtq3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKEV7Qvtq3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKEV7Qvtq3 .icons-menu span {
  font-size: 26px;
  color: #133996;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKEV7Qvtq3 .navbar {
    height: 77px;
  }
  .cid-uKEV7Qvtq3 .navbar.opened {
    height: auto;
  }
  .cid-uKEV7Qvtq3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s2NK8MkBno {
  padding-top: 180px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2NK8MkBno .image-1 {
  left: -95px !important;
  bottom: -113px !important;
}
.cid-s2NK8MkBno .image-2 {
  top: 95px !important;
}
.cid-s2NK8MkBno .image-3 {
  left: 379px !important;
  bottom: -51px !important;
}
.cid-s2NK8MkBno .image-4 {
  bottom: -242px !important;
}
@media (max-width: 1199px) {
  .cid-s2NK8MkBno .image-1 {
    left: -175px !important;
  }
  .cid-s2NK8MkBno .image-2 {
    top: 5px !important;
  }
  .cid-s2NK8MkBno .image-3 {
    left: -11px !important;
    bottom: -141px !important;
  }
  .cid-s2NK8MkBno .image-4 {
    bottom: -352px !important;
  }
  .cid-s2NK8MkBno .image-5 {
    left: -203px !important;
    top: 185px !important;
  }
}
@media (max-width: 992px) {
  .cid-s2NK8MkBno .image-1 {
    left: 185px !important;
  }
  .cid-s2NK8MkBno .image-2 {
    top: -25px !important;
    left: 37% !important;
  }
  .cid-s2NK8MkBno .image-3 {
    left: 589px !important;
    bottom: 149px !important;
  }
  .cid-s2NK8MkBno .image-4 {
    bottom: -62px !important;
  }
  .cid-s2NK8MkBno .image-5 {
    left: 207px !important;
    top: -55px !important;
  }
  .cid-s2NK8MkBno .image-6 {
    left: -295px;
    top: 80px;
  }
}
@media (max-width: 767px) {
  .cid-s2NK8MkBno .image-1 {
    left: -185px !important;
    bottom: -273px !important;
  }
  .cid-s2NK8MkBno .image-2 {
    left: 187px !important;
    top: 105px !important;
  }
  .cid-s2NK8MkBno .image-3 {
    left: 299px !important;
    bottom: 9px !important;
  }
  .cid-s2NK8MkBno .image-4 {
    right: 209px !important;
    bottom: -212px !important;
  }
  .cid-s2NK8MkBno .image-5 {
    left: 117px !important;
    top: 25px !important;
  }
}
.cid-s2NK8MkBno section {
  position: relative;
}
.cid-s2NK8MkBno .mbr-section-title {
  z-index: 70;
  color: #00c48c;
}
.cid-s2NK8MkBno .mbr-text,
.cid-s2NK8MkBno .mbr-section-btn {
  color: #fc643f;
  z-index: 70;
}
.cid-s2NK8MkBno img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.cid-s2NK8MkBno .wrap {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.cid-s2NK8MkBno .image-1 {
  position: absolute;
  left: -95px;
  bottom: -3px;
  -webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  will-change: transform;
}
.cid-s2NK8MkBno .image-2 {
  position: absolute;
  left: -23%;
  top: -75%;
  right: auto;
  bottom: auto;
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}
.cid-s2NK8MkBno .image-3 {
  position: absolute;
  left: 209px;
  bottom: -131px;
  -webkit-transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.cid-s2NK8MkBno .image-4 {
  position: absolute;
  right: -61px;
  bottom: -52px;
  -webkit-transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.cid-s2NK8MkBno .image-5 {
  position: absolute;
  left: 77px;
  top: 175px;
  -webkit-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
.cid-s2NK8MkBno .image-6 {
  position: absolute;
  left: -295px;
  top: 290px;
  -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
@media (max-width: 1199px) {
  .cid-s2NK8MkBno .image-6 {
    left: -165px;
    top: 290px;
  }
}
@media (max-width: 992px) {
  .cid-s2NK8MkBno .image-1 {
    bottom: -323px;
  }
  .cid-s2NK8MkBno .image-2 {
    left: -53%;
  }
  .cid-s2NK8MkBno .image-3 {
    bottom: 29px;
  }
  .cid-s2NK8MkBno .image-5 {
    left: 337px;
    top: -65px;
  }
  .cid-s2NK8MkBno .image-6 {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .cid-s2NK8MkBno .image-1 {
    left: 205px;
    bottom: -273px;
  }
  .cid-s2NK8MkBno .image-2 {
    left: -27%;
  }
  .cid-s2NK8MkBno .image-4 {
    right: -101px;
  }
}
.cid-s7BRLZjU76 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #48cbe6;
}
.cid-s7BRLZjU76 .container-fluid {
  padding: 0 3rem;
}
.cid-s7BRLZjU76 .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-s7BRLZjU76 .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-s7BRLZjU76 .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-s7BRLZjU76 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-s7BRLZjU76 .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-s7BRLZjU76 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-s7BRLZjU76 a.close:hover {
  color: #ffffff;
}
.cid-s7BRLZjU76 svg {
  transition: all 0.5s ease-in;
}
.cid-s7BRLZjU76 svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-s7BRLZjU76 svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-s7BRLZjU76 svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-s7BRLZjU76 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sAAwOsU57p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sAAwOsU57p .media-container-row .mbr-text {
  color: #5b686b;
}
