body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #85E2D8 !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #85E2D8 !important;
  border-color: #85E2D8 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #2f0014 !important;
  border-color: #2f0014 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2f0014 !important;
  border-color: #2f0014 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #cc8f4c !important;
  border-color: #cc8f4c !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #9e682d !important;
  border-color: #9e682d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #9e682d !important;
  border-color: #9e682d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !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: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !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: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #150009;
  color: #150009 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #85E2D8;
  border-color: #85E2D8;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #85E2D8 !important;
  border-color: #85E2D8 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #8b5b27;
  color: #8b5b27 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #cc8f4c;
  border-color: #cc8f4c;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #cc8f4c !important;
  border-color: #cc8f4c !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #85E2D8 !important;
}
.text-secondary {
  color: #cc8f4c !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #150009 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8b5b27 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !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: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #85E2D8;
  border-color: #85E2D8;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #85E2D8;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fb006c;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #85E2D8;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.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 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #85E2D8;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #21B5A5;
  border-bottom-color: #21B5A5;
}
.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: #21B5A5 !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: #cc8f4c !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='%2385E2D8' %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-v0xyQ94ENv .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-v0xyQ94ENv .nav-item,
.cid-v0xyQ94ENv .nav-link,
.cid-v0xyQ94ENv .navbar-caption {
  font-weight: normal;
}
.cid-v0xyQ94ENv .nav-item:focus,
.cid-v0xyQ94ENv .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-v0xyQ94ENv .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-v0xyQ94ENv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-v0xyQ94ENv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0xyQ94ENv .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-v0xyQ94ENv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v0xyQ94ENv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v0xyQ94ENv .dropdown .dropdown-menu .dropdown-item .soc-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-v0xyQ94ENv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0xyQ94ENv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0xyQ94ENv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-v0xyQ94ENv .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-v0xyQ94ENv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-v0xyQ94ENv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-v0xyQ94ENv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0xyQ94ENv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0xyQ94ENv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.7rem);
  }
}
.cid-v0xyQ94ENv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v0xyQ94ENv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0xyQ94ENv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0xyQ94ENv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-v0xyQ94ENv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0xyQ94ENv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-v0xyQ94ENv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-v0xyQ94ENv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0xyQ94ENv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0xyQ94ENv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v0xyQ94ENv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0xyQ94ENv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0xyQ94ENv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-v0xyQ94ENv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-v0xyQ94ENv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0xyQ94ENv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0xyQ94ENv .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v0xyQ94ENv .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-v0xyQ94ENv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-v0xyQ94ENv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
	box-shadow: 0px 0px 10px #2f0014;
}
.cid-v0xyQ94ENv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v0xyQ94ENv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v0xyQ94ENv .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0xyQ94ENv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0xyQ94ENv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0xyQ94ENv .dropdown-item.active,
.cid-v0xyQ94ENv .dropdown-item:active {
  background-color: transparent;
}
.cid-v0xyQ94ENv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0xyQ94ENv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0xyQ94ENv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0xyQ94ENv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0xyQ94ENv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0xyQ94ENv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0xyQ94ENv ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0xyQ94ENv .navbar-buttons {
  text-align: center;
}
.cid-v0xyQ94ENv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0xyQ94ENv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-v0xyQ94ENv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v0xyQ94ENv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v0xyQ94ENv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v0xyQ94ENv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v0xyQ94ENv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0xyQ94ENv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v0xyQ94ENv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v0xyQ94ENv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0xyQ94ENv .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-v0xyQ94ENv a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v0xyQ94ENv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-v0xyQ94ENv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-v0xyQ94ENv .soc-item {
  margin: .5rem .3rem;
}
.cid-v0xyQ94ENv .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v0xyQ94ENv a.nav-link,
.cid-v0xyQ94ENv a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-v0xyQ94ENv a.nav-link .mbr-iconfont-btn,
.cid-v0xyQ94ENv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-v0xyQ94ENv a.nav-link:hover .mbr-iconfont-btn,
.cid-v0xyQ94ENv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-v0xyQ94ENv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0xyQ94ENv .navbar {
    height: 77px;
  }
  .cid-v0xyQ94ENv .navbar.opened {
    height: auto;
  }
  .cid-v0xyQ94ENv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0xyMPLtqU {
  background-image: url("../../../assets/images/84592-2000x1333.jpg");
}
.cid-v0xyMPLtqU .row {
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0xyMPLtqU .form-1 {
  z-index: 1;
  background-color: transparent;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cid-v0xyMPLtqU .form-1 .mbr-overlay {
  z-index: -1;
}
.cid-v0xyMPLtqU .form-group {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-v0xyMPLtqU .form-control {
  color: #ffffff !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-v0xyMPLtqU .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-v0xyMPLtqU .input-group-btn {
  display: block;
  padding-left: 0;
}
.cid-v0xyMPLtqU input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-v0xyMPLtqU input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-v0xyMPLtqU .form-subtitle {
  line-height: 1.6;
  color: #767676;
}
.cid-v0xyMPLtqU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0xyMPLtqU .form-text {
  line-height: 1.6;
  color: #767676;
  margin: 0;
}
@media (min-width: 992px) {
  .cid-v0xyMPLtqU .text-element {
    padding-right: 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v0xyMPLtqU .form-1 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0xyMPLtqU .underline .line {
    height: 2px;
  }
  .cid-v0xyMPLtqU .text-element {
    padding-bottom: 1rem;
  }
  .cid-v0xyMPLtqU .form-1 {
    padding: 2rem;
    margin: 1rem;
  }
  .cid-v0xyMPLtqU .mbr-section-subtitle,
  .cid-v0xyMPLtqU .mbr-section-title,
  .cid-v0xyMPLtqU .mbr-text,
  .cid-v0xyMPLtqU .mbr-section-btn,
  .cid-v0xyMPLtqU .form-title,
  .cid-v0xyMPLtqU .form-subtitle,
  .cid-v0xyMPLtqU .input-group-btn,
  .cid-v0xyMPLtqU .form-text {
    text-align: center !important;
  }
}
.cid-v0xyMPLtqU .form-subtitle,
.cid-v0xyMPLtqU input.field {
  color: #ffffff;
  text-align: center;
}
.cid-v0xyMPLtqU .form-title {
  text-align: center;
}
.cid-v0xyMPLtqU .form-text,
.cid-v0xyMPLtqU .input-group-btn {
  text-align: center;
}
.cid-v0P6uVzF4v {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #85E2D8;
}
.cid-v0P6uVzF4v .mbr-section-subtitle {
  color: #efefef;
}
.cid-v0P6uVzF4v .mbr-section-title {
  color: #ffffff;
}
.cid-v0yDl2X28G {
  background-color: #ffffff;
}
.cid-v0yDl2X28G .text-top {
  color: #767676;
  margin-top: 0.1rem;
}
.cid-v0yDl2X28G .card {
  margin-bottom: 1rem;
}
.cid-v0yDl2X28G .row {
  justify-content: center;
}
.cid-v0yDl2X28G .card-title {
  color: #12265a;
  transition: 0.5s;
}
.cid-v0yDl2X28G .card-title:hover {
  color: #fac769;
}
.cid-v0yDl2X28G img {
  width: 80px;
}
.cid-v0yDl2X28G .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-v0yDl2X28G {
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .cid-v0yDl2X28G .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0yDl2X28G .wrapper-row {
    display: flex;
    flex-direction: column;
  }
  .cid-v0yDl2X28G .card-box1 {
    text-align: center;
    order: 2;
  }
  .cid-v0yDl2X28G .card-box2 {
    text-align: center;
  }
  .cid-v0yDl2X28G .imageContainer {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
  }
  .cid-v0yDl2X28G .card {
    display: flex;
    flex-direction: column;
  }
  .cid-v0yDl2X28G .item-image {
    text-align: center;
  }
  .cid-v0yDl2X28G .card-title {
    margin-top: 2rem;
  }
  .cid-v0yDl2X28G .container {
    padding: 0;
  }
}
@media (min-width: 767px) {
  .cid-v0yDl2X28G {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .cid-v0yDl2X28G .container-fluid {
    padding: 0 1.5rem;
  }
  .cid-v0yDl2X28G .wrapper-row {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .cid-v0yDl2X28G .card-box1 {
    text-align: right;
    margin-right: 2rem;
  }
  .cid-v0yDl2X28G .card-box2 {
    margin-left: 2rem;
    text-align: left;
  }
  .cid-v0yDl2X28G .card-left {
    margin-right: -3rem;
  }
  .cid-v0yDl2X28G .card-right {
    margin-left: -3rem;
  }
  .cid-v0yDl2X28G .card {
    display: flex;
    flex-direction: row;
  }
}
.cid-v0yDl2X28G .circle-img {
  width: 80%;
  height: auto;
  border: 7px solid #85E2D8;
  border-radius: 50%;
  outline-offset: -9px;
  outline: solid 6px #85E2D8;
}
.cid-v0yDl2X28G .imageContainer {
  width: 100%;
}
.cid-v0yDl2X28G .column-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cid-v0yDl2X28G .last-text {
  margin-bottom: 0rem;
}
.cid-v0yDl2X28G .container {
  margin-bottom: 1.5rem;
}
.cid-v0yDl2X28G .container > div,
.cid-v0yDl2X28G .mbr-section-title {
  color: #85E2D8;
}
.cid-v0P8jTKl6o {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #85E2D8;
}
.cid-v0P8jTKl6o .mbr-section-subtitle {
  color: #767676;
}
.cid-v0P8jTKl6o .mbr-section-title {
  color: #ffffff;
}
.cid-v0QvUu6lOW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v0QvUu6lOW .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #85E2D8;
  transition: background 0.3s;
}
.cid-v0QvUu6lOW H2 {
  color: #232323;
}
.cid-v0QvUu6lOW H3 {
  color: #232323;
}
.cid-v0QvUu6lOW .mbr-text,
.cid-v0QvUu6lOW .mbr-section-btn {
  color: #232323;
}
@media (max-width: 992px) {
  .cid-v0QvUu6lOW .md-pb {
    padding-bottom: 2rem;
  }
}
.cid-v0PyCIrbiT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #85E2D8;
}
.cid-v0PyCIrbiT .mbr-section-subtitle {
  color: #767676;
}
.cid-v0PyCIrbiT .mbr-section-title {
  color: #ffffff;
}
.cid-v0Pv81ShQM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 767px) {
  .cid-v0Pv81ShQM .container {
    padding: 1rem;
  }
}
.cid-v0Pv81ShQM .card-box {
  padding: 0 2rem;
}
.cid-v0Pv81ShQM .card {
  padding: 0!important;
}
.cid-v0Pv81ShQM .mbr-section-btn {
  padding-top: 2rem;
}
.cid-v0Pv81ShQM .container-fluid {
  padding: 0;
}
.cid-v0Pv81ShQM .card1 {
  background-image: url("../../../assets/images/6632-2000x1333.jpg");
}
.cid-v0Pv81ShQM .card2 {
  background-image: url("../../../assets/images/29490-1-1499x2000.jpg");
}
.cid-v0Pv81ShQM .card3 {
  background-image: url("../../../assets/images/aerial-view-beautiful-tropical-beach-2000x1498.jpg");
}
.cid-v0Pv81ShQM .card4 {
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-v0Pv81ShQM h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-v0Pv81ShQM p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-v0Pv81ShQM .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-v0Pv81ShQM .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-v0Pv81ShQM .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-v0PGL3wVoX {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #85E2D8;
}
.cid-v0PGL3wVoX .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-v0PGL3wVoX .mbr-section-btn,
  .cid-v0PGL3wVoX .mbr-section-subtitle,
  .cid-v0PGL3wVoX .mbr-section-title {
    text-align: center !important;
  }
}
.cid-v0PI3cr7QB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v0PI3cr7QB .mbr-section-subtitle {
  color: #767676;
}
.cid-v0PI3cr7QB .mbr-section-title {
  color: #85E2D8;
}
.cid-v0PPJXOqT2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0PPJXOqT2 .mbr-text {
    text-align: center;
  }
}
.cid-v0PPJXOqT2 .container-fluid {
  padding: 0;
}
.cid-v0PPJXOqT2 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-v0PPJXOqT2 img {
  height: 100%;
  object-fit: cover;
}
.cid-v0PPJXOqT2 .mbr-figure {
  height: 100%;
}
.cid-v0PPJXOqT2 .col-lg-6 {
  padding: 0;
}
.cid-v0PPJXOqT2 .row {
  margin: 0;
}
.cid-v0PPKIYsjD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #85E2D8;
}
@media (max-width: 767px) {
  .cid-v0PPKIYsjD .mbr-text {
    text-align: center;
  }
}
.cid-v0PPKIYsjD .container-fluid {
  padding: 0;
}
.cid-v0PPKIYsjD .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-v0PPKIYsjD img {
  height: 100%;
  object-fit: cover;
}
.cid-v0PPKIYsjD .mbr-figure {
  height: 100%;
}
.cid-v0PPKIYsjD .col-lg-6 {
  padding: 0;
}
.cid-v0PPKIYsjD .row {
  margin: 0;
}
.cid-v0PPNa80UQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0PPNa80UQ .mbr-text {
    text-align: center;
  }
}
.cid-v0PPNa80UQ .container-fluid {
  padding: 0;
}
.cid-v0PPNa80UQ .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-v0PPNa80UQ img {
  height: 100%;
  object-fit: cover;
}
.cid-v0PPNa80UQ .mbr-figure {
  height: 100%;
}
.cid-v0PPNa80UQ .col-lg-6 {
  padding: 0;
}
.cid-v0PPNa80UQ .row {
  margin: 0;
}
.cid-v0QENVYQ0R {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #85E2D8;
}
.cid-v0QENVYQ0R .mbr-section-subtitle {
  color: #767676;
}
.cid-v0QENVYQ0R .mbr-section-title {
  color: #ffffff;
}
.cid-v0PTaLo2se {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v0PTaLo2se .mbr-section-subtitle {
  color: #232323;
  font-weight: 300;
}
.cid-v0PTaLo2se .number {
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #21B5A5;
  font-size: 3rem;
}
.cid-v0PTaLo2se .period {
  display: block;
  padding-top: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #21B5A5;
}
.cid-v0PTaLo2se .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #85E2D8;
  font-size: 3rem;
}
.cid-v0PTaLo2se .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v0PTaLo2se .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-v0PTaLo2se .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-v0PTaLo2se .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-v0PTaLo2se .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-v0PTaLo2se .number {
    font-size: 25px;
  }
  .cid-v0PTaLo2se .period {
    font-size: 0.7rem;
  }
}
.cid-v0PTaLo2se H2 {
  color: #85E2D8;
}
.cid-v0PT3BcewW {
  padding-top: 300px;
  padding-bottom: 300px;
  background-image: url("../../../assets/images/7463-2000x1500.jpg");
}
.cid-v0PT3BcewW .ico {
  position: absolute;
  right: 30px;
  top: 12px;
  z-index: 100;
}
.cid-v0PT3BcewW .ico span {
  font-size: 1.5rem;
  color: #656565;
}
.cid-v0PT3BcewW .relative {
  position: relative;
}
.cid-v0PT3BcewW .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v0PT3BcewW .jq-selectbox__trigger-arrow {
  display: none;
}
.cid-v0PT3BcewW .jq-selectbox__select {
  padding: 10px 25px;
  min-height: 20px;
  height: 100%;
}
.cid-v0PT3BcewW .form-control {
  min-height: 49px;
  padding: 0;
}
.cid-v0PT3BcewW .form-group {
  text-align: left;
  border: 0px solid #CCC;
  border-radius: 5px;
}
.cid-v0PT3BcewW .jq-selectbox li.selected {
  background-color: #1ec6b6;
}
.cid-v0PT3BcewW .jq-selectbox li:hover {
  background-color: #1ec6b6;
}
.cid-v0PT3BcewW .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #1ec6b6;
}
.cid-v0PT3BcewW .mbr-iconfont-btn {
  margin: 0;
}
.cid-v0PT3BcewW .jq-selectbox__dropdown {
  top: 45px!important;
}
.cid-v0PT3BcewW input.form-control {
  padding: 10px 25px;
  min-height: 49px;
}
.cid-v0PT3BcewW input.form-control:focus {
  outline: none;
  box-shadow: 0;
}
.cid-v0PT3BcewW input.form-control:active {
  outline: none;
  box-shadow: 0;
}
.cid-v0PT3BcewW .input-group-btn .btn {
  margin: 0!important;
  border-radius: 5px;
  height: 49px;
  display: block;
  width: 100%;
}
.cid-v0PT3BcewW .input-group-btn {
  max-width: 260px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v0PT3BcewW .form-group {
    margin-bottom: 2rem;
  }
  .cid-v0PT3BcewW .align-left {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .cid-v0PT3BcewW .input-group-btn {
    margin: auto;
  }
}
.cid-v0PT3BcewW .mbr-section-title {
  text-align: center;
}
.cid-v0PT3BcewW .mbr-section-sub-title {
  color: #ececec;
  text-align: center;
}
.cid-v0PWEMNB4z {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0PWEMNB4z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v0PWEMNB4z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0PWEMNB4z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0PWEMNB4z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v0PWEMNB4z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #85E2D8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #85E2D8, #fac769) !important;
}
.cid-v0PWEMNB4z .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-v0PWEMNB4z .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-v0PWEMNB4z .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-v0PWEMNB4z .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-v0PWEMNB4z .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-v0PWEMNB4z .mbr-gallery-filter ul {
  display: block;
}
.cid-v0PWEMNB4z .mbr-gallery-filter ul li {
  position: relative;
}
.cid-v0PWEMNB4z .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-v0PWEMNB4z .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-v0PWEMNB4z .mbr-gallery-filter li.active::after,
.cid-v0PWEMNB4z .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-v0PWEMNB4z .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-v0PWEMNB4z .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-v0PWEMNB4z .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-v0PWEMNB4z .icon-focus:before {
  content: '\e95e';
}
.cid-v0PWEMNB4z .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-v0PWEMNB4z .mbr-section-title {
  margin: 0;
}
.cid-v0PWEMNB4z .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-v0PWEMNB4z .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-v0PWEMNB4z .mbr-section-title,
.cid-v0PWEMNB4z .underline {
  color: #85E2D8;
}
.cid-v0PXBckAHV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0PXBckAHV .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v0PXBckAHV .carousel-item.active,
.cid-v0PXBckAHV .carousel-item-next,
.cid-v0PXBckAHV .carousel-item-prev {
  display: flex;
}
.cid-v0PXBckAHV .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-v0PXBckAHV .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  background: #85E2D8;
  opacity: .9;
}
.cid-v0PXBckAHV .carousel-controls a:hover span {
  opacity: 1;
}
.cid-v0PXBckAHV .user_image {
  width: 170px;
  height: 170px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #85E2D8;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-v0PXBckAHV .user_image .user_image_inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-v0PXBckAHV .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-v0PXBckAHV .user_text {
  color: #767676;
}
.cid-v0PXBckAHV .user {
  margin: 1rem;
}
@media (min-width: 992px) {
  .cid-v0PXBckAHV .user {
    padding: 2rem 3rem;
  }
}
@media (max-width: 230px) {
  .cid-v0PXBckAHV .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-v0PXBckAHV .mbr-section-title {
  color: #85E2D8;
}
.cid-v0QunNy35b {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/44024-2000x1121.jpg");
}
.cid-v0QunNy35b .card-wrapper {
  z-index: 3;
}
.cid-v0QunNy35b .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-v0QunNy35b:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-v0QunNy35b .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-v0QunNy35b .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-v0QunNy35b .text-block {
  text-align: right !important;
}
.cid-v0QtEhNyeD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v0QtEhNyeD .card-box {
  z-index: 10;
  position: relative;
}
.cid-v0QtEhNyeD .link-wrap {
  width: 100%;
}
.cid-v0QtEhNyeD .link {
  display: inline-block;
}
.cid-v0QtEhNyeD .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  font-weight: 600;
}
.cid-v0QtEhNyeD .link a:hover {
  text-decoration: underline;
}
.cid-v0QtEhNyeD .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-v0QtEhNyeD .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-v0QtEhNyeD .card-wrapper {
  background-position: center;
  padding: 2rem 5rem;
  background: #64002b1c;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
	border-radius: 21px;
}
.cid-v0QtEhNyeD .link,
.cid-v0QtEhNyeD .link-wrap {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v0QtEhNyeD .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0QtEhNyeD .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v0QBfpHf7j {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #85E2D8;
}
.cid-v0QBfpHf7j h2,
.cid-v0QBfpHf7j h3,
.cid-v0QBfpHf7j h4,
.cid-v0QBfpHf7j p {
  color: #ffffff;
}
.cid-v0QBfpHf7j .mbr-overlay {
  z-index: -1;
}
.cid-v0QBfpHf7j .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-v0QBfpHf7j .form-control {
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
}
.cid-v0QBfpHf7j .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-v0QBfpHf7j .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-v0QBfpHf7j .mbr-text {
  color: #767676;
}
.cid-v0QBfpHf7j .form-block {
  padding: 3rem;
  position: relative;
}
.cid-v0QBfpHf7j .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-v0QBfpHf7j .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-v0QBfpHf7j a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-v0QBfpHf7j .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-v0QBfpHf7j .input-group-btn {
  display: block;
  text-align: center;
}
.cid-v0QBfpHf7j textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-v0QBfpHf7j .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-v0QBfpHf7j .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-v0QBfpHf7j .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0QBfpHf7j h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-v0QBfpHf7j .block-content {
    padding: 0;
  }
  .cid-v0QBfpHf7j .form-block {
    padding: 1rem;
  }
}
.cid-v0QC7Omhba {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-v0QC7Omhba .media-container-row .mbr-text {
  text-align: justify;
}
.cid-v0QH3lCAtn.popup-builder {
  background-color: #ffffff;
}
.cid-v0QH3lCAtn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v0QH3lCAtn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v0QH3lCAtn .modal-content,
.cid-v0QH3lCAtn .modal-dialog {
  height: auto;
}
.cid-v0QH3lCAtn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v0QH3lCAtn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v0QH3lCAtn .form-wrapper .mbr-form .form-group,
  .cid-v0QH3lCAtn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v0QH3lCAtn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v0QH3lCAtn .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0QH3lCAtn .mbr-text {
  text-align: center;
}
.cid-v0QH3lCAtn .pt-0 {
  padding-top: 0 !important;
}
.cid-v0QH3lCAtn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v0QH3lCAtn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v0QH3lCAtn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v0QH3lCAtn .modal-open {
  overflow: hidden;
}
.cid-v0QH3lCAtn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v0QH3lCAtn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v0QH3lCAtn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v0QH3lCAtn .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v0QH3lCAtn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v0QH3lCAtn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v0QH3lCAtn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v0QH3lCAtn .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v0QH3lCAtn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v0QH3lCAtn .modal-backdrop.fade {
  opacity: 0;
}
.cid-v0QH3lCAtn .modal-backdrop.show {
  opacity: .5;
}
.cid-v0QH3lCAtn .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-v0QH3lCAtn .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v0QH3lCAtn .modal-header .close:hover {
  opacity: 1;
}
.cid-v0QH3lCAtn .modal-header .close:focus {
  outline: none;
}
.cid-v0QH3lCAtn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v0QH3lCAtn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-v0QH3lCAtn .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-v0QH3lCAtn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v0QH3lCAtn .modal-dialog {
    max-width: 80%;
    margin: 1.75rem auto;
    width: auto;
    margin: 1.75rem auto;
  }
  .cid-v0QH3lCAtn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v0QH3lCAtn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v0QH3lCAtn .modal-sm {
    max-width: 300px;
  }
  .cid-v0QH3lCAtn .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-v0QH3lCAtn .modal-lg,
  .cid-v0QH3lCAtn .modal-xl {
    max-width: 800px;
  }
  .cid-v0QH3lCAtn .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-v0QH3lCAtn .modal-xl {
    max-width: 1140px;
  }
  .cid-v0QH3lCAtn .container {
    max-width: 1140px;
  }
}
.cid-v0QH3lCAtn .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v0QH3lCAtn .container {
    max-width: 720px;
  }
}
.cid-v0QH3lCAtn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v0QH3lCAtn .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v0QH3lCAtn .form-group {
  margin-bottom: 1rem;
}
.cid-v0QH3lCAtn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v0QH3lCAtn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v0QH3lCAtn .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
#features04-b .mbr-section-btn a:first-child{margin-right:15px !important;}


