body {
  font-family: 'Zilla Slab', serif;
}
.display-1 {
  font-family: 'Zilla Slab', serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Zilla Slab', serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Zilla Slab', serif;
  font-size: 1.3rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Zilla Slab', serif;
  font-size: 1.75rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Zilla Slab', serif;
  font-size: 1.4rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #714bf2 !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #a0a218 !important;
}
.btn-primary .btn-overlay {
  background-color: #6245c5 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #714bf2 !important;
  border-color: #714bf2 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6245c5 !important;
  border-color: #6245c5 !important;
}
.btn-secondary .btn-overlay {
  background-color: #8e9d51 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #181c06 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #181c06 !important;
  background-color: #8e9d51 !important;
  border-color: #8e9d51 !important;
}
.btn-info .btn-overlay {
  background-color: #48ceda !important;
}
.btn-info,
.btn-info:active {
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
  color: #004f56 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #004f56 !important;
  background-color: #48ceda !important;
  border-color: #48ceda !important;
}
.btn-success .btn-overlay {
  background-color: #54d947 !important;
}
.btn-success,
.btn-success:active {
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
  color: #085400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #085400 !important;
  background-color: #54d947 !important;
  border-color: #54d947 !important;
}
.btn-warning .btn-overlay {
  background-color: #d8d947 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
  color: #535400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #535400 !important;
  background-color: #d8d947 !important;
  border-color: #d8d947 !important;
}
.btn-danger .btn-overlay {
  background-color: #5e5f28 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a0a218 !important;
  border-color: #a0a218 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5e5f28 !important;
  border-color: #5e5f28 !important;
}
.btn-white .btn-overlay {
  background-color: #e1e1e1 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black .btn-overlay {
  background-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #714bf2;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #3d10d7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #714bf2 !important;
  border-color: #714bf2 !important;
}
.btn-secondary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bcd948;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8da823 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #181c06 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-info-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #56f1ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00e9fe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #004f56 !important;
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
}
.btn-success-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #64ff54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #18fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #085400 !important;
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
}
.btn-warning-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdff54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f9fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #535400 !important;
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
}
.btn-danger-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a0a218;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #55560d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #a0a218 !important;
  border-color: #a0a218 !important;
}
.btn-black-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b1f0a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
}
.btn-white-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #714bf2 !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #a0a218 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #390ec9 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #829b20 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #16ed00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00dbef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #eaed00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #48490b !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #714bf2;
}
.nav-tabs .nav-link:not(.active) {
  color: #1B1F0A;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #56f1ff;
}
.alert-warning {
  background-color: #fdff54;
}
.alert-danger {
  background-color: #a0a218;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #714bf2;
  border-color: #714bf2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #714bf2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #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: #e4e654;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Zilla Slab', serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #714bf2 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Zilla Slab', serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #714bf2;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #714bf2;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #714bf2;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #714bf2;
  border-bottom-color: #714bf2;
}
.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: #714bf2 !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: #bcd948 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23714bf2' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
a:hover {
  background-image: none !important;
}
.container {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 100px;
  border-radius: 100vw;
  padding: 1rem 1.5rem;
  line-height: 1.25;
  font-weight: 600 !important;
  box-shadow: none !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.mbr-section-btn .btn .mbr-iconfont {
  position: relative;
  z-index: 1000;
}
.mbr-section-btn .btn-transform {
  position: relative;
  overflow: hidden;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn-transform .btn-transform-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all !important;
  animation: btn-move-out 0.3s ease-in-out;
}
.mbr-section-btn .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn {
  transition: 0.3s all !important;
}
.mbr-section-btn .btn:hover .btn-transform .btn-transform-1 {
  animation: btn-move 0.3s ease-in-out;
}
.mbr-section-btn .btn:hover .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg) !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
b {
  font-weight: 600 !important;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-tWYl1as8yb {
  min-height: 101px !important;
  background: #d4ff29;
  overflow: visible;
}
.cid-tWYl1as8yb .nav-item,
.cid-tWYl1as8yb .nav-link,
.cid-tWYl1as8yb .navbar-caption {
  font-weight: normal;
}
.cid-tWYl1as8yb .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tWYl1as8yb .nav-link:before,
.cid-tWYl1as8yb .soc-item a:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  transition: .45s ease;
}
.cid-tWYl1as8yb .nav-item:hover .nav-link:before,
.cid-tWYl1as8yb .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tWYl1as8yb .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tWYl1as8yb .dropdown-toggle::after,
.cid-tWYl1as8yb .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: .5rem;
  margin-bottom: 2px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}
