body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Noto Serif', serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Noto Serif', serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Noto Serif', serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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.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-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-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: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 10px 15px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #00695c !important;
}
.bg-success {
  background-color: #daa520 !important;
}
.bg-info {
  background-color: #004d40 !important;
}
.bg-warning {
  background-color: #fcfcfc !important;
}
.bg-danger {
  background-color: #e26c5a !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #00695c !important;
  border-color: #00695c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #001c19 !important;
  border-color: #001c19 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #001c19 !important;
  border-color: #001c19 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #004d40 !important;
  border-color: #004d40 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #daa520 !important;
  border-color: #daa520 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #977316 !important;
  border-color: #977316 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #977316 !important;
  border-color: #977316 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fcfcfc !important;
  border-color: #fcfcfc !important;
  color: #7d7d7d !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #7d7d7d !important;
  background-color: #d6d6d6 !important;
  border-color: #d6d6d6 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #7d7d7d !important;
  background-color: #d6d6d6 !important;
  border-color: #d6d6d6 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.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: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #000303 !important;
  color: #000303 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #00695c !important;
  border-color: #00695c !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #00695c !important;
  border-color: #00695c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #bcbcbc !important;
  color: #bcbcbc !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #004d40 !important;
  border-color: #004d40 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #004d40 !important;
  border-color: #004d40 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #816213 !important;
  color: #816213 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #daa520 !important;
  border-color: #daa520 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #daa520 !important;
  border-color: #daa520 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #c9c9c9 !important;
  color: #c9c9c9 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #7d7d7d !important;
  background-color: #fcfcfc !important;
  border-color: #fcfcfc !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #7d7d7d !important;
  background-color: #fcfcfc !important;
  border-color: #fcfcfc !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #b63420 !important;
  color: #b63420 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #00695c !important;
}
.text-secondary {
  color: #efefef !important;
}
.text-success {
  color: #daa520 !important;
}
.text-info {
  color: #004d40 !important;
}
.text-warning {
  color: #fcfcfc !important;
}
.text-danger {
  color: #e26c5a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000303 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #bcbcbc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #816213 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #c9c9c9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b63420 !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: #004d40;
}
.alert-warning {
  background-color: #fcfcfc;
}
.alert-danger {
  background-color: #e26c5a;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  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: #00695c;
  border-color: #00695c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #00695c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #00e9cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f8ecce;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #33ffdd;
}
.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;
}
.form-control {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #00695c;
}
/* Forms */
.mbr-form .btn {
  margin: .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;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form1 .input-group-btn a.btn {
  border-radius: 0 !important;
}
.form1 .input-group-btn button[type="submit"] {
  border-radius: 0 !important;
}
@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: #00695c;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #00695c;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #00695c;
  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: #00695c;
  border-bottom-color: #00695c;
}
.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: #00695c !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: #efefef !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='%2300695c' %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-uSZXLpi0XJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #00695c;
}
.cid-uSZXLpi0XJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSZXLpi0XJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSZXLpi0XJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSZXLpi0XJ .row {
  flex-direction: row-reverse;
}
.cid-uSZXLpi0XJ img {
  width: 100%;
}
.cid-uwTpoz0H0L {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #00695c;
}
.cid-uwTpoz0H0L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoz0H0L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoz0H0L .mbr-section-title {
  color: #ffffff;
}
.cid-uwTpoz0H0L .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0gA18ooCn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0gA18ooCn .mbr-text {
  text-align: center;
}
.cid-v0gA18ooCn .mbr-section-subtitle {
  text-align: center;
}
.cid-uSlLiWpaIf {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSlLiWpaIf .line {
  background-color: #00695c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uSlLiWpaIf .mbr-text {
  color: #444444;
}
.cid-uwTpozti03 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwTpozti03 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uwTpozti03 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uwTpozti03 .title {
    width: 100% !important;
  }
}
.cid-uwTpozti03 .mbr-section-title {
  color: #daa520;
}
.cid-uwTpozMCq0 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwTpozMCq0 .counter-container ul {
  margin-bottom: 0;
}
.cid-uwTpozMCq0 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-uwTpozMCq0 .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 2px;
  padding-left: 1px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all 0.2s;
  color: #ffffff;
  background: #daa520;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-uwTpozMCq0 .mbr-text {
  color: #000000;
}
.cid-uSlnzina4C {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSlnzina4C img,
.cid-uSlnzina4C .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSlnzina4C .item:focus,
.cid-uSlnzina4C span:focus {
  outline: none;
}
.cid-uSlnzina4C .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSlnzina4C .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uSlnzina4C .item {
  padding: 0;
  margin: 0;
}
.cid-uSlnzina4C .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSlnzina4C .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSlnzina4C .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSlnzina4C .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSlnzina4C .mbr-section-title {
  color: #232323;
}
.cid-uwTpoA53j8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00695c;
}
.cid-uwTpoA53j8 a {
  font-weight: bold;
}
@media (max-width: 767px) {
  .cid-uwTpoA53j8 .content {
    text-align: center;
  }
}
.cid-uwTpoA53j8 .mbr-text {
  color: #ffffff;
}
.cid-uwTpoA53j8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwTpoHfTLO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwTpoHfTLO .img-row {
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uwTpoHfTLO .item:focus,
.cid-uwTpoHfTLO span:focus {
  outline: none;
}
.cid-uwTpoHfTLO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uwTpoHfTLO .item {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-bottom: 30px;
  }
}
.cid-uwTpoHfTLO .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .cid-uwTpoHfTLO .item-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }
}
.cid-uwTpoHfTLO .item-content {
  padding: 0 1rem;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uwTpoHfTLO .mbr-section-btn {
  margin-top: auto !important;
  width: 100%;
}
.cid-uwTpoHfTLO .mbr-section-title,
.cid-uwTpoHfTLO .mbr-section-subtitle {
  color: #111111;
}
.cid-uwTpoHfTLO .mbr-text {
  color: #555555;
  font-style: italic;
}
.cid-uwTpoHfTLO .item-subtitle {
  text-align: center;
}
.cid-uwTpoHfTLO .item-img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  display: flex;
  margin-bottom: 24px;
}
.cid-uwTpoHfTLO .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.cid-uwTpoHfTLO .mbr-section-head {
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .cid-uwTpoHfTLO .mbr-section-head {
    margin-bottom: 90px;
  }
}
.cid-uwTpoHfTLO .item-title {
  color: #00695c;
}
.cid-uwTpoHfTLO .mbr-section-title {
  color: #00695c;
}
.cid-uTEc5sIKUE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uTEc5sIKUE .img-row {
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uTEc5sIKUE .item:focus,
.cid-uTEc5sIKUE span:focus {
  outline: none;
}
.cid-uTEc5sIKUE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uTEc5sIKUE .item {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-bottom: 30px;
  }
}
.cid-uTEc5sIKUE .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .cid-uTEc5sIKUE .item-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }
}
.cid-uTEc5sIKUE .item-content {
  padding: 0 1rem;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uTEc5sIKUE .mbr-section-btn {
  margin-top: auto !important;
  width: 100%;
}
.cid-uTEc5sIKUE .mbr-section-title,
.cid-uTEc5sIKUE .mbr-section-subtitle {
  color: #111111;
}
.cid-uTEc5sIKUE .mbr-text {
  color: #555555;
  font-style: italic;
}
.cid-uTEc5sIKUE .item-subtitle {
  text-align: center;
}
.cid-uTEc5sIKUE .item-img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  display: flex;
  margin-bottom: 24px;
}
.cid-uTEc5sIKUE .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.cid-uTEc5sIKUE .mbr-section-head {
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .cid-uTEc5sIKUE .mbr-section-head {
    margin-bottom: 90px;
  }
}
.cid-uTEc5sIKUE .item-title {
  color: #00695c;
}
.cid-uTEc5sIKUE .mbr-section-title {
  color: #00695c;
}
.cid-uSZR5Ul1Ws {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #daa520;
}
.cid-uSZR5Ul1Ws a {
  font-weight: bold;
}
@media (max-width: 767px) {
  .cid-uSZR5Ul1Ws .content {
    text-align: center;
  }
}
.cid-uSZR5Ul1Ws .mbr-text {
  color: #ffffff;
}
.cid-uSZR5Ul1Ws .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwTpoBu2Uk {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uwTpoBu2Uk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoBu2Uk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoBu2Uk .mbr-section-title {
  color: #daa520;
}
.cid-uwTpoBu2Uk .mbr-section-subtitle {
  color: #000000;
}
.cid-uwTpoBu2Uk .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uSlqpJwpBV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSlqpJwpBV img,
.cid-uSlqpJwpBV .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSlqpJwpBV .item:focus,
.cid-uSlqpJwpBV span:focus {
  outline: none;
}
.cid-uSlqpJwpBV .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSlqpJwpBV .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uSlqpJwpBV .item {
  padding: 0;
  margin: 0;
}
.cid-uSlqpJwpBV .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSlqpJwpBV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSlqpJwpBV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSlqpJwpBV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSlqpJwpBV .mbr-section-title {
  color: #232323;
}
.cid-uSlpWdFXVy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSlpWdFXVy img,
.cid-uSlpWdFXVy .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSlpWdFXVy .item:focus,
.cid-uSlpWdFXVy span:focus {
  outline: none;
}
.cid-uSlpWdFXVy .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSlpWdFXVy .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uSlpWdFXVy .item {
  padding: 0;
  margin: 0;
}
.cid-uSlpWdFXVy .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSlpWdFXVy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSlpWdFXVy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSlpWdFXVy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSlpWdFXVy .mbr-section-title {
  color: #232323;
}
.cid-uSloFpHD1M {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSloFpHD1M img,
.cid-uSloFpHD1M .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSloFpHD1M .item:focus,
.cid-uSloFpHD1M span:focus {
  outline: none;
}
.cid-uSloFpHD1M .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSloFpHD1M .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uSloFpHD1M .item {
  padding: 0;
  margin: 0;
}
.cid-uSloFpHD1M .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSloFpHD1M .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSloFpHD1M .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSloFpHD1M .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSloFpHD1M .mbr-section-title {
  color: #232323;
}
.cid-uwTpoD7GkE {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #00695c;
}
.cid-uwTpoD7GkE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoD7GkE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoD7GkE .mbr-text {
  color: #767676;
}
.cid-uwTpoD7GkE .mbr-section-subtitle {
  color: #767676;
}
.cid-uwTpoD7GkE .title .num {
  width: 100%;
  display: block;
}
.cid-uwTpoD7GkE .title .card-title {
  z-index: 1;
}
.cid-uwTpoD7GkE .num {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uwTpoD7GkE * {
    text-align: center !important;
  }
  .cid-uwTpoD7GkE .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uwTpoD7GkE .card-title,
.cid-uwTpoD7GkE .card-img {
  color: #ffffff;
}
.cid-uwTpoD7GkE .mbr-section-title,
.cid-uwTpoD7GkE .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-uwTpoD7GkE .card-text {
  color: #ffffff;
}
.cid-uwTpoEV7Vj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwTpoEV7Vj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoEV7Vj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoEV7Vj .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uwTpoEV7Vj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwTpoEV7Vj .row {
  flex-direction: row-reverse;
}
.cid-uwTpoEV7Vj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uwTpoEV7Vj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uwTpoEV7Vj .mbr-section-title {
  text-align: center;
  color: #daa520;
}
.cid-uwTpoEV7Vj .mbr-text {
  color: #000000;
}
.cid-uSqoOYkgpQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #00695c;
}
.cid-uwTpoMgAwK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uwTpoMgAwK .row {
  flex-direction: row-reverse;
}
.cid-uwTpoMgAwK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoMgAwK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoMgAwK .mbr-description {
  text-align: left;
}
.cid-uwTpoMgAwK .item-wrapper {
  background: #ffffff;
  margin-bottom: 2rem;
  padding: 2.25rem 2.25rem 1rem 2.25rem;
}
@media (max-width: 767px) {
  .cid-uwTpoMgAwK .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uwTpoMgAwK .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }
}
.cid-uwTpoMgAwK .card-title,
.cid-uwTpoMgAwK .iconfont-wrapper {
  color: #000000;
}
.cid-uwTpoMgAwK .card-text {
  color: #000000;
}
.cid-uwTpoMgAwK .mbr-section-title {
  color: #00695c;
  text-align: center;
}
.cid-uwTpoMgAwK .mbr-text,
.cid-uwTpoMgAwK .mbr-section-btn {
  text-align: center;
}
.cid-uwTpoMgAwK .card-text,
.cid-uwTpoMgAwK .item .mbr-section-btn {
  text-align: left;
}
.cid-uwTpoMgAwK .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-uwTpoMgAwK .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-uwTpoMgAwK .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00695c;
  background-color: #00695c;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-uwTpoMgAwK .mbr-text UL {
  text-align: left;
}
.cid-uwTpoMgAwK .mbr-text {
  color: #6c758f;
}
.cid-uwTpoFiCRs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00695c;
}
.cid-uwTpoFiCRs a {
  font-weight: bold;
}
@media (max-width: 767px) {
  .cid-uwTpoFiCRs .content {
    text-align: center;
  }
}
.cid-uwTpoFiCRs .mbr-text {
  color: #ffffff;
}
.cid-uwTpoFiCRs .mbr-section-subtitle {
  color: #737373;
}
.cid-uwTpoArUbh {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/2.jpeg");
}
.cid-uwTpoArUbh .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uwTpoArUbh .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uwTpoArUbh .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uwTpoArUbh .animated-element,
.cid-uwTpoArUbh .typed-cursor {
  color: #004d40;
}
.cid-uwTpoArUbh .animated-element {
  border-bottom: 5px solid #e0c562;
}
@media (max-width: 767px) {
  .cid-uwTpoArUbh .typed-text {
    text-align: center;
  }
}
.cid-uwTpoArUbh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoArUbh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoArUbh .mbr-section-title {
  color: #00695c;
}
.cid-uwTpoArUbh .mbr-text,
.cid-uwTpoArUbh .typed-text,
.cid-uwTpoArUbh .mbr-section-btn {
  color: #e0c562;
}
.cid-uwTpoK1bxj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uwTpoK1bxj .plan {
  word-break: break-word;
  background-color: #ffffff;
  padding: 70px 45px;
  background: #daa520;
  border: 1px solid #338873;
}
.cid-uwTpoK1bxj .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-uwTpoK1bxj .plan {
    margin-bottom: 2rem;
  }
}
.cid-uwTpoK1bxj .price-term {
  color: #626262;
  padding-bottom: 1.8rem;
  margin: 0;
}
.cid-uwTpoK1bxj .mbr-section-title {
  color: #daa520;
  padding-bottom: 39px;
  text-align: center;
}
.cid-uwTpoK1bxj .mbr-section-subtitle {
  color: #b19b48;
  text-align: center;
  font-style: italic;
  padding-bottom: 12px;
}
.cid-uwTpoK1bxj .first-title {
  color: #ffffff;
}
.cid-uwTpoK1bxj .first-subtitle {
  color: #ffffff;
  padding-bottom: 39px;
}
.cid-uwTpoK1bxj .first-price {
  color: #ffffff;
  font-size: 25px;
}
.cid-uwTpoK1bxj .big {
  font-size: 40px;
}
.cid-uwTpoK1bxj .first-title DIV {
  text-align: center;
}
.cid-uSluZ7ELdb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSluZ7ELdb .mbr-section-subtitle {
  text-align: center;
  color: #daa520;
}
.cid-uSZTVDmdvi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #00695c;
}
.cid-uSZTVDmdvi blockquote {
  border-color: #daa520;
  border-radius: 4px;
  background-color: #00695c;
}
.cid-uSZTVDmdvi .mbr-text {
  color: #ffffff;
}
.cid-uSZTVDmdvi .mbr-section-title {
  color: #ffffff;
}
.cid-uSZUp8fACq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #00695c;
}
.cid-uSZUOsCagc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #00695c;
}
.cid-uSZUOsCagc blockquote {
  border-color: #daa520;
  border-radius: 4px;
  background-color: #00695c;
}
.cid-uSZUOsCagc .mbr-text {
  color: #ffffff;
}
.cid-uSZUOsCagc .mbr-section-title {
  color: #ffffff;
}
.cid-uSZUQTyU4X {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #00695c;
}
.cid-v0gACuwh5S {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0gACuwh5S .mbr-section-subtitle {
  text-align: center;
  color: #daa520;
}
.cid-uT03n24pE7 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uT03n24pE7 .mbr-iconfont {
  color: #8d97ad;
}
.cid-uT03n24pE7 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-uT03n24pE7 .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-uT03n24pE7 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uT03n24pE7 .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uT03n24pE7 .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-uT03n24pE7 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uT03n24pE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT03n24pE7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT03n24pE7 .mbr-section-title {
  color: #00695c;
}
.cid-uT03n24pE7 .mbr-text,
.cid-uT03n24pE7 .social-links {
  color: #232323;
}
.cid-uT03n24pE7 .user-desc {
  color: #004d40;
}
.cid-uT03n24pE7 .card-title {
  color: #004d40;
}
.cid-uT05GtUj7r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uT05GtUj7r .mbr-iconfont {
  color: #8d97ad;
}
.cid-uT05GtUj7r .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-uT05GtUj7r .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-uT05GtUj7r .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uT05GtUj7r .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uT05GtUj7r .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-uT05GtUj7r .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uT05GtUj7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT05GtUj7r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT05GtUj7r .mbr-section-title {
  color: #00695c;
}
.cid-uT05GtUj7r .mbr-text,
.cid-uT05GtUj7r .social-links {
  color: #232323;
}
.cid-uT05GtUj7r .user-desc {
  color: #004d40;
}
.cid-uT05GtUj7r .card-title {
  color: #004d40;
}
.cid-uT05TxyzCq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uT05TxyzCq .mbr-iconfont {
  color: #8d97ad;
}
.cid-uT05TxyzCq .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-uT05TxyzCq .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-uT05TxyzCq .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uT05TxyzCq .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uT05TxyzCq .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-uT05TxyzCq .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uT05TxyzCq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT05TxyzCq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT05TxyzCq .mbr-section-title {
  color: #00695c;
}
.cid-uT05TxyzCq .mbr-text,
.cid-uT05TxyzCq .social-links {
  color: #232323;
}
.cid-uT05TxyzCq .user-desc {
  color: #004d40;
}
.cid-uT05TxyzCq .card-title {
  color: #004d40;
}
.cid-uT05VF2vDO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uT05VF2vDO .mbr-iconfont {
  color: #8d97ad;
}
.cid-uT05VF2vDO .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-uT05VF2vDO .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-uT05VF2vDO .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uT05VF2vDO .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uT05VF2vDO .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-uT05VF2vDO .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uT05VF2vDO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT05VF2vDO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT05VF2vDO .mbr-section-title {
  color: #00695c;
}
.cid-uT05VF2vDO .mbr-text,
.cid-uT05VF2vDO .social-links {
  color: #232323;
}
.cid-uT05VF2vDO .user-desc {
  color: #004d40;
}
.cid-uT05VF2vDO .card-title {
  color: #004d40;
}
.cid-uT05W4NTNi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uT05W4NTNi .mbr-iconfont {
  color: #8d97ad;
}
.cid-uT05W4NTNi .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-uT05W4NTNi .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-uT05W4NTNi .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uT05W4NTNi .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uT05W4NTNi .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-uT05W4NTNi .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uT05W4NTNi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT05W4NTNi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT05W4NTNi .mbr-section-title {
  color: #00695c;
}
.cid-uT05W4NTNi .mbr-text,
.cid-uT05W4NTNi .social-links {
  color: #232323;
}
.cid-uT05W4NTNi .user-desc {
  color: #004d40;
}
.cid-uT05W4NTNi .card-title {
  color: #004d40;
}
.cid-uZ7J9ySpiv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ7J9ySpiv .mbr-iconfont {
  color: #8d97ad;
}
.cid-uZ7J9ySpiv .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-uZ7J9ySpiv .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-uZ7J9ySpiv .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uZ7J9ySpiv .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uZ7J9ySpiv .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-uZ7J9ySpiv .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uZ7J9ySpiv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7J9ySpiv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7J9ySpiv .mbr-section-title {
  color: #00695c;
}
.cid-uZ7J9ySpiv .mbr-text,
.cid-uZ7J9ySpiv .social-links {
  color: #232323;
}
.cid-uZ7J9ySpiv .user-desc {
  color: #004d40;
}
.cid-uZ7J9ySpiv .card-title {
  color: #004d40;
}
.cid-uZ7NH6rkAQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ7NH6rkAQ .mbr-iconfont {
  color: #8d97ad;
}
.cid-uZ7NH6rkAQ .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-uZ7NH6rkAQ .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-uZ7NH6rkAQ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uZ7NH6rkAQ .card-img {
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uZ7NH6rkAQ .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-uZ7NH6rkAQ .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uZ7NH6rkAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7NH6rkAQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7NH6rkAQ .mbr-section-title {
  color: #00695c;
}
.cid-uZ7NH6rkAQ .mbr-text,
.cid-uZ7NH6rkAQ .social-links {
  color: #232323;
}
.cid-uZ7NH6rkAQ .user-desc {
  color: #004d40;
}
.cid-uZ7NH6rkAQ .card-title {
  color: #004d40;
}
.cid-uwTpoKVyNN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #daa520;
}
.cid-uwTpoKVyNN .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uwTpoKVyNN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoKVyNN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoKVyNN .content-wrap {
  margin: 0;
}
.cid-uwTpoKVyNN .content-wrap .card {
  padding: 0;
}
.cid-uwTpoKVyNN .image-wrapper {
  height: 100%;
}
.cid-uwTpoKVyNN .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uwTpoKVyNN .image-wrapper img {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uwTpoKVyNN .content-wrapper {
  padding: 190px 72px;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-uwTpoKVyNN .content-wrapper {
    padding: 190px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uwTpoKVyNN .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uwTpoKVyNN .content-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uwTpoKVyNN .content-wrapper .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uwTpoKVyNN .content-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 80px;
  color: #56c595;
  display: inline-flex;
}
.cid-uwTpoKVyNN .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uwTpoKVyNN .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwTpoKVyNN .content-wrapper .mbr-section-btn {
  width: 100%;
  margin-top: 54px;
}
@media (max-width: 992px) {
  .cid-uwTpoKVyNN .content-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwTpoKVyNN .content-wrapper .mbr-section-btn .btn {
  width: 100%;
}
.cid-uwTpoKVyNN .mbr-section-title {
  color: #150764;
}
.cid-uwTpoKVyNN .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwTpoKVyNN .mbr-section-title,
.cid-uwTpoKVyNN .mbr-section-btn,
.cid-uwTpoKVyNN .icon-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uwTpoKVyNN .mbr-section-title,
.cid-uwTpoKVyNN .mbr-section-btn,
.cid-uwTpoKVyNN .icon-wrapper DIV {
  text-align: left;
}
.cid-uwTpoAPFCD {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background: #00695c;
}
.cid-uwTpoAPFCD .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uwTpoAPFCD .team-card:hover {
  transform: translateY(-10px);
}
.cid-uwTpoAPFCD .title-icon {
  font-size: 3rem;
  color: #ffffff;
  padding-right: 1rem;
}
.cid-uwTpoAPFCD .title-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
@media (max-width: 767px) {
  .cid-uwTpoAPFCD .title-wrap {
    flex-direction: column;
  }
  .cid-uwTpoAPFCD .title-wrap .title-icon {
    padding: 0;
  }
}
.cid-uwTpoAPFCD .card-wrap {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uwTpoAPFCD .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uwTpoAPFCD .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uwTpoAPFCD .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uwTpoAPFCD .card-wrap .content-wrap {
    padding: 2rem 1rem;
  }
}
.cid-uwTpoAPFCD .social-row {
  display: flex;
}
.cid-uwTpoAPFCD .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-top: 1rem;
  padding-right: 3px;
  transition: all 0.3s;
}
.cid-uwTpoAPFCD .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-uwTpoAPFCD .social-row {
    justify-content: center;
  }
}
.cid-uwTpoAPFCD .card-text,
.cid-uwTpoAPFCD .mbr-section-btn,
.cid-uwTpoAPFCD .social-row {
  color: #004d40;
}
.cid-uwTpoAPFCD .card-title,
.cid-uwTpoAPFCD .social-row {
  color: #004d40;
}
.cid-uwTpoAPFCD .mbr-section-title {
  color: #103178;
}
.cid-uwTpoAPFCD .mbr-section-title,
.cid-uwTpoAPFCD .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-uwTpoAPFCD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoAPFCD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoNGAd0 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwTpoNGAd0 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uwTpoNGAd0 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uwTpoNGAd0 .title {
    width: 100% !important;
  }
}
.cid-uwTpoNGAd0 .mbr-section-title {
  color: #00695c;
}
.cid-uwTpoO6vSO {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwTpoO6vSO .card .card-img {
  padding-bottom: 1.5rem;
}
.cid-uwTpoO6vSO .card .card-img span {
  color: #00695c;
  font-size: 45px;
}
.cid-uwTpoO6vSO .card .card-title {
  letter-spacing: 1px;
}
.cid-uwTpoO6vSO .card-title {
  margin: 0;
}
.cid-uwTpoO6vSO .mbr-text,
.cid-uwTpoO6vSO .card-title {
  color: #878787;
}
.cid-uwTpoO6vSO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoO6vSO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoO6vSO .card-title,
.cid-uwTpoO6vSO .card-img {
  color: #444444;
}
.cid-uSqpulQWdK {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-uSqpulQWdK .plan {
  word-break: break-word;
  background-color: #ffffff;
  padding: 70px 45px;
  background: #daa520;
  border: 1px solid #338873;
}
.cid-uSqpulQWdK .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-uSqpulQWdK .plan {
    margin-bottom: 2rem;
  }
}
.cid-uSqpulQWdK .price-term {
  color: #626262;
  padding-bottom: 1.8rem;
  margin: 0;
}
.cid-uSqpulQWdK .mbr-section-title {
  color: #daa520;
  padding-bottom: 39px;
  text-align: center;
}
.cid-uSqpulQWdK .mbr-section-subtitle {
  color: #b19b48;
  text-align: center;
  font-style: italic;
  padding-bottom: 12px;
}
.cid-uSqpulQWdK .first-title {
  color: #ffffff;
}
.cid-uSqpulQWdK .first-subtitle {
  color: #ffffff;
  padding-bottom: 39px;
}
.cid-uSqpulQWdK .first-price {
  color: #ffffff;
  font-size: 25px;
}
.cid-uSqpulQWdK .big {
  font-size: 40px;
}
.cid-uSqpulQWdK .first-title DIV {
  text-align: center;
}
.cid-uwTpoLNAOu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/geophilia-architecture-sacred-geometry-keme-ix-hotel-geophilia-congress-2-1280x720.jpg");
}
.cid-uwTpoLNAOu .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uwTpoLNAOu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoLNAOu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoLNAOu .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uwTpoLNAOu .image-wrap {
    height: 300px;
  }
}
.cid-uSmlI0Wy6K {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSmlI0Wy6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSmlI0Wy6K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSmlI0Wy6K .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #00695c;
  margin-left: 1rem;
}
.cid-uSmlI0Wy6K .panel-group {
  border: none;
}
.cid-uSmlI0Wy6K .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uSmlI0Wy6K .panel-body,
.cid-uSmlI0Wy6K .card-header {
  padding: 1rem 0;
}
.cid-uSmlI0Wy6K .panel-title-edit {
  color: #000000;
}
.cid-uSmlI0Wy6K .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uSmlI0Wy6K H3 {
  color: #00695c;
}
.cid-uSmmMGAJHE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSmmMGAJHE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSmmMGAJHE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSmmMGAJHE .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #00695c;
  margin-left: 1rem;
}
.cid-uSmmMGAJHE .panel-group {
  border: none;
}
.cid-uSmmMGAJHE .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uSmmMGAJHE .panel-body,
.cid-uSmmMGAJHE .card-header {
  padding: 1rem 0;
}
.cid-uSmmMGAJHE .panel-title-edit {
  color: #000000;
}
.cid-uSmmMGAJHE .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uSquZWzpaz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSquZWzpaz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSquZWzpaz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSquZWzpaz .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #00695c;
  margin-left: 1rem;
}
.cid-uSquZWzpaz .panel-group {
  border: none;
}
.cid-uSquZWzpaz .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uSquZWzpaz .panel-body,
.cid-uSquZWzpaz .card-header {
  padding: 1rem 0;
}
.cid-uSquZWzpaz .panel-title-edit {
  color: #000000;
}
.cid-uSquZWzpaz .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uSquZWzpaz H3 {
  color: #00695c;
}
.cid-uwTpoOKhif {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #00695c;
}
.cid-uwTpoOKhif .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoOKhif .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoOKhif .row {
  flex-direction: row-reverse;
}
.cid-uwTpoOKhif .mbr-description {
  color: #ffffff;
}
.cid-uwTpoQ0Vdy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4b3a30;
}
.cid-uwTpoQ0Vdy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwTpoQ0Vdy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwTpoQ0Vdy .row {
  flex-direction: row-reverse;
}
.cid-uwTpoQ0Vdy .mbr-description {
  color: #ffffff;
}
.cid-uTLHMR300D {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #4b3a30;
}
.cid-uTLHMR300D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTLHMR300D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTLHMR300D .row {
  flex-direction: row-reverse;
}
.cid-uTLHMR300D .mbr-description {
  color: #ffffff;
}
.cid-uSmnaL5UL6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSmnaL5UL6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSmnaL5UL6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSmnaL5UL6 .mbr-section-title {
  color: #004d40;
}
.cid-uSmnaL5UL6 .mbr-section-subtitle {
  color: #004d40;
}
.cid-uSpUOqXt0x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSpUOqXt0x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSpUOqXt0x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSpUOqXt0x .mbr-section-title {
  color: #444444;
}
.cid-uSpUOqXt0x .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uT0kPE7P8E {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #00695c;
}
.cid-uT0kPE7P8E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT0kPE7P8E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uT0kPE7P8E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uT0kPE7P8E .row {
  flex-direction: row-reverse;
}
.cid-uT0kPE7P8E img {
  width: 100%;
}
.cid-uSZVqhuM9N {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #00695c;
}
.cid-uSZVqhuM9N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSZVqhuM9N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSZVqhuM9N .mbr-section-title {
  color: #ffffff;
}
.cid-uSZVqhuM9N .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSZVDUZ5f3 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZW3ak3p3 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uSZVqAm7P9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #00695c;
}
.cid-uSZVqAm7P9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSZVqAm7P9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSZVqAm7P9 .mbr-section-title {
  color: #ffffff;
}
.cid-uSZVqAm7P9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSZVqAJOPB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZVqAJOPB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSZVqAJOPB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSZVqAJOPB .mbr-section-title {
  color: #444444;
}
.cid-uSZVqAJOPB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSkLAeOucW {
  z-index: 1;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uSkLAeOucW .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uSkLAeOucW .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uSkLAeOucW .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uSkLAeOucW .input-wrap {
  background: #fcfcfc;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .mbr-section-btn {
  width: 100%;
  display: flex;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-uSkLAeOucW .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  line-height: 18px;
  margin: 0;
  font-weight: 300;
}
.cid-uSkLAeOucW .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-uSkLAeOucW .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-uSkLAeOucW .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uSkLAeOucW .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-uSkLAeOucW .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-uSkLAeOucW .check-in-input,
.cid-uSkLAeOucW .check-out-input,
.cid-uSkLAeOucW .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-uSkLAeOucW .booking-datepicker input:not(.guests-input):not([name='email']) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-uSkLAeOucW .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-uSkLAeOucW .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-uSkLAeOucW .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-uSkLAeOucW .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-uSkLAeOucW .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSkLAeOucW .datepicker {
    left: 10% !important;
  }
}
.cid-uSkLAeOucW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkLAeOucW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