.cid-v0Rc7dQhAD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0Rc7dQhAD .row-element,
.cid-v0Rc7dQhAD .image-element {
  padding: 0;
}
.cid-v0Rc7dQhAD .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v0Rc7dQhAD .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v0Rc7dQhAD .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v0Rc7dQhAD .text-content {
    padding: 2rem 1rem;
  }
  .cid-v0Rc7dQhAD .mbr-title,
  .cid-v0Rc7dQhAD .mbr-text,
  .cid-v0Rc7dQhAD .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v0Rc7dQhAD .mbr-text,
.cid-v0Rc7dQhAD .mbr-section-btn {
  color: #232323;
}
.cid-v0Rc7dQhAD .mbr-title {
  color: #21B5A5;
}

.cid-v0RhlWl8c1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0RhlWl8c1 .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-v0RhlWl8c1 .modal-body .close {
  background: #1b1b1b;
}
.cid-v0RhlWl8c1 .modal-body .close span {
  font-style: normal;
}
.cid-v0RhlWl8c1 .carousel-inner > .active,
.cid-v0RhlWl8c1 .carousel-inner > .next,
.cid-v0RhlWl8c1 .carousel-inner > .prev {
  display: flex;
}
.cid-v0RhlWl8c1 .carousel-control .icon-next,
.cid-v0RhlWl8c1 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-v0RhlWl8c1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0RhlWl8c1 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v0RhlWl8c1 .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-v0RhlWl8c1 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-v0RhlWl8c1 .boxed-slider > div {
  position: relative;
}
.cid-v0RhlWl8c1 .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-v0RhlWl8c1 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-v0RhlWl8c1 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-v0RhlWl8c1 .mbr-table-cell {
  padding: 0;
}
.cid-v0RhlWl8c1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v0RhlWl8c1 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-v0RhlWl8c1 .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-v0RhlWl8c1 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-v0RhlWl8c1 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-v0RhlWl8c1 .carousel-item .container {
    width: 100%;
  }
}
.cid-v0RhlWl8c1 .carousel-item-next.carousel-item-left,
.cid-v0RhlWl8c1 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-v0RhlWl8c1 .active.carousel-item-right,
.cid-v0RhlWl8c1 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-v0RhlWl8c1 .active.carousel-item-left,
.cid-v0RhlWl8c1 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-v0RhlWl8c1 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-v0RhlWl8c1 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0RhlWl8c1 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0RhlWl8c1 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-v0RhlWl8c1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0RhlWl8c1 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v0RhlWl8c1 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-v0RhlWl8c1 .mbr-slider .carousel-indicators li.active,
.cid-v0RhlWl8c1 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-v0RhlWl8c1 .mbr-slider .carousel-indicators li::after,
.cid-v0RhlWl8c1 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-v0RhlWl8c1 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-v0RhlWl8c1 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-v0RhlWl8c1 .mbr-slider > .container img {
  width: 100%;
}
.cid-v0RhlWl8c1 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-v0RhlWl8c1 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-v0RhlWl8c1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v0RhlWl8c1 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-v0RhlWl8c1 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-v0RhlWl8c1 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-v0RhlWl8c1 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-v0RhlWl8c1 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-v0RhlWl8c1 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-v0RhlWl8c1 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-v0RhlWl8c1 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-v0RhlWl8c1 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-v0RhlWl8c1 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-v0RhlWl8c1 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-v0RhlWl8c1 .carousel-inner {
  height: 100%;
}
.cid-v0RhlWl8c1 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-v0RhlWl8c1 .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 540px;
  overflow: hidden;
}
.cid-v0RhlWl8c1 .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-v0RhlWl8c1 .content-slider-wrap {
  width: 100%;
}
.cid-v0RhlWl8c1 H2 {
  text-align: justify;
}
.cid-v0RhlWl8c1 P {
  text-align: justify;
}

