body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Gilda Display', serif;
  font-size: 2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-4 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.3rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.08rem;
}
.display-7 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- 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: 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-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #c1e9e9 !important;
}
.bg-success {
  background-color: #92bda3 !important;
}
.bg-info {
  background-color: #709faf !important;
}
.bg-warning {
  background-color: #fee1df !important;
}
.bg-danger {
  background-color: #e26c5a !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #c1e9e9 !important;
  border-color: #c1e9e9 !important;
  color: #2d7e7e !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #2d7e7e !important;
  background-color: #89d5d5 !important;
  border-color: #89d5d5 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #2d7e7e !important;
  background-color: #89d5d5 !important;
  border-color: #89d5d5 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #709faf !important;
  border-color: #709faf !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fee1df !important;
  border-color: #fee1df !important;
  color: #d71407 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #d71407 !important;
  background-color: #fc9b95 !important;
  border-color: #fc9b95 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #d71407 !important;
  background-color: #fc9b95 !important;
  border-color: #fc9b95 !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: #76cece !important;
  color: #76cece !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #2d7e7e !important;
  background-color: #c1e9e9 !important;
  border-color: #c1e9e9 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #2d7e7e !important;
  background-color: #c1e9e9 !important;
  border-color: #c1e9e9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #426977 !important;
  color: #426977 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #58916f !important;
  color: #58916f !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #fb847c !important;
  color: #fb847c !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #d71407 !important;
  background-color: #fee1df !important;
  border-color: #fee1df !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #d71407 !important;
  background-color: #fee1df !important;
  border-color: #fee1df !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: #c1e9e9 !important;
}
.text-secondary {
  color: #333333 !important;
}
.text-success {
  color: #92bda3 !important;
}
.text-info {
  color: #709faf !important;
}
.text-warning {
  color: #fee1df !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: #76cece !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #58916f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #426977 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #fb847c !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: #709faf;
}
.alert-warning {
  background-color: #fee1df;
}
.alert-danger {
  background-color: #e26c5a;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c1e9e9;
  border-color: #c1e9e9;
  color: #339191;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c1e9e9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1ede6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c2d6dd;
}
.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*/
.form-control {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #c1e9e9;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #c1e9e9;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #c1e9e9;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c1e9e9;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c1e9e9;
  border-bottom-color: #c1e9e9;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #c1e9e9 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #333333 !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='%23c1e9e9' %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-tJjjakMhJI {
  background: #ffffff;
}
.cid-tJjjakMhJI .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-tJjjakMhJI .image-block img {
  width: 100%;
}
.cid-tJjjakMhJI .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tJjjakMhJI .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tJjjakMhJI .pc {
  display: block !important;
}
.cid-tJjjakMhJI .sp {
  display: none !important;
}
@media only screen and (max-width: 480px) {
  .cid-tJjjakMhJI .pc {
    display: none !important;
  }
  .cid-tJjjakMhJI .sp {
    display: block !important;
  }
}
.cid-uHLxBffHUZ {
  background-image: url("../../../assets/images/3-1366x1012.png");
}
.cid-uHLxBffHUZ .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uHLxBffHUZ .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uHLxBffHUZ .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uHLxBffHUZ .animated-element,
.cid-uHLxBffHUZ .typed-cursor {
  color: #ffffff;
}
.cid-uHLxBffHUZ .animated-element {
  border-bottom: 5px solid #c19b76;
}
@media (max-width: 767px) {
  .cid-uHLxBffHUZ .typed-text {
    text-align: center;
  }
}
.cid-uHLxBffHUZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHLxBffHUZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHLxBffHUZ .mbr-section-subtitle,
.cid-uHLxBffHUZ .underline {
  text-align: center;
  color: #000000;
}
.cid-uHLxBffHUZ .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tIEJXVIpQz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fef4e5;
}
.cid-tIEJXVIpQz .mbr-section-subtitle {
  text-align: center;
}
.cid-uHLwwCKaeY {
  background-image: url("../../../assets/images/4-1366x843.png");
}
.cid-uHLwwCKaeY .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uHLwwCKaeY .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uHLwwCKaeY .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uHLwwCKaeY .animated-element,
.cid-uHLwwCKaeY .typed-cursor {
  color: #ffffff;
}
.cid-uHLwwCKaeY .animated-element {
  border-bottom: 5px solid #c19b76;
}
@media (max-width: 767px) {
  .cid-uHLwwCKaeY .typed-text {
    text-align: center;
  }
}
.cid-uHLwwCKaeY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHLwwCKaeY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHLwwCKaeY .mbr-section-title {
  text-align: right;
}
.cid-uHLwwCKaeY .mbr-text,
.cid-uHLwwCKaeY .typed-text,
.cid-uHLwwCKaeY .mbr-section-btn {
  text-align: right;
}
.cid-uHLwwCKaeY .mbr-section-title DIV {
  text-align: right;
}
.cid-uHGaUW4q5U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fef4e5;
}
.cid-uHGaUW4q5U .row {
  background-color: #fef4e5;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uHGaUW4q5U .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
}
.cid-uHGaUW4q5U .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uHGaUW4q5U .underline .line {
  width: 2rem;
  height: 1px;
  background: #fef4e5;
  display: inline-block;
}
.cid-uHGaUW4q5U .text-element {
  padding: 4rem 1rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHGaUW4q5U .text-element .mbr-text {
  padding: 3rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uHGaUW4q5U .image-element {
    padding: 0 15px;
  }
  .cid-uHGaUW4q5U .text-element {
    padding: 2rem 1rem;
  }
  .cid-uHGaUW4q5U .text-element .mbr-text {
    padding: 1rem;
  }
  .cid-uHGaUW4q5U .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.cid-uHGaUW4q5U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHGaUW4q5U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHGaUW4q5U .mbr-text,
.cid-uHGaUW4q5U .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sPQLT4x7XW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fef4e5;
}
@media screen and (max-width: 767px) {
  .cid-sPQLT4x7XW br.br-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .cid-sPQLT4x7XW br.br-sp {
    display: none !important;
  }
}
.cid-sPQLT4x7XW .mbr-text {
  text-align: left;
}
.cid-uHGhGGSqsA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fef4e5;
}
.cid-uHGhGGSqsA .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uHGhGGSqsA .testimonials-container {
  margin: 0 auto;
}
.cid-uHGhGGSqsA .testimonials-container .testimonials-item:not(:first-child) {
  margin-top: 3rem;
}
.cid-uHGhGGSqsA .testimonials-container .testimonials-item:nth-child(2n) .user.row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .cid-uHGhGGSqsA .testimonials-container .testimonials-item:nth-child(2n) .user.row .testimonials-caption {
    text-align: right;
    padding: 2rem 0 2rem 2rem;
  }
}
.cid-uHGhGGSqsA .testimonials-container .testimonials-item .user {
  background: #fef4e5;
}
.cid-uHGhGGSqsA .testimonials-container .testimonials-item .user.row {
  margin: 0;
}
.cid-uHGhGGSqsA .testimonials-container .testimonials-item .user .user_image {
  width: 150px;
  height: 150px;
  overflow: hidden;
  margin: 2rem auto;
  border-radius: 50%;
}
.cid-uHGhGGSqsA .testimonials-container .testimonials-item .user .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-uHGhGGSqsA .testimonials-container .testimonials-item .user .testimonials-caption {
  padding: 2rem;
  padding: 2rem 2rem 2rem 0;
}
@media (max-width: 260px) {
  .cid-uHGhGGSqsA .user_image {
    width: 100% !important;
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .cid-uHGhGGSqsA .testimonials-caption {
    padding: 0 2rem 2rem 2rem !important;
  }
}
.cid-uHGhGGSqsA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHGhGGSqsA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHGhGGSqsA .main-title {
  color: #000000;
  text-align: left;
}
.cid-uHGhGGSqsA .mbr-section-subtitle,
.cid-uHGhGGSqsA .underline {
  color: #232323;
}
.cid-uHGhGGSqsA .user_text {
  color: #000000;
}
.cid-uHGhGGSqsA .user_name {
  color: #000000;
  text-align: left;
}
.cid-uHGhGGSqsA .user_desk {
  color: #000000;
  text-align: left;
}
.cid-uHKBsYjYVC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fef4e5;
}
.cid-uHKBsYjYVC .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uHKBsYjYVC .testimonials-container {
  margin: 0 auto;
}
.cid-uHKBsYjYVC .testimonials-container .testimonials-item:not(:first-child) {
  margin-top: 3rem;
}
.cid-uHKBsYjYVC .testimonials-container .testimonials-item:nth-child(2n) .user.row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .cid-uHKBsYjYVC .testimonials-container .testimonials-item:nth-child(2n) .user.row .testimonials-caption {
    text-align: right;
    padding: 2rem 0 2rem 2rem;
  }
}
.cid-uHKBsYjYVC .testimonials-container .testimonials-item .user {
  background: #fef4e5;
}
.cid-uHKBsYjYVC .testimonials-container .testimonials-item .user.row {
  margin: 0;
}
.cid-uHKBsYjYVC .testimonials-container .testimonials-item .user .user_image {
  width: 150px;
  height: 150px;
  overflow: hidden;
  margin: 2rem auto;
  border-radius: 50%;
}
.cid-uHKBsYjYVC .testimonials-container .testimonials-item .user .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-uHKBsYjYVC .testimonials-container .testimonials-item .user .testimonials-caption {
  padding: 2rem;
  padding: 2rem 2rem 2rem 0;
}
@media (max-width: 260px) {
  .cid-uHKBsYjYVC .user_image {
    width: 100% !important;
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .cid-uHKBsYjYVC .testimonials-caption {
    padding: 0 2rem 2rem 2rem !important;
  }
}
.cid-uHKBsYjYVC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHKBsYjYVC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHKBsYjYVC .main-title {
  color: #000000;
  text-align: left;
}
.cid-uHKBsYjYVC .mbr-section-subtitle,
.cid-uHKBsYjYVC .underline {
  color: #232323;
}
.cid-uHKBsYjYVC .user_text {
  color: #000000;
}
.cid-uHKBsYjYVC .user_name {
  color: #000000;
  text-align: left;
}
.cid-uHKBsYjYVC .user_desk {
  color: #000000;
  text-align: left;
}
.cid-uHKG3YxIED {
  background: #fef4e5;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-uHKG3YxIED .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uHKG3YxIED .video-block {
    width: 100% !important;
  }
}
.cid-rzMi9GHrgW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e6c8ab;
}
.cid-rzMi9GHrgW .mbr-text {
  color: #444444;
}