.cid-tWYl1as8yb .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tWYl1as8yb .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tWYl1as8yb .nav-item:focus,
.cid-tWYl1as8yb .nav-link:focus {
  outline: none;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 !important;
  margin: 0 15px !important;
  font-weight: 400;
  transition: all 0.25s;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tWYl1as8yb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWYl1as8yb .navbar {
  transition: all .3s;
  background: #d4ff29;
}
.cid-tWYl1as8yb .navbar.opened {
  transition: all .3s;
  background: #d4ff29 !important;
}
.cid-tWYl1as8yb .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tWYl1as8yb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWYl1as8yb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWYl1as8yb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tWYl1as8yb .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tWYl1as8yb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tWYl1as8yb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tWYl1as8yb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tWYl1as8yb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWYl1as8yb .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tWYl1as8yb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tWYl1as8yb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWYl1as8yb .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tWYl1as8yb .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tWYl1as8yb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWYl1as8yb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tWYl1as8yb .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tWYl1as8yb .navbar.navbar-short {
  background: #d4ff29 !important;
  min-height: 60px;
}
.cid-tWYl1as8yb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tWYl1as8yb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tWYl1as8yb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWYl1as8yb .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tWYl1as8yb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWYl1as8yb .dropdown-item.active,
.cid-tWYl1as8yb .dropdown-item:active {
  background-color: transparent;
}
.cid-tWYl1as8yb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4ff29;
}
.cid-tWYl1as8yb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tWYl1as8yb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWYl1as8yb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWYl1as8yb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYl1as8yb .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tWYl1as8yb a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tWYl1as8yb .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tWYl1as8yb .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tWYl1as8yb .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWYl1as8yb .navbar {
    height: 77px;
  }
  .cid-tWYl1as8yb .navbar.opened {
    height: auto;
  }
  .cid-tWYl1as8yb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWYl1as8yb .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tXgpSVsA4a {
  padding: 60px;
  background-color: #000000;
}
@media (max-width: 768px) {
  .cid-tXgpSVsA4a {
    padding: 26px;
  }
}
@media (max-width: 768px) {
  .cid-tXgpSVsA4a .container {
    padding: 26px;
  }
}
.cid-tXgpSVsA4a .container-fluid,
.cid-tXgpSVsA4a .container {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/doc-40-copy.webp");
  background-size: cover;
}
.cid-tXgpSVsA4a .container-fluid .mbr-fallback-image.disabled,
.cid-tXgpSVsA4a .container .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXgpSVsA4a .container-fluid .mbr-fallback-image,
.cid-tXgpSVsA4a .container .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXgpSVsA4a .title-wrapper {
  position: relative;
  padding-top: 35%;
}
.cid-tXgpSVsA4a .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tXgpSVsA4a .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tXgpSVsA4a .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-tXgpSVsA4a .mbr-section-title {
  color: #ffffff;
}
.cid-tXgpSVsA4a .mbr-text {
  color: #010101;
  text-align: center;
}
.cid-tXgpSVsA4a .mbr-section-title,
.cid-tXgpSVsA4a .mbr-section-btn {
  color: #010101;
  text-align: center;
}
.cid-tVJ9HujfvH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tVJ9HujfvH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVJ9HujfvH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tVJ9HujfvH .container {
    padding: 0 15px;
  }
}
.cid-tVJ9HujfvH .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tVJ9HujfvH .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tVJ9HujfvH .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tVJ9HujfvH .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tVJ9HujfvH .mbr-section-title {
  color: #ffffff;
}
.cid-tVJ9HujfvH .mbr-text {
  color: #d2d2df;
}
.cid-tVJ9HujfvH .mbr-name {
  color: #f2ac2b;
}
.cid-t2YW8wTxz2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d4ff29;
}
.cid-t2YW8wTxz2 .row {
  align-items: center;
  width: 100%;
}
.cid-t2YW8wTxz2 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YW8wTxz2 .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-t2YW8wTxz2 .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-t2YW8wTxz2 .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t2YW8wTxz2 .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-t2YW8wTxz2 .content-container {
    padding: 2rem !important;
  }
}
.cid-t2YW8wTxz2 .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-t2YW8wTxz2 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .img-container {
    padding-left: 0;
  }
}
.cid-t2YW8wTxz2 .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-t2YW8wTxz2 .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-t2YW8wTxz2 .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .text-container {
    padding-right: 0;
  }
}
.cid-t2YW8wTxz2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YW8wTxz2 .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-t2YW8wTxz2 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2YW8wTxz2 .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-t2YW8wTxz2 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-t2ZkCfcHJd {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #d4ff29;
}
.cid-t2ZkCfcHJd .row {
  align-items: center;
  width: 100%;
}
.cid-t2ZkCfcHJd .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #f3f4ef;
}
@media (max-width: 767px) {
  .cid-t2ZkCfcHJd .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-t2ZkCfcHJd .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2ZkCfcHJd .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-t2ZkCfcHJd .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-t2ZkCfcHJd .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2ZkCfcHJd .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1B1F0A;
}
.cid-t2ZkCfcHJd .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2ZkCfcHJd .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-t2ZkCfcHJd .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-t2ZkCfcHJd .btn-container {
  width: 100%;
}
.cid-t2ZkCfcHJd .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-t2ZkCfcHJd .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-t2ZkCfcHJd .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-t2ZkCfcHJd .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-t2ZkCfcHJd .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-t2ZkCfcHJd .mbr-section-title,
.cid-t2ZkCfcHJd .mbr-section-btn DIV {
  text-align: left;
}
.cid-tVJci2wTqU {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #04063f;
}
.cid-tVJci2wTqU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVJci2wTqU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVJci2wTqU .col-img {
  display: flex;
  flex-direction: column;
}
.cid-tVJci2wTqU .mbr-description {
  color: #f3f4ef;
}
.cid-tVJci2wTqU .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tVJci2wTqU .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-tXcsjXndzd {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ddff55;
}
.cid-tXcsjXndzd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXcsjXndzd h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-tXcsjXndzd h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #714bf2;
  z-index: -1;
}
.cid-tXcsjXndzd h1 a:hover {
  color: inherit !important;
}
.cid-tXcsjXndzd .subtitle-wrap {
  background: white;
  width: fit-content;
  border: 2px dashed currentColor;
  border-radius: 5px;
  padding: 0.5rem 0.5rem;
  margin-bottom: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-tXcsjXndzd .subtitle-wrap span {
  margin: 0 1rem;
}
.cid-tXcsjXndzd .subtitle-wrap .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tXcsjXndzd .arrow {
  background: #714bf2;
  border-radius: 50%;
  padding: 5px;
  color: white;
  font-size: 1rem !important;
  border: 1px dashed black;
}
.cid-tXcsjXndzd img {
  border-radius: 1rem;
}
.cid-tXcsjXndzd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXcsjXndzd .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tXcsjXndzd .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tXcsjXndzd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tXcsjXndzd .mbr-section-title {
  color: #101303;
}
.cid-tXcsjXndzd .mbr-text,
.cid-tXcsjXndzd .mbr-section-btn {
  color: #010101;
}
.cid-tXcsjXndzd .mbr-section-subtitle,
.cid-tXcsjXndzd .subtitle-wrap,
.cid-tXcsjXndzd .subtitle-align-wrap {
  color: #19303d;
}
.cid-tVJaQmj7es {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #04063f;
}
.cid-tVJaQmj7es .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVJaQmj7es .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVJaQmj7es .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .container {
    padding: 0 30px;
  }
}
.cid-tVJaQmj7es .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tVJaQmj7es .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #f3f4ef;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tVJaQmj7es .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tVJaQmj7es .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVJaQmj7es .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tVJaQmj7es .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tVJaQmj7es .mbr-section-title {
  color: #ffffff;
}
.cid-tVJaQmj7es .mbr-card-title {
  color: #2b2b2b;
}
.cid-tVJaQmj7es .mbr-text {
  color: #4E4E4E;
}
.cid-tVJaQmj7es .mbr-number {
  color: #FE5115;
}
.cid-uO1wnN8660 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uO1wnN8660 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO1wnN8660 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uO1wnN8660 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uO1wnN8660 .row {
  flex-direction: row-reverse;
}
.cid-uO1wnN8660 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uO1wnN8660 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uO1wnN8660 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uO1wnN8660 .mbr-section-title {
  color: #000000;
}
.cid-uO1wnN8660 .mbr-text,
.cid-uO1wnN8660 .mbr-section-btn {
  color: #000000;
}
.cid-tVGBbMLiAt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #04063f;
}
.cid-tVGBbMLiAt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVGBbMLiAt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVGBbMLiAt .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tVGBbMLiAt .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tVGBbMLiAt .container {
    padding: 0;
  }
}
.cid-tVGBbMLiAt .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVGBbMLiAt .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tVGBbMLiAt .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tVGBbMLiAt .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tVGBbMLiAt .mbr-section-title {
  color: #ffffff;
}
.cid-tVGBbMLiAt .mbr-text {
  color: #ffffff;
}
.cid-uO4USaGign {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d4ff29;
}
.cid-uO4USaGign .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4USaGign .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO4USaGign .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #714bf2;
  margin-bottom: 2rem;
}
.cid-uO4USaGign .card-wrapper {
  padding: 3rem;
  background: #04063f;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uO4USaGign .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uO4USaGign .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uO4USaGign .card-title {
  color: #ffffff;
}
.cid-tVJeTZO2GE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #d4ff29;
}
.cid-tVJeTZO2GE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVJeTZO2GE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVJeTZO2GE .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-tVJeTZO2GE .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tVJeTZO2GE .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tVJeTZO2GE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVJeTZO2GE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tVJeTZO2GE .google-map:hover {
  filter: grayscale(0);
}
.cid-tVJeTZO2GE .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uO1sRFg728 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uO1sRFg728 .mbr-text {
  color: #1B1F0A;
}
.cid-uO1sRFg728 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tWYl1as8yb {
  min-height: 101px !important;
  background: #d4ff29;
  overflow: visible;
}
.cid-tWYl1as8yb .nav-item,
.cid-tWYl1as8yb .nav-link,
.cid-tWYl1as8yb .navbar-caption {
  font-weight: normal;
}
.cid-tWYl1as8yb .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-tWYl1as8yb .nav-link:before,
.cid-tWYl1as8yb .soc-item a:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  transition: .45s ease;
}
.cid-tWYl1as8yb .nav-item:hover .nav-link:before,
.cid-tWYl1as8yb .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-tWYl1as8yb .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-tWYl1as8yb .dropdown-toggle::after,
.cid-tWYl1as8yb .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: .5rem;
  margin-bottom: 2px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}