.cid-v0RiGBiZvR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0RiGBiZvR .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-v0RiGBiZvR .row-element,
.cid-v0RiGBiZvR .image-element {
  padding: 0;
}
.cid-v0RiGBiZvR .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v0RiGBiZvR .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v0RiGBiZvR .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v0RiGBiZvR .text-content {
    padding: 2rem 1rem;
  }
  .cid-v0RiGBiZvR .mbr-title,
  .cid-v0RiGBiZvR .mbr-text,
  .cid-v0RiGBiZvR .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v0RiGBiZvR .mbr-text,
.cid-v0RiGBiZvR .mbr-section-btn {
  color: #232323;
}
.cid-v0RiGBiZvR .mbr-title {
  color: #21B5A5;
}

.cid-v0Rjw3mcBV {
  overflow: hidden !important;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(to right, #85E2D8 0%, #85E2D8 30%, #85E2D8 30%, #85E2D8 100%);
}
.cid-v0Rjw3mcBV .animated-element {
  color: #ffffff;
}
.cid-v0Rjw3mcBV .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0Rjw3mcBV .mbr-section-subtitle {
  color: #cc8f4c;
}
@media (min-width: 992px) {
  .cid-v0Rjw3mcBV .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0Rjw3mcBV .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-v0Rjw3mcBV {
    background: #85E2D8;
  }
  .cid-v0Rjw3mcBV .img-block {
    padding-bottom: 2rem;
  }
}

.cid-v0RmNA49Xg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0RmNA49Xg .card-title {
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.cid-v0RmNA49Xg .card {
  margin-bottom: 2rem;
  owerflow: hidden;
  max-height: 250px;
}
.cid-v0RmNA49Xg .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-v0RmNA49Xg .card:hover .card-wrapper:before {
  opacity: 0.8;
  background: #cc8f4c;
}
.cid-v0RmNA49Xg .card-wrapper {
  overflow: hidden;
  position: relative;
}
.cid-v0RmNA49Xg .card-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
   
  z-index: 10;
  pointer-events: none;
}
.cid-v0RmNA49Xg .big {
  margin-top: -25%;
}
.cid-v0RmNA49Xg .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-v0RmNA49Xg .card-box {
  position: absolute;
  overflow: hidden;
  height: fit-content;
  margin: auto;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v0RmNA49Xg .mbr-section-title {
  color: #656565;
  text-align: center;
}
.cid-v0RmNA49Xg .card-sub-title {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-v0RmNA49Xg .small {
    margin-top: -25%;
  }
}
.cid-v0RmNA49Xg .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}

.cid-v0RdtdcKbZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #85E2D8;
}
.cid-v0RdtdcKbZ .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-v0RdtdcKbZ .mbr-section-btn,
  .cid-v0RdtdcKbZ .mbr-section-subtitle,
  .cid-v0RdtdcKbZ .mbr-section-title {
    text-align: center !important;
  }
}

