body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.06rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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: #ffffff !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary:before {
  background-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #07c222 !important;
  border-color: #07c222 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #07c222 !important;
  border-color: #07c222 !important;
}
.btn-secondary:before {
  background-color: #047815 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #047815 !important;
  border-color: #047815 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger:before {
  background-color: #c9c9c9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-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,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-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,
.btn-primary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080;
  border-color: #ffffff;
}
.btn-primary-outline:before {
  background-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #036011;
  color: #036011;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #07c222;
}
.btn-secondary-outline:before {
  background-color: #07c222;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #07c222 !important;
  border-color: #07c222 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #707070;
  border-color: #efefef;
}
.btn-danger-outline:before {
  background-color: #efefef;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-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;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #07c222 !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #036011 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #bcbcbc !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: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.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: #b083d5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ffffff;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ffffff;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.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-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #000000 !important;
  background-color: #ffffff !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: #07c222 !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='%23ffffff' %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-uDfDIsaj7g .navbar {
  padding: .5rem 0;
  background: #4284df;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-uDfDIsaj7g .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-uDfDIsaj7g .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-uDfDIsaj7g .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDfDIsaj7g .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uDfDIsaj7g .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uDfDIsaj7g .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uDfDIsaj7g .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uDfDIsaj7g .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uDfDIsaj7g .navbar-dropdown.bg-color.transparent.opened {
  background: #4284df;
}
.cid-uDfDIsaj7g a {
  font-style: normal;
}
.cid-uDfDIsaj7g .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uDfDIsaj7g .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uDfDIsaj7g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-uDfDIsaj7g .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uDfDIsaj7g .content-text {
  margin-bottom: 0;
}
.cid-uDfDIsaj7g .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uDfDIsaj7g .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uDfDIsaj7g .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uDfDIsaj7g .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uDfDIsaj7g .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uDfDIsaj7g .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uDfDIsaj7g .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uDfDIsaj7g .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uDfDIsaj7g .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uDfDIsaj7g .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uDfDIsaj7g .nav-dropdown .link {
  font-weight: 400;
}
.cid-uDfDIsaj7g .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uDfDIsaj7g .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uDfDIsaj7g .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uDfDIsaj7g .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-uDfDIsaj7g .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-uDfDIsaj7g .menu-content-top.show {
  display: block;
}
.cid-uDfDIsaj7g .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-uDfDIsaj7g .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-uDfDIsaj7g .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uDfDIsaj7g .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uDfDIsaj7g .dropdown-item:before {
    display: none;
  }
  .cid-uDfDIsaj7g .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-uDfDIsaj7g .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-uDfDIsaj7g img {
    height: 3.8rem !important;
  }
  .cid-uDfDIsaj7g .btn {
    display: flex;
  }
  .cid-uDfDIsaj7g button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uDfDIsaj7g .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uDfDIsaj7g .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uDfDIsaj7g .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uDfDIsaj7g .navbar-collapse.collapsing,
  .cid-uDfDIsaj7g .navbar-collapse.show {
    display: block !important;
  }
  .cid-uDfDIsaj7g .navbar-collapse.collapsing .navbar-nav,
  .cid-uDfDIsaj7g .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uDfDIsaj7g .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uDfDIsaj7g .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uDfDIsaj7g .navbar-collapse.collapsing .navbar-buttons,
  .cid-uDfDIsaj7g .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uDfDIsaj7g .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uDfDIsaj7g .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uDfDIsaj7g .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uDfDIsaj7g .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uDfDIsaj7g .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uDfDIsaj7g .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-uDfDIsaj7g .navbar .menu-content-top {
    display: block;
  }
  .cid-uDfDIsaj7g .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-uDfDIsaj7g .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uDfDIsaj7g .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-uDfDIsaj7g .menu-bottom {
    display: flex;
  }
  .cid-uDfDIsaj7g .navbar {
    display: block;
    padding: 0;
  }
  .cid-uDfDIsaj7g .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uDfDIsaj7g .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uDfDIsaj7g .navbar-toggler {
    display: none;
  }
}
.cid-uDfDIsaj7g .navbar-short .menu-content-top {
  border: none;
}
.cid-uDfDIsaj7g .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDfDIsaj7g .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uDfDIsaj7g .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-uDfDIsaj7g .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uDfDIsaj7g .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uDfDIsaj7g .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uDfDIsaj7g .dropdown .dropdown-menu {
  background: #4284df;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uDfDIsaj7g .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uDfDIsaj7g .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uDfDIsaj7g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uDfDIsaj7g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uDfDIsaj7g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uDfDIsaj7g .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-uDfDIsaj7g .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uDfDIsaj7g .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDfDIsaj7g .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uDfDIsaj7g .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uDfDIsaj7g .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uDfDIsaj7g .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uDfDIsaj7g .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uDfDIsaj7g .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uDfDIsaj7g button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-uDfDIsaj7g button.navbar-toggler:focus {
  outline: none;
}
.cid-uDfDIsaj7g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uDfDIsaj7g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uDfDIsaj7g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uDfDIsaj7g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uDfDIsaj7g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uDfDIsaj7g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uDfDIsaj7g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uDfDIsaj7g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uDfDIsaj7g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uDfDIsaj7g .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uDfDIsaj7g .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDfDIsaj7g .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uDfDIsaj7g .collapsed .btn {
  display: flex;
}
.cid-uDfDIsaj7g .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uDfDIsaj7g .collapsed .navbar-collapse.collapsing,
.cid-uDfDIsaj7g .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uDfDIsaj7g .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uDfDIsaj7g .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uDfDIsaj7g .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uDfDIsaj7g .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uDfDIsaj7g .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uDfDIsaj7g .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uDfDIsaj7g .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uDfDIsaj7g .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uDfDIsaj7g .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 1rem);
  }
  .cid-uDfDIsaj7g .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uDfDIsaj7g .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uDfDIsaj7g .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uDfDIsaj7g .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uDfDIsaj7g .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-uDfDIsaj7g .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uDfDIsaj7g .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uDfDIsaj7g .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uDfDIsaj7g .collapsed .dropdown-item:before {
  display: none;
}
.cid-uDfDIsaj7g .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uDfDIsaj7g .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uDfDIsaj7g .nav-link:focus {
  outline: none;
}
.cid-uDfDIsaj7g .navbar-toggler {
  position: relative;
}
.cid-uDfDIsaj7g .dropdown-item.active,
.cid-uDfDIsaj7g .dropdown-item:active {
  background-color: #4284df;
  color: auto;
}
.cid-uDfDIsaj7g .nav-link:hover,
.cid-uDfDIsaj7g .dropdown-item:hover {
  color: #4284df;
}
.cid-uDfDJ8UgwM {
  padding-top: 180px;
  background-image: url("../../../assets/images/captura-de-pantalla-2025-02-19-a-las-9.17.51a.m.-1600x1264.png");
}
.cid-uDfDJ8UgwM .container {
  margin-bottom: 15%;
}
.cid-uDfDJ8UgwM .content-container .btn-bgr {
  z-index: 0;
}
.cid-uDfDJ8UgwM .container-boxes {
  padding-bottom: 135px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-uDfDJ8UgwM .box-item {
  width: calc(33.3% - 5rem);
  padding: 2.5rem;
}
.cid-uDfDJ8UgwM .box-item:first-child {
  background-color: #6c9cdf;
  margin-top: -200px;
}
.cid-uDfDJ8UgwM .box-item:nth-child(2) {
  background-color: #4284df;
}
.cid-uDfDJ8UgwM .box-item:last-child {
  background-color: #0c57bf;
}
.cid-uDfDJ8UgwM .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-uDfDJ8UgwM .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-uDfDJ8UgwM .box-list li:last-child {
  border-bottom: none;
}
.cid-uDfDJ8UgwM .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-uDfDJ8UgwM .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-uDfDJ8UgwM .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-uDfDJ8UgwM .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-uDfDJ8UgwM .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-uDfDJ8UgwM .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-uDfDJ8UgwM .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-uDfDJ8UgwM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDfDJ8UgwM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDfDJ8UgwM H1 {
  color: #ffffff;
}
.cid-uDfIDAalK9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-uDfIDAalK9 .images-container.container-fluid {
  padding: 0;
}
.cid-uDfIDAalK9 .media-container-row {
  margin: 0 auto;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDfIDAalK9 .media-container-row .img-item {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uDfIDAalK9 .media-container-row .img-item img {
  width: 100%;
}
.cid-uDfIDAalK9 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.cid-uDfIDAalK9 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-uDfIDAalK9 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
.cid-uDfIDAalK9 .media-container-row .img-item.item1 .img-caption {
  right: 2rem;
}
@media (max-width: 992px) {
  .cid-uDfIDAalK9 .img-item {
    width: 100% !important;
  }
  .cid-uDfIDAalK9 .img-item.item1 {
    width: 100%;
    -webkit-flex-basis: initial !important;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDfIDAalK9 .media-container-row .img-item {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.cid-uDfJSejMqh {
  padding-top: 180px;
  background-image: url("../../../assets/images/whatsapp-image-2025-01-13-at-09.05.14-1503x1106.jpg");
}
.cid-uDfJSejMqh .container {
  margin-bottom: 15%;
}
.cid-uDfJSejMqh .content-container .btn-bgr {
  z-index: 0;
}
.cid-uDfJSejMqh .container-boxes {
  padding-bottom: 135px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-uDfJSejMqh .box-item {
  width: calc(33.3% - 5rem);
  padding: 2.5rem;
}
.cid-uDfJSejMqh .box-item:first-child {
  background-color: #6c9cdf;
  margin-top: -200px;
}
.cid-uDfJSejMqh .box-item:nth-child(2) {
  background-color: #4284df;
}
.cid-uDfJSejMqh .box-item:last-child {
  background-color: #0c57bf;
}
.cid-uDfJSejMqh .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-uDfJSejMqh .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-uDfJSejMqh .box-list li:last-child {
  border-bottom: none;
}
.cid-uDfJSejMqh .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-uDfJSejMqh .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-uDfJSejMqh .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-uDfJSejMqh .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-uDfJSejMqh .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-uDfJSejMqh .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-uDfJSejMqh .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-uDfJSejMqh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDfJSejMqh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDfJSejMqh H1 {
  color: #ffffff;
}
.cid-uDg1OQ7kHf {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-uDg1OQ7kHf .images-container.container-fluid {
  padding: 0;
}
.cid-uDg1OQ7kHf .media-container-row {
  margin: 0 auto;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDg1OQ7kHf .media-container-row .img-item {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uDg1OQ7kHf .media-container-row .img-item img {
  width: 100%;
}
.cid-uDg1OQ7kHf .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.cid-uDg1OQ7kHf .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-uDg1OQ7kHf .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
.cid-uDg1OQ7kHf .media-container-row .img-item.item1 .img-caption {
  right: 2rem;
}
@media (max-width: 992px) {
  .cid-uDg1OQ7kHf .img-item {
    width: 100% !important;
  }
  .cid-uDg1OQ7kHf .img-item.item1 {
    width: 100%;
    -webkit-flex-basis: initial !important;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDg1OQ7kHf .media-container-row .img-item {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.cid-uDhqDOidUq {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-uDhqDOidUq .images-container.container-fluid {
  padding: 0;
}
.cid-uDhqDOidUq .media-container-row {
  margin: 0 auto;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDhqDOidUq .media-container-row .img-item {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uDhqDOidUq .media-container-row .img-item img {
  width: 100%;
}
.cid-uDhqDOidUq .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.cid-uDhqDOidUq .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-uDhqDOidUq .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
.cid-uDhqDOidUq .media-container-row .img-item.item1 .img-caption {
  right: 2rem;
}
@media (max-width: 992px) {
  .cid-uDhqDOidUq .img-item {
    width: 100% !important;
  }
  .cid-uDhqDOidUq .img-item.item1 {
    width: 100%;
    -webkit-flex-basis: initial !important;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDhqDOidUq .media-container-row .img-item {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.cid-uDhD0xXrj3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2025-01-13-at-09.05.14-1503x1106.jpg");
}
.cid-uDhD0xXrj3 .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #1d2671);
}
.cid-uDhD0xXrj3 h2,
.cid-uDhD0xXrj3 h3,
.cid-uDhD0xXrj3 h4,
.cid-uDhD0xXrj3 p {
  color: #ffffff;
}
.cid-uDhD0xXrj3 .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-uDhD0xXrj3 .text-block {
  border-bottom: 1px solid #767676;
}
.cid-uDhD0xXrj3 .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDhD0xXrj3 .mbr-text {
  color: #767676;
}
.cid-uDhD0xXrj3 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uDhD0xXrj3 .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uDhD0xXrj3 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uDhD0xXrj3 textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-uDhD0xXrj3 h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uDhD0xXrj3 .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-uDhD0xXrj3 .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-uDhD0xXrj3 .google-map {
    padding-bottom: 2rem;
  }
}
.cid-uDhD0xXrj3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDhD0xXrj3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDhq6w9UL4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4284df;
}
.cid-uDhq6w9UL4 p {
  text-align: center;
}
.cid-uDhq6w9UL4 .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uDhq6w9UL4 .btn-underline:hover {
  color: #505050;
}
.cid-uDhq6w9UL4 .btn-underline:before {
  background-color: #505050;
}
.cid-uDhq6w9UL4 .social-list a:focus {
  text-decoration: none;
}
.cid-uDhq6w9UL4 .text-copyright {
  width: 100%;
}
.cid-uDhq6w9UL4 .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-uDhq6w9UL4 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-uDhq6w9UL4 .logo-footer {
  line-height: normal;
}
.cid-uDhq6w9UL4 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDhq6w9UL4 .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uDhq6w9UL4 .mbr-section-btn {
  font-size: 16px;
}
.cid-uDhq6w9UL4 .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