.cid-tWYl1as8yb .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-tWYl1as8yb .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-tWYl1as8yb .nav-item:focus,
.cid-tWYl1as8yb .nav-link:focus {
  outline: none;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 !important;
  margin: 0 15px !important;
  font-weight: 400;
  transition: all 0.25s;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tWYl1as8yb .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tWYl1as8yb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWYl1as8yb .navbar {
  transition: all .3s;
  background: #d4ff29;
}
.cid-tWYl1as8yb .navbar.opened {
  transition: all .3s;
  background: #d4ff29 !important;
}
.cid-tWYl1as8yb .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-tWYl1as8yb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWYl1as8yb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWYl1as8yb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-tWYl1as8yb .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-tWYl1as8yb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-tWYl1as8yb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-tWYl1as8yb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tWYl1as8yb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWYl1as8yb .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-tWYl1as8yb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tWYl1as8yb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWYl1as8yb .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-tWYl1as8yb .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-tWYl1as8yb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWYl1as8yb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tWYl1as8yb .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tWYl1as8yb .navbar.navbar-short {
  background: #d4ff29 !important;
  min-height: 60px;
}
.cid-tWYl1as8yb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-tWYl1as8yb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tWYl1as8yb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWYl1as8yb .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-tWYl1as8yb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWYl1as8yb .dropdown-item.active,
.cid-tWYl1as8yb .dropdown-item:active {
  background-color: transparent;
}
.cid-tWYl1as8yb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4ff29;
}
.cid-tWYl1as8yb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-tWYl1as8yb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWYl1as8yb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWYl1as8yb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tWYl1as8yb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tWYl1as8yb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWYl1as8yb .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-tWYl1as8yb a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-tWYl1as8yb .mbr-iconfont {
  color: #e6d0f2;
}
.cid-tWYl1as8yb .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-tWYl1as8yb .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWYl1as8yb .navbar {
    height: 77px;
  }
  .cid-tWYl1as8yb .navbar.opened {
    height: auto;
  }
  .cid-tWYl1as8yb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWYl1as8yb .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-tVH5KD0Wcg {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tVH5KD0Wcg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVH5KD0Wcg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tVH5KD0Wcg .container {
    padding: 0 15px;
  }
}
.cid-tVH5KD0Wcg .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-tVH5KD0Wcg .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tVH5KD0Wcg .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-tVH5KD0Wcg .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tVH5KD0Wcg .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVH5KD0Wcg .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tVH5KD0Wcg .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tVH5KD0Wcg .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-tVH5KD0Wcg .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-tVH5KD0Wcg .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #4568ae;
  box-shadow: 10px 10px 50px #0b4dd2;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-tVH5KD0Wcg .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-tVH5KD0Wcg .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-tVH5KD0Wcg .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-tVH5KD0Wcg .mbr-section-title {
  color: #ffffff;
}
.cid-tVH5KD0Wcg .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-tVH5KD0Wcg .mbr-text {
  color: #d2d2df;
}
.cid-tVH6bOtS1D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-tVH6bOtS1D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVH6bOtS1D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tVH6bOtS1D .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tVH6bOtS1D .container {
    padding: 0 12px;
  }
}
.cid-tVH6bOtS1D .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVH6bOtS1D .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tVH6bOtS1D .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tVH6bOtS1D .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tVH6bOtS1D .mbr-section-title {
  color: #1D1D1F;
}
.cid-tVH6bOtS1D .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tVH6bOtS1D .mbr-section-title,
.cid-tVH6bOtS1D .mbr-section-btn {
  text-align: center;
}
.cid-uO4Z7pk0z4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d4ff29;
}
.cid-uO4Z7pk0z4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4Z7pk0z4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO4Z7pk0z4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #714bf2;
  margin-bottom: 2rem;
}
.cid-uO4Z7pk0z4 .card-wrapper {
  padding: 3rem;
  background: #04063f;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uO4Z7pk0z4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uO4Z7pk0z4 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uO4Z7pk0z4 .card-title {
  color: #ffffff;
}
.cid-uO4Z7YoKUq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #d4ff29;
}
.cid-uO4Z7YoKUq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4Z7YoKUq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO4Z7YoKUq .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-uO4Z7YoKUq .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uO4Z7YoKUq .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uO4Z7YoKUq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uO4Z7YoKUq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uO4Z7YoKUq .google-map:hover {
  filter: grayscale(0);
}
.cid-uO4Z7YoKUq .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uO1sRFg728 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uO1sRFg728 .mbr-text {
  color: #1B1F0A;
}
.cid-uO1sRFg728 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uO4ZbUSVs5 {
  min-height: 101px !important;
  background: #d4ff29;
  overflow: visible;
}
.cid-uO4ZbUSVs5 .nav-item,
.cid-uO4ZbUSVs5 .nav-link,
.cid-uO4ZbUSVs5 .navbar-caption {
  font-weight: normal;
}
.cid-uO4ZbUSVs5 .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-uO4ZbUSVs5 .nav-link:before,
.cid-uO4ZbUSVs5 .soc-item a:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  transition: .45s ease;
}
.cid-uO4ZbUSVs5 .nav-item:hover .nav-link:before,
.cid-uO4ZbUSVs5 .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-uO4ZbUSVs5 .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-uO4ZbUSVs5 .dropdown-toggle::after,
.cid-uO4ZbUSVs5 .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: .5rem;
  margin-bottom: 2px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}
.cid-uO4ZbUSVs5 .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-uO4ZbUSVs5 .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-uO4ZbUSVs5 .nav-item:focus,
.cid-uO4ZbUSVs5 .nav-link:focus {
  outline: none;
}
.cid-uO4ZbUSVs5 .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-uO4ZbUSVs5 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 !important;
  margin: 0 15px !important;
  font-weight: 400;
  transition: all 0.25s;
}
.cid-uO4ZbUSVs5 .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-uO4ZbUSVs5 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uO4ZbUSVs5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uO4ZbUSVs5 .navbar {
  transition: all .3s;
  background: #d4ff29;
}
.cid-uO4ZbUSVs5 .navbar.opened {
  transition: all .3s;
  background: #d4ff29 !important;
}
.cid-uO4ZbUSVs5 .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-uO4ZbUSVs5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uO4ZbUSVs5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uO4ZbUSVs5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-uO4ZbUSVs5 .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-uO4ZbUSVs5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-uO4ZbUSVs5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-uO4ZbUSVs5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-uO4ZbUSVs5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uO4ZbUSVs5 .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-uO4ZbUSVs5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uO4ZbUSVs5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uO4ZbUSVs5 .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-uO4ZbUSVs5 .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-uO4ZbUSVs5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uO4ZbUSVs5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uO4ZbUSVs5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-uO4ZbUSVs5 .navbar.navbar-short {
  background: #d4ff29 !important;
  min-height: 60px;
}
.cid-uO4ZbUSVs5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-uO4ZbUSVs5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uO4ZbUSVs5 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-uO4ZbUSVs5 .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-uO4ZbUSVs5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO4ZbUSVs5 .dropdown-item.active,
.cid-uO4ZbUSVs5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uO4ZbUSVs5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4ff29;
}
.cid-uO4ZbUSVs5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-uO4ZbUSVs5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uO4ZbUSVs5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uO4ZbUSVs5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uO4ZbUSVs5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uO4ZbUSVs5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uO4ZbUSVs5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uO4ZbUSVs5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uO4ZbUSVs5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uO4ZbUSVs5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uO4ZbUSVs5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uO4ZbUSVs5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uO4ZbUSVs5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uO4ZbUSVs5 .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-uO4ZbUSVs5 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-uO4ZbUSVs5 .mbr-iconfont {
  color: #e6d0f2;
}
.cid-uO4ZbUSVs5 .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-uO4ZbUSVs5 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uO4ZbUSVs5 .navbar {
    height: 77px;
  }
  .cid-uO4ZbUSVs5 .navbar.opened {
    height: auto;
  }
  .cid-uO4ZbUSVs5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uO4ZbUSVs5 .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-uO4ZbVbeaq {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uO4ZbVbeaq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4ZbVbeaq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uO4ZbVbeaq .container {
    padding: 0 15px;
  }
}
.cid-uO4ZbVbeaq .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uO4ZbVbeaq .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uO4ZbVbeaq .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-uO4ZbVbeaq .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uO4ZbVbeaq .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uO4ZbVbeaq .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uO4ZbVbeaq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uO4ZbVbeaq .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uO4ZbVbeaq .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-uO4ZbVbeaq .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #4568ae;
  box-shadow: 10px 10px 50px #0b4dd2;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-uO4ZbVbeaq .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-uO4ZbVbeaq .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-uO4ZbVbeaq .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uO4ZbVbeaq .mbr-section-title {
  color: #ffffff;
}
.cid-uO4ZbVbeaq .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-uO4ZbVbeaq .mbr-text {
  color: #d2d2df;
}
.cid-uO4ZbVsoR5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uO4ZbVsoR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4ZbVsoR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uO4ZbVsoR5 .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uO4ZbVsoR5 .container {
    padding: 0 12px;
  }
}
.cid-uO4ZbVsoR5 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uO4ZbVsoR5 .content-wrapper {
    padding: 0 24px;
  }
}
.cid-uO4ZbVsoR5 .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uO4ZbVsoR5 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uO4ZbVsoR5 .mbr-section-title {
  color: #1D1D1F;
}
.cid-uO4ZbVsoR5 .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-uO4ZbVsoR5 .mbr-section-title,
.cid-uO4ZbVsoR5 .mbr-section-btn {
  text-align: center;
}
.cid-uO4ZbVMmvn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d4ff29;
}
.cid-uO4ZbVMmvn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4ZbVMmvn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO4ZbVMmvn .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #714bf2;
  margin-bottom: 2rem;
}
.cid-uO4ZbVMmvn .card-wrapper {
  padding: 3rem;
  background: #04063f;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uO4ZbVMmvn .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uO4ZbVMmvn .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uO4ZbVMmvn .card-title {
  color: #ffffff;
}
.cid-uO4ZbW7XWT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #d4ff29;
}
.cid-uO4ZbW7XWT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4ZbW7XWT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO4ZbW7XWT .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-uO4ZbW7XWT .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uO4ZbW7XWT .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uO4ZbW7XWT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uO4ZbW7XWT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uO4ZbW7XWT .google-map:hover {
  filter: grayscale(0);
}
.cid-uO4ZbW7XWT .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uO4ZbWrD2b {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uO4ZbWrD2b .mbr-text {
  color: #1B1F0A;
}
.cid-uO4ZbWrD2b .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uO4ZdaMVcC {
  min-height: 101px !important;
  background: #d4ff29;
  overflow: visible;
}
.cid-uO4ZdaMVcC .nav-item,
.cid-uO4ZdaMVcC .nav-link,
.cid-uO4ZdaMVcC .navbar-caption {
  font-weight: normal;
}
.cid-uO4ZdaMVcC .nav-link {
  position: relative;
  line-height: 40px;
}
.cid-uO4ZdaMVcC .nav-link:before,
.cid-uO4ZdaMVcC .soc-item a:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  right: 0;
  transition: .45s ease;
}
.cid-uO4ZdaMVcC .nav-item:hover .nav-link:before,
.cid-uO4ZdaMVcC .soc-item:hover a:before {
  height: 2px;
  background-color: #a0a218;
  margin-top: 2px;
}
.cid-uO4ZdaMVcC .dropdown-toggle {
  margin: 0 15px !important;
}
.cid-uO4ZdaMVcC .dropdown-toggle::after,
.cid-uO4ZdaMVcC .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: .5rem;
  margin-bottom: 2px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}