.cid-v0Rda9Itc2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #85E2D8;
}
.cid-v0Rda9Itc2 .mbr-section-subtitle {
  color: #767676;
}
.cid-v0Rda9Itc2 .mbr-section-title {
  color: #ffffff;
}

.cid-v0RqvkaKIB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0RqvkaKIB .mbr-text {
  color: #767676;
}
.cid-v0RqvkaKIB .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-v0RqvkaKIB .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v0RqvkaKIB .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-v0RqvkaKIB .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-v0RqvkaKIB .card-text {
  padding-top: 2rem;
  color: #232323;
}
.cid-v0RqvkaKIB .card-box {
  padding-bottom: 1rem;
}
.cid-v0RqvkaKIB .num {
  color: #ffedcc;
}
@media (max-width: 767px) {
  .cid-v0RqvkaKIB .num,
  .cid-v0RqvkaKIB .card-title,
  .cid-v0RqvkaKIB .mbr-text,
  .cid-v0RqvkaKIB .mbr-title,
  .cid-v0RqvkaKIB .mbr-section-subtitle,
  .cid-v0RqvkaKIB .mbr-section-btn,
  .cid-v0RqvkaKIB .mbr-section-title {
    text-align: center !important;
  }
  .cid-v0RqvkaKIB .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v0RqvkaKIB .mbr-section-title {
  text-align: center;
  color: #21B5A5;
}
.cid-v0RqvkaKIB .card-title,
.cid-v0RqvkaKIB .card-img {
  color: #21B5A5;
}

.cid-v0RrhOGiWx {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0RrhOGiWx .mbr-section-subtitle {
  color: #767676;
}
.cid-v0RrhOGiWx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v0RrhOGiWx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0RrhOGiWx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0RrhOGiWx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v0RrhOGiWx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #7b0035;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #21B5A5, #cc8f4c);
}
.cid-v0RrhOGiWx .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-v0RrhOGiWx .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v0RrhOGiWx .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-v0RrhOGiWx .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v0RrhOGiWx .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-v0RrhOGiWx ul {
  font-size: 0;
}
.cid-v0RrhOGiWx .mbr-gallery-filter ul {
  text-align: left;
}
.cid-v0RrhOGiWx .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-v0RrhOGiWx .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-v0RrhOGiWx .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-v0RrhOGiWx .mbr-gallery-filter ul li:first-child,
.cid-v0RrhOGiWx .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-v0RrhOGiWx .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-v0RrhOGiWx .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-v0RrhOGiWx .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-v0RrhOGiWx .btn.active:after {
  animation: none;
}
.cid-v0RrhOGiWx .btn:active {
  box-shadow: none !important;
}
.cid-v0RrhOGiWx .btn:hover {
  background: transparent !important;
}
.cid-v0RrhOGiWx .btn:hover:before {
  background: transparent !important;
}
.cid-v0RrhOGiWx .btn:before {
  background-color: transparent !important;
}
.cid-v0RrhOGiWx .btn:focus {
  box-shadow: none !important;
}

.cid-v0RtEx1gFY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #85E2D8;
}
.cid-v0RtEx1gFY .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-v0RtEx1gFY .row-element,
.cid-v0RtEx1gFY .image-element {
  padding: 0;
}
.cid-v0RtEx1gFY .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v0RtEx1gFY .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v0RtEx1gFY .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v0RtEx1gFY .text-content {
    padding: 2rem 1rem;
  }
  .cid-v0RtEx1gFY .mbr-title,
  .cid-v0RtEx1gFY .underline,
  .cid-v0RtEx1gFY .mbr-text,
  .cid-v0RtEx1gFY .mbr-section-btn {
    text-align: center !important;
  }
}

.mbr-mytxt {color: #14554E;}


.cid-v0RcFThex7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v0RcFThex7 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #3EB5A5;
  transition: background 0.3s;
}
.cid-v0RcFThex7 H2 {
  color: #21B5A5;
}
.cid-v0RcFThex7 H3 {
  color: #21B5A5;
}
.cid-v0RcFThex7 .mbr-text,
.cid-v0RcFThex7 .mbr-section-btn {
  color: #21B5A5;
}
@media (max-width: 992px) {
  .cid-v0RcFThex7 .md-pb {
    padding-bottom: 2rem;
  }
}

.cid-v0TcXldC8v {
  padding-top: 60px;
  padding-bottom: 60px;
    
}
.cid-v0TcXldC8v .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v0TcXldC8v .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-v0TcXldC8v .mbr-section-subtitle {
  color: #767676;
}
.cid-v0TcXldC8v .panel-group {
  width: 100%;
}
.cid-v0TcXldC8v .panel-text {
  color: #232323;
}
.cid-v0TcXldC8v .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-v0TcXldC8v .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-v0TcXldC8v .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #85e2d8;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-v0TcXldC8v .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-v0TcXldC8v .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0TcXldC8v .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-v0TcXldC8v .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  color: #11645b;
}
.cid-v0TcXldC8v .card .panel-body {
  background: #efefef;
}
.cid-v0TfA4c9b1 {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-v0TfA4c9b1 .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-v0TfA4c9b1 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-v0TfA4c9b1 .image-block:hover:before {
  opacity: 0.4;
}
.cid-v0TfA4c9b1 .image-block:hover .wrap {
  opacity: 1;
}
.cid-v0TfA4c9b1 .image-block:hover img {
  transform: scale(1.05);
}
.cid-v0TfA4c9b1 h4 {
  letter-spacing: 2px;
}
.cid-v0TfA4c9b1 figcaption {
  position: relative;
}
.cid-v0TfA4c9b1 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-v0TfA4c9b1 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-v0TfA4c9b1 .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v0TfA4c9b1 .image-block {
    height: 400px;
  }
}