.cid-uO4ZdaMVcC .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}
.cid-uO4ZdaMVcC .btn {
  height: 40px;
  margin: 0 9px;
  font-weight: 500;
}
.cid-uO4ZdaMVcC .nav-item:focus,
.cid-uO4ZdaMVcC .nav-link:focus {
  outline: none;
}
.cid-uO4ZdaMVcC .dropdown .dropdown-menu {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.cid-uO4ZdaMVcC .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 !important;
  margin: 0 15px !important;
  font-weight: 400;
  transition: all 0.25s;
}
.cid-uO4ZdaMVcC .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-uO4ZdaMVcC .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uO4ZdaMVcC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uO4ZdaMVcC .navbar {
  transition: all .3s;
  background: #d4ff29;
}
.cid-uO4ZdaMVcC .navbar.opened {
  transition: all .3s;
  background: #d4ff29 !important;
}
.cid-uO4ZdaMVcC .navbar .navbar-collapse {
  justify-content: space-around;
  z-index: 1;
}
.cid-uO4ZdaMVcC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uO4ZdaMVcC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uO4ZdaMVcC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 2rem - 1rem);
  }
}
.cid-uO4ZdaMVcC .navbar.collapsed .nav-dropdown .dropdown-menu {
  padding: .25rem 0;
}
.cid-uO4ZdaMVcC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
  padding: .75rem 0;
}
.cid-uO4ZdaMVcC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
  padding: .5rem;
}
.cid-uO4ZdaMVcC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-uO4ZdaMVcC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uO4ZdaMVcC .navbar .nav-dropdown .dropdown-menu {
    padding: .25rem 0;
  }
  .cid-uO4ZdaMVcC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uO4ZdaMVcC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uO4ZdaMVcC .navbar .navbar-logo img {
    height: 3.6rem !important;
    display: inline-block !important;
    width: auto !important;
  }
  .cid-uO4ZdaMVcC .navbar ul.navbar-nav {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .cid-uO4ZdaMVcC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uO4ZdaMVcC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uO4ZdaMVcC .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-uO4ZdaMVcC .navbar.navbar-short {
  background: #d4ff29 !important;
  min-height: 60px;
}
.cid-uO4ZdaMVcC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  display: inline-block !important;
  width: auto !important;
}
.cid-uO4ZdaMVcC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uO4ZdaMVcC .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-uO4ZdaMVcC .navbar-brand .navbar-caption {
  line-height: 40px !important;
}
.cid-uO4ZdaMVcC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uO4ZdaMVcC .dropdown-item.active,
.cid-uO4ZdaMVcC .dropdown-item:active {
  background-color: transparent;
}
.cid-uO4ZdaMVcC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d4ff29;
}
.cid-uO4ZdaMVcC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  border-radius: 4px;
}
.cid-uO4ZdaMVcC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uO4ZdaMVcC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uO4ZdaMVcC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uO4ZdaMVcC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uO4ZdaMVcC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uO4ZdaMVcC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uO4ZdaMVcC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uO4ZdaMVcC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uO4ZdaMVcC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uO4ZdaMVcC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uO4ZdaMVcC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uO4ZdaMVcC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uO4ZdaMVcC .navbar-dropdown {
  padding: 30px 15px;
  position: relative;
}
.cid-uO4ZdaMVcC a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 15px !important;
}
.cid-uO4ZdaMVcC .mbr-iconfont {
  color: #e6d0f2;
}
.cid-uO4ZdaMVcC .soc-item {
  padding: 0 15px;
  position: relative;
  line-height: 40px;
}
.cid-uO4ZdaMVcC .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uO4ZdaMVcC .navbar {
    height: 77px;
  }
  .cid-uO4ZdaMVcC .navbar.opened {
    height: auto;
  }
  .cid-uO4ZdaMVcC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uO4ZdaMVcC .navbar-dropdown .navbar-logo img {
  display: inline-block;
  width: auto;
}
.cid-uO4Zdb2Rws {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uO4Zdb2Rws .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4Zdb2Rws .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uO4Zdb2Rws .container {
    padding: 0 15px;
  }
}
.cid-uO4Zdb2Rws .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-uO4Zdb2Rws .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uO4Zdb2Rws .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-uO4Zdb2Rws .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uO4Zdb2Rws .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uO4Zdb2Rws .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uO4Zdb2Rws .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uO4Zdb2Rws .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uO4Zdb2Rws .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-uO4Zdb2Rws .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #4568ae;
  box-shadow: 10px 10px 50px #0b4dd2;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-uO4Zdb2Rws .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-uO4Zdb2Rws .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-uO4Zdb2Rws .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uO4Zdb2Rws .mbr-section-title {
  color: #ffffff;
}
.cid-uO4Zdb2Rws .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-uO4Zdb2Rws .mbr-text {
  color: #d2d2df;
}
.cid-uO4Zdbgiqg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uO4Zdbgiqg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4Zdbgiqg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uO4Zdbgiqg .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uO4Zdbgiqg .container {
    padding: 0 12px;
  }
}
.cid-uO4Zdbgiqg .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uO4Zdbgiqg .content-wrapper {
    padding: 0 24px;
  }
}
.cid-uO4Zdbgiqg .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uO4Zdbgiqg .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uO4Zdbgiqg .mbr-section-title {
  color: #1D1D1F;
}
.cid-uO4Zdbgiqg .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-uO4Zdbgiqg .mbr-section-title,
.cid-uO4Zdbgiqg .mbr-section-btn {
  text-align: center;
}
.cid-uO4Zdby6Lv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d4ff29;
}
.cid-uO4Zdby6Lv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4Zdby6Lv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO4Zdby6Lv .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #714bf2;
  margin-bottom: 2rem;
}
.cid-uO4Zdby6Lv .card-wrapper {
  padding: 3rem;
  background: #04063f;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uO4Zdby6Lv .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uO4Zdby6Lv .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uO4Zdby6Lv .card-title {
  color: #ffffff;
}
.cid-uO4ZdbP5YN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #d4ff29;
}
.cid-uO4ZdbP5YN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO4ZdbP5YN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO4ZdbP5YN .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
  border-radius: 2rem;
}
.cid-uO4ZdbP5YN .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uO4ZdbP5YN .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uO4ZdbP5YN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uO4ZdbP5YN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uO4ZdbP5YN .google-map:hover {
  filter: grayscale(0);
}
.cid-uO4ZdbP5YN .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uO4Zdc8LIj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uO4Zdc8LIj .mbr-text {
  color: #1B1F0A;
}
.cid-uO4Zdc8LIj .media-container-row .mbr-text {
  color: #ffffff;
}