.cid-v0Ti6zfVZR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0Ti6zfVZR .mbr-section-subtitle {
  color: #767676;
}

.cid-v0Th6VEphT {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0Th6VEphT {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
.cid-v0Th6VEphT img {
  width: 100%;
  border-radius: 50%;
}
.cid-v0Th6VEphT h3 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-v0Th6VEphT .img-wrapper {
    display: none;
  }
  .cid-v0Th6VEphT .img-wrapper-2 {
    display: none;
  }
  .cid-v0Th6VEphT .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0Th6VEphT .content-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
  }
  .cid-v0Th6VEphT .content-row-2 {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }
  .cid-v0Th6VEphT .content-row-3 {
    margin-top: 1.8rem;
  }
  .cid-v0Th6VEphT .content-row-4 {
    margin-top: 2rem;
  }
  .cid-v0Th6VEphT .imageContainer {
    display: flex;
    justify-content: center;
  }
  .cid-v0Th6VEphT .imageContainer-2 {
    display: flex;
    justify-content: center;
  }
  .cid-v0Th6VEphT .right-wrapper {
    text-align: left;
    padding-left: 4rem;
  }
  .cid-v0Th6VEphT .left-wrapper {
    text-align: left;
    padding-left: 4rem;
  }
  .cid-v0Th6VEphT .mbr-section-title {
    text-align: left;
  }
  .cid-v0Th6VEphT .content-row:hover .tlv__pointer::after {
    transform: scale(1);
  }
  .cid-v0Th6VEphT .content-row-2:hover .tlv__pointer-2::after {
    transform: scale(1);
  }
  .cid-v0Th6VEphT .tlv__pointer {
    opacity: 1;
    transform: translateX(0);
    order: 2;
    position: absolute;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 3px solid #fac769;
    background: #ffffff;
    top: -100px;
    left: 8px;
  }
  .cid-v0Th6VEphT .tlv__pointer::after {
    z-index: 1;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    transform: scale(0);
    content: '';
    position: absolute;
    background: #fac769;
    transition: 0.5s;
    left: 5px;
    bottom: 5px;
  }
  .cid-v0Th6VEphT .tlv__pointer-2 {
    opacity: 1;
    transform: translateX(0);
    order: 2;
    position: absolute;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 3px solid #fac769;
    background: #ffffff;
    top: 50px;
    left: 8px;
  }
  .cid-v0Th6VEphT .tlv__pointer-2::after {
    z-index: 1;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    transform: scale(0);
    content: '';
    position: absolute;
    background: #fac769;
    transition: 0.5s;
    left: 5px;
    bottom: 5px;
  }
  .cid-v0Th6VEphT .container-fluid::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
    background: #fac769;
  }
  .cid-v0Th6VEphT .tlv__item-first {
    position: relative;
    z-index: 1;
    left: -52px;
    width: 18px;
    height: 18px;
    background: #fac769;
    transform: rotate(45deg);
    top: -20px;
  }
  .cid-v0Th6VEphT .tlv__item-first2 {
    position: absolute;
    z-index: 1;
    left: 13px;
    width: 18px;
    height: 18px;
    background: #fac769;
    transform: rotate(45deg);
    bottom: -20px;
  }
}
@media (min-width: 767px) {
  .cid-v0Th6VEphT .right-wrapper {
    text-align: right;
    padding-right: 5rem;
  }
  .cid-v0Th6VEphT .content-row {
    display: flex;
    flex-direction: row;
    position: relative;
  }
  .cid-v0Th6VEphT .content-row-2 {
    margin-top: 3.5rem;
  }
  .cid-v0Th6VEphT .content-row-3 {
    margin-top: 3.5rem;
  }
  .cid-v0Th6VEphT .content-row-4 {
    margin-top: 3.5rem;
  }
  .cid-v0Th6VEphT .content-row:hover .tlv__pointer::after {
    transform: scale(1);
  }
  .cid-v0Th6VEphT .content-row-2:hover .tlv__pointer-2::after {
    transform: scale(1);
  }
  .cid-v0Th6VEphT .img-wrapper {
    margin-left: 43px;
  }
  .cid-v0Th6VEphT .tlv__pointer {
    opacity: 1;
    transform: translateX(0);
    order: 2;
    position: relative;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 3px solid #21B5A5;
    background: #ffffff;
    top: 0px;
    left: -290px;
  }
  .cid-v0Th6VEphT .tlv__pointer::before {
    content: '';
    top: 8px;
    width: 47px;
    height: 3px;
    left: 21px;
    position: absolute;
    background: #21B5A5;
  }
  .cid-v0Th6VEphT .tlv__pointer::after {
    z-index: 1;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    transform: scale(0);
    content: '';
    position: absolute;
    background: #21B5A5;
    transition: 0.5s;
    left: 5px;
    bottom: 5px;
  }
  .cid-v0Th6VEphT .tlv__pointer-2 {
    opacity: 1;
    transform: translateX(0);
    order: 2;
    position: relative;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 3px solid #21B5A5;
    background: #ffffff;
    top: 100px;
    right: -30px;
  }
  .cid-v0Th6VEphT .tlv__pointer-2::before {
    content: '';
    top: 8px;
    width: 47px;
    height: 3px;
    left: -50px;
    position: absolute;
    background: #21B5A5;
  }
  .cid-v0Th6VEphT .tlv__pointer-2::after {
    z-index: 1;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    transform: scale(0);
    content: '';
    position: absolute;
    background: #21B5A5;
    transition: 0.5s;
    left: 5px;
    bottom: 5px;
  }
  .cid-v0Th6VEphT .container-fluid::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #21B5A5;
  }
  .cid-v0Th6VEphT .tlv__item-first {
    position: absolute;
    z-index: 1;
    top: -34px;
    right: -11px;
    width: 18px;
    height: 18px;
    background: #21B5A5;
    transform: rotate(45deg);
  }
  .cid-v0Th6VEphT .left-wrapper {
    text-align: left;
    padding-left: 5rem;
  }
  .cid-v0Th6VEphT .img-wrapper-2 {
    margin-right: 16px;
  }
  .cid-v0Th6VEphT .tlv__item-first2 {
    position: absolute;
    z-index: 1;
    left: 49%;
    width: 18px;
    height: 18px;
    background: #21B5A5;
    transform: rotate(45deg);
    bottom: -18px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v0Th6VEphT .tlv__item-first2 {
    left: 49.5%;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .cid-v0Th6VEphT .tlv__item-first2 {
    left: 49.5%;
  }
}
@media (min-width: 1400px) {
  .cid-v0Th6VEphT .tlv__item-first2 {
    left: 49.6%;
  }
}
.cid-v0Th6VEphT .mbr-section-title {
  color: #45b3df;
}
.cid-v0Th6VEphT .content-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-v0Th6VEphT .content-row-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-v0Th6VEphT .imageContainer {
  position: relative;
  display: flex;
  align-items: center;
}
.cid-v0Th6VEphT .imageContainer-2 {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.cid-v0Th6VEphT .img-wrapper {
  width: 220px;
  height: 220px;
  position: relative;
  border: 2px solid #21B5A5;
  border-radius: 50%;
  transition: 0.5s;
}
.cid-v0Th6VEphT .img-wrapper-2 {
  width: 220px;
  height: 220px;
  position: relative;
  border: 2px solid #21B5A5;
  border-radius: 50%;
  transition: 0.5s;
}
.cid-v0Th6VEphT .content-row:hover .img-wrapper {
  padding: 12px;
  border: 2px dashed #21B5A5;
}
.cid-v0Th6VEphT .content-row-2:hover .img-wrapper-2 {
  padding: 12px;
  border: 2px dashed #21B5A5;
}
.cid-v0Th6VEphT .mbr-section-title-1 {
  color: #21B5A5;
}
.cid-v0Th6VEphT .mbr-section-title-2 {
  color: #21B5A5;
}

.cid-v0TnIgGXCr {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}

.cid-v0TnXF7tzS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0TnXF7tzS .mbr-section-subtitle {
  color: #767676;
}
.cid-v0TnXF7tzS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v0TnXF7tzS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0TnXF7tzS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0TnXF7tzS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v0TnXF7tzS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #7b0035;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #85E2D8, #fac769);
}
.cid-v0TnXF7tzS .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-v0TnXF7tzS .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v0TnXF7tzS .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-v0TnXF7tzS .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v0TnXF7tzS .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-v0TnXF7tzS ul {
  font-size: 0;
}
.cid-v0TnXF7tzS .mbr-gallery-filter ul {
  text-align: left;
}
.cid-v0TnXF7tzS .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-v0TnXF7tzS .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-v0TnXF7tzS .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-v0TnXF7tzS .mbr-gallery-filter ul li:first-child,
.cid-v0TnXF7tzS .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-v0TnXF7tzS .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-v0TnXF7tzS .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-v0TnXF7tzS .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-v0TnXF7tzS .btn.active:after {
  animation: none;
}
.cid-v0TnXF7tzS .btn:active {
  box-shadow: none !important;
}
.cid-v0TnXF7tzS .btn:hover {
  background: transparent !important;
}
.cid-v0TnXF7tzS .btn:hover:before {
  background: transparent !important;
}
.cid-v0TnXF7tzS .btn:before {
  background-color: transparent !important;
}
.cid-v0TnXF7tzS .btn:focus {
  box-shadow: none !important;
}



.cid-v0Tp9sYkHt {
  padding-top: 60px;
  padding-bottom: 60px;
  
}
.cid-v0Tp9sYkHt .container-fluid {
  padding: 0 3rem;
}
.cid-v0Tp9sYkHt .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #7b0035, #cc8f4c);
  display: inline-block;
}
.cid-v0Tp9sYkHt .card {
  display: block;
}
.cid-v0Tp9sYkHt .card .card-wrapper {
  height: 1%;
}
.cid-v0Tp9sYkHt .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-v0Tp9sYkHt .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-v0Tp9sYkHt .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-v0Tp9sYkHt .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0Tp9sYkHt .prices {
  color: #ffffff;
}
.cid-v0Tp9sYkHt .oldPrice {
  text-decoration: line-through;
}
.cid-v0Tp9sYkHt .oldPrice,
.cid-v0Tp9sYkHt .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-v0Tp9sYkHt .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0Tp9sYkHt .text-row {
    padding-bottom: 1rem;
  }
}

.cid-v0TtvlO0bu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v0TtvlO0bu .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-v0TtvlO0bu .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-v0TtvlO0bu .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v0TtvlO0bu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v0TtvlO0bu .text-element {
  padding: 1rem;
}
.cid-v0TtvlO0bu .main,
.cid-v0TtvlO0bu .main-reverse {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-v0TtvlO0bu .main:first-child {
    padding-top: 1rem;
  }
  .cid-v0TtvlO0bu .image-element,
  .cid-v0TtvlO0bu .text-element {
    margin-bottom: 1rem;
  }
  .cid-v0TtvlO0bu .main-reverse {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-v0TtvlO0bu .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-v0TtvlO0bu .image-element,
  .cid-v0TtvlO0bu .text-element {
    margin-bottom: 0;
  }
  .cid-v0TtvlO0bu .main:first-child {
    padding-top: 0;
  }
}

.cid-v0TuWKkfSe {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v0TuWKkfSe h4 {
  display: flex;
  color: #000000;
}
.cid-v0TuWKkfSe .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-v0TuWKkfSe .wrap {
  display: flex;
}
.cid-v0TuWKkfSe .icon {
  background: #FAC769;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  color: white!important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-v0TuWKkfSe img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-v0TuWKkfSe .mbr-section-title {
  color: #333333;
  text-align: center;
}
.cid-v0TuWKkfSe p {
  margin: 0;
}
.cid-v0TuWKkfSe .card .card-header a.panel-title {
  background-color: none!important;
  margin-top: 0px!important;
}
.cid-v0TuWKkfSe .mbr-section-subtitle {
  font-weight: 500;
  color: #232323;
  text-align: center;
}
.cid-v0TuWKkfSe .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-v0TuWKkfSe .panel-group {
  width: 100%;
}
.cid-v0TuWKkfSe .panel-title {
  border-bottom: 1px solid #ececec;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-v0TuWKkfSe .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-v0TuWKkfSe .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #85e2d87d;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
    border-radius: 10px;
}
.cid-v0TuWKkfSe .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-v0TuWKkfSe .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0TuWKkfSe .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-v0TuWKkfSe .card .panel-body {
  background: #ffffff;
}
.cid-v0TuWKkfSe .sign {
  color: #000000;
}
.cid-v0TuWKkfSe .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v0TuWKkfSe .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-v0TuWKkfSe .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-v0TuWKkfSe .header-text,
.cid-v0TuWKkfSe .sign {
  color: #333333;
}
.card-header {
   
  background-color: #fff;
   
}

.cid-v0Tw8I1sdH {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #21B5A5;
}
.cid-v0Tw8I1sdH h2,
.cid-v0Tw8I1sdH h3,
.cid-v0Tw8I1sdH h4,
.cid-v0Tw8I1sdH p {
  color: #ffffff;
}
.cid-v0Tw8I1sdH .mbr-overlay {
  z-index: -1;
}
.cid-v0Tw8I1sdH .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-v0Tw8I1sdH .form-control {
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
}
.cid-v0Tw8I1sdH .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-v0Tw8I1sdH .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-v0Tw8I1sdH .mbr-text {
  color: #767676;
}
.cid-v0Tw8I1sdH .form-block {
  padding: 3rem;
  position: relative;
}
.cid-v0Tw8I1sdH .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-v0Tw8I1sdH .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-v0Tw8I1sdH a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-v0Tw8I1sdH .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-v0Tw8I1sdH .input-group-btn {
  display: block;
  text-align: center;
}
.cid-v0Tw8I1sdH textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-v0Tw8I1sdH .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-v0Tw8I1sdH .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-v0Tw8I1sdH .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0Tw8I1sdH h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-v0Tw8I1sdH .block-content {
    padding: 0;
  }
  .cid-v0Tw8I1sdH .form-block {
    padding: 1rem;
  }
}

#dropmenudiv {background-color: #fff;}
#dropmenudiv a {clear: both;
  display: block; color:#21B5A5;}

.titletext > span:first-child {
  display: block;
    font-weight:700;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
     text-shadow: 0px 0px 10px #fff, 0px 0px 8px #fff, 0px 0px 9px #fff;
  }
}

#content01-1j h3 {text-transform: uppercase;
  padding-top: 15px;
  font-weight: 700;}
  
#features11-26 h1, h2, h3, h4 {text-transform: uppercase;
  padding-top: 5px;
  font-weight: 700; color: #21B5A5;}
  
  #form3 .mbr-text {color:#fff;}
  
  
  .cid-v2US75euzB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v2US75euzB .card {
  display: block;
  position: relative;
}
.cid-v2US75euzB .card .card-wrapper {
  background: #fac769;
  height: 1%;
}
.cid-v2US75euzB .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-v2US75euzB .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-v2US75euzB .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #85e2d8;
}
.cid-v2US75euzB .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-v2US75euzB .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-v2US75euzB .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-v2US75euzB .img-text {
  color: #245550;
}
.cid-v2US75euzB .mbr-title {
  color: #245550;
}