body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Arvo', serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Arvo', serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Arvo', serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Arvo', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Arvo', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    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-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e43f3f !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e43f3f !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e43f3f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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_wraper {
  display: none;
}
.form-control {
  font-family: 'Arvo', serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Arvo', serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !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: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e43f3f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tWwPi0VhEC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWwPi0VhEC nav.navbar {
  position: fixed;
}
.cid-tWwPi0VhEC .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWwPi0VhEC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWwPi0VhEC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWwPi0VhEC .dropdown-item:hover,
.cid-tWwPi0VhEC .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tWwPi0VhEC .dropdown-item:hover span {
  color: white;
}
.cid-tWwPi0VhEC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWwPi0VhEC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWwPi0VhEC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWwPi0VhEC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWwPi0VhEC .nav-link {
  position: relative;
}
.cid-tWwPi0VhEC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWwPi0VhEC .container {
    flex-wrap: nowrap;
  }
}
.cid-tWwPi0VhEC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWwPi0VhEC .dropdown-menu,
.cid-tWwPi0VhEC .navbar.opened {
  background: #a7ffd8 !important;
}
.cid-tWwPi0VhEC .nav-item:focus,
.cid-tWwPi0VhEC .nav-link:focus {
  outline: none;
}
.cid-tWwPi0VhEC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWwPi0VhEC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWwPi0VhEC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWwPi0VhEC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWwPi0VhEC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWwPi0VhEC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWwPi0VhEC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a7ffd8;
}
.cid-tWwPi0VhEC .navbar.opened {
  transition: all 0.3s;
}
.cid-tWwPi0VhEC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWwPi0VhEC .navbar .navbar-logo img {
  width: auto;
}
.cid-tWwPi0VhEC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWwPi0VhEC .navbar.collapsed {
  justify-content: center;
}
.cid-tWwPi0VhEC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWwPi0VhEC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWwPi0VhEC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWwPi0VhEC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWwPi0VhEC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWwPi0VhEC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWwPi0VhEC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWwPi0VhEC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWwPi0VhEC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWwPi0VhEC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWwPi0VhEC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWwPi0VhEC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWwPi0VhEC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWwPi0VhEC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tWwPi0VhEC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWwPi0VhEC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWwPi0VhEC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWwPi0VhEC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWwPi0VhEC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWwPi0VhEC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWwPi0VhEC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWwPi0VhEC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWwPi0VhEC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWwPi0VhEC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWwPi0VhEC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWwPi0VhEC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWwPi0VhEC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWwPi0VhEC .dropdown-item.active,
.cid-tWwPi0VhEC .dropdown-item:active {
  background-color: transparent;
}
.cid-tWwPi0VhEC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWwPi0VhEC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWwPi0VhEC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWwPi0VhEC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a7ffd8;
}
.cid-tWwPi0VhEC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWwPi0VhEC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWwPi0VhEC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWwPi0VhEC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWwPi0VhEC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWwPi0VhEC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWwPi0VhEC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWwPi0VhEC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwPi0VhEC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWwPi0VhEC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWwPi0VhEC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwPi0VhEC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWwPi0VhEC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWwPi0VhEC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWwPi0VhEC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWwPi0VhEC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWwPi0VhEC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWwPi0VhEC .navbar {
    height: 70px;
  }
  .cid-tWwPi0VhEC .navbar.opened {
    height: auto;
  }
  .cid-tWwPi0VhEC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWJiNeoBP3 {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/pre-workout-970x646.jpeg");
  overflow: hidden;
}
.cid-tWJiNeoBP3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJiNeoBP3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJiNeoBP3 path {
  fill: #e43f3f;
}
@keyframes wave3 {
  0% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
  50% {
    transform: scaleY(1.1) translate(-50%, -50%);
  }
  100% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
}
.cid-tWJiNeoBP3 b,
.cid-tWJiNeoBP3 strong {
  font-weight: 900;
}
.cid-tWJiNeoBP3 svg {
  position: absolute;
  top: 30px;
  left: 45%;
  right: 50%;
  animation: 5s ease infinite wave3;
  transform-origin: top;
  transform: scaleY(0.8) translate(-50%, -50%);
}
.cid-tWJiNeoBP3 a {
  font-weight: 900;
  background: #ff6666;
}
.cid-tWJiNeoBP3 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tWJiNeoBP3 .mbr-text,
.cid-tWJiNeoBP3 .mbr-section-btn {
  text-align: center;
  color: #ffe885;
}
.cid-tWJiNeoBP3 .mbr-section-title {
  text-align: left;
  color: #fff0b0;
}
.cid-tWJKPC0HHh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #173d33;
  position: relative;
  overflow: hidden;
}
.cid-tWJKPC0HHh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJKPC0HHh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJKPC0HHh .bg-frame {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  opacity: 0.7;
  width: 25vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #7e1a3c;
  box-shadow: 0 0 40px #7e1a3c;
  filter: blur(130px);
}
@media (max-width: 767px) {
  .cid-tWJKPC0HHh .bg-frame {
    width: 50vw;
  }
}
.cid-tWJKPC0HHh .row {
  position: relative;
  z-index: 3;
}
.cid-tWJKPC0HHh .title-container {
  margin-top: 2rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWJKPC0HHh .title-container {
    margin-top: 0;
    margin-bottom: 60px;
  }
}
.cid-tWJKPC0HHh .mbr-section-title {
  color: #ffffff;
}
.cid-tWJKPC0HHh .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tWJKPC0HHh .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 1rem;
}
.cid-tWJKPC0HHh .list-container {
  width: 100%;
}
.cid-tWJKPC0HHh .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tWJKPC0HHh .list-item {
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
}
@media (max-width: 575px) {
  .cid-tWJKPC0HHh .list-item {
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
}
.cid-tWJKPC0HHh .list-item-title {
  width: 25%;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tWJKPC0HHh .list-item-title {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-tWJKPC0HHh .list-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tWJKPC0HHh .list-item-text {
  width: 75%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tWJKPC0HHh .list-item-text {
    width: 100%;
  }
}
.cid-tWJKPC0HHh .list-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tWwRaNpaof {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWwRaNpaof .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwRaNpaof .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwRaNpaof .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #7e1a3c, #a7ffd8);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tWwRaNpaof .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tWwRaNpaof .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tWwRaNpaof .card-title {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWwRaNpaof .card-title {
    margin-bottom: 20px;
  }
}
.cid-tWwRaNpaof .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWwRaNpaof .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWwRaNpaof .card-text {
  color: #03250f;
  margin-bottom: 0;
}
.cid-tWwQk89EEB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWwQk89EEB .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #7e1a3c;
  border-bottom: 1px solid #7e1a3c;
  z-index: 1;
}
.cid-tWwQk89EEB .content_wrapper:hover .mbr-section-title a {
  color: #ff6666 !important;
}
.cid-tWwQk89EEB .mbr-section-title {
  margin-bottom: 12px;
}
.cid-tWwQk89EEB .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-tWwQk89EEB .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tWwQk89EEB .mbr-section-btn .btn-secondary-outline:hover,
.cid-tWwQk89EEB .mbr-section-btn .btn-secondary-outline .active,
.cid-tWwQk89EEB .mbr-section-btn .btn-secondary-outline:focus {
  color: #e43f3f !important;
}
.cid-tWwQk89EEB .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-tWwQk89EEB .image_post {
  display: inline-block;
}
.cid-tWwQk89EEB .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-tWwQk89EEB .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-tWwQk89EEB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwQk89EEB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwQzfoRsA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-tWwQzfoRsA .container {
    padding: 0 25px;
  }
}
.cid-tWwQzfoRsA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWwQzfoRsA .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWwQzfoRsA .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWwQzfoRsA .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWwQzfoRsA .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWwQzfoRsA .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWwQzfoRsA .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWwQzfoRsA .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWwQzfoRsA .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWwQzfoRsA .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWwQzfoRsA .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWwQzfoRsA .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWwQzfoRsA .mbr-section-title {
  color: #fff0b0;
}
.cid-tWwQzfoRsA .panel-title-edit {
  color: #fff0b0;
}
.cid-tWwQzfoRsA .panel-text {
  color: #000000;
}
.cid-tWwRyteMIN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a7ffd8;
}
.cid-tWwRyteMIN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwRyteMIN h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-tWwRyteMIN h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #e43f3f;
  z-index: -1;
}
.cid-tWwRyteMIN h1 a:hover {
  color: inherit !important;
}
.cid-tWwRyteMIN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwRyteMIN .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWwRyteMIN .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWwRyteMIN .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWwRyteMIN .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-tWwRyteMIN .mbr-section-subtitle,
.cid-tWwRyteMIN .subtitle-wrap {
  color: #19303d;
}
.cid-tWwRyteMIN .mbr-text,
.cid-tWwRyteMIN .mbr-section-btn {
  color: #19303d;
  text-align: left;
}
.cid-tWwRBFvsHz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWwRBFvsHz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwRBFvsHz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwRBFvsHz .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWwRBFvsHz .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWwRBFvsHz .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWwRBFvsHz .mbr-section-title {
  color: #131313;
}
.cid-tWwRBFvsHz .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWwRBFvsHz .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWwRBFvsHz .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWwRBFvsHz .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWwRBFvsHz .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWwRBFvsHz .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWwRBFvsHz .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWwRBFvsHz .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWwRBFvsHz .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWwRBFvsHz .card-title {
  color: #131313;
}
.cid-tWwRBFvsHz .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWwRBFvsHz .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWwRBFvsHz .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWwRBFvsHz .card-link {
    margin-top: 15px;
  }
}
.cid-tWwRBFvsHz .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWwRBFvsHz .card-title,
.cid-tWwRBFvsHz .iconfont-wrapper {
  text-align: center;
}
.cid-tWwRL8j6hd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWwRL8j6hd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwRL8j6hd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWwRL8j6hd .container {
    padding: 0 15px;
  }
}
.cid-tWwRL8j6hd .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWwRL8j6hd .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWwRL8j6hd .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWwRL8j6hd .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWwRL8j6hd .mbr-section-title {
  color: #000000;
}
.cid-tWwRL8j6hd .mbr-text {
  color: #000000;
}
.cid-tWwRL8j6hd .mbr-name {
  color: #f2ac2b;
}
.cid-tWxNTYtYFK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tWxNTYtYFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWxNTYtYFK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWxNTYtYFK .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWxNTYtYFK .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWxNTYtYFK .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWxNTYtYFK .mbr-section-title {
  color: #131313;
}
.cid-tWxNTYtYFK .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWxNTYtYFK .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWxNTYtYFK .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWxNTYtYFK .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #a7ffd8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWxNTYtYFK .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWxNTYtYFK .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWxNTYtYFK .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWxNTYtYFK .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWxNTYtYFK .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWxNTYtYFK .card-title {
  color: #131313;
}
.cid-tWxNTYtYFK .card-text {
  margin-top: 10px;
  color: #000000;
}
.cid-tWxNTYtYFK .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWxNTYtYFK .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWxNTYtYFK .card-link {
    margin-top: 15px;
  }
}
.cid-tWxNTYtYFK .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWxNTYtYFK .card-title,
.cid-tWxNTYtYFK .iconfont-wrapper {
  color: #353535;
}
.cid-tWxP7WQT8U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWxP7WQT8U blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #a7ffd8;
}
.cid-tWxP7WQT8U .mbr-section-title {
  color: #000000;
}
.cid-tWxP7WQT8U .mbr-text {
  color: #000000;
}
.cid-tWxPx4CCvi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWxPx4CCvi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWxPx4CCvi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWxPx4CCvi .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWxPx4CCvi .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWxPx4CCvi .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWxPx4CCvi .mbr-section-title {
  color: #131313;
}
.cid-tWxPx4CCvi .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWxPx4CCvi .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWxPx4CCvi .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWxPx4CCvi .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWxPx4CCvi .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWxPx4CCvi .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWxPx4CCvi .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWxPx4CCvi .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWxPx4CCvi .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWxPx4CCvi .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWxPx4CCvi .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWxPx4CCvi .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWxPx4CCvi .content-wrap {
    margin-top: 0;
  }
}
.cid-tWxPx4CCvi .card-title {
  color: #131313;
}
.cid-tWxPx4CCvi .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWxPx4CCvi .card-text {
    margin-top: 15px;
  }
}
.cid-tWxPx4CCvi .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWxPx4CCvi .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWxPx4CCvi .card-link {
    margin-top: 15px;
  }
}
.cid-tWxPx4CCvi .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWxPG1js7i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWxPUYADYe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a7ffd8;
}
.cid-tWxPUYADYe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWxPUYADYe .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-tWxPUYADYe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWxPUYADYe .row {
  flex-direction: row-reverse;
}
.cid-tWxPUYADYe img {
  width: 100%;
}
.cid-tWxQdwSuLd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWxQdwSuLd .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tWxQdwSuLd .mbr-text {
  color: #ffffff;
}
.cid-tWwS7tsLnh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #a7ffd8;
}
.cid-tWwS7tsLnh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwS7tsLnh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwS7tsLnh .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWwS7tsLnh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWwS7tsLnh .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWwS7tsLnh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWwS7tsLnh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWwS7tsLnh .mbr-section-title {
  color: #000000;
}
.cid-tWwS4TPUX9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tWwS4TPUX9 .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWwS4TPUX9 .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWwS4TPUX9 .media-container-row .mbr-text1 {
  color: #fafafa;
  text-align: left;
}
.cid-tWwS4TPUX9 .media-container-row .mbr-text3 {
  color: #fafafa;
  text-align: right;
}
.cid-tWwS4TPUX9 a {
  background-image: none !important;
}
.cid-tWwS4TPUX9 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWwS4TPUX9 .container {
  padding: 5rem 1rem;
}
.cid-tWwS4TPUX9 p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWwS4TPUX9 p {
    text-align: center !important;
  }
}
.cid-tWwS4TPUX9 .media-container-row .mbr-text2,
.cid-tWwS4TPUX9 .line {
  color: #fafafa;
  text-align: left;
}
.cid-tWxWPFbHgj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWxWPFbHgj nav.navbar {
  position: fixed;
}
.cid-tWxWPFbHgj .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWxWPFbHgj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWxWPFbHgj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWxWPFbHgj .dropdown-item:hover,
.cid-tWxWPFbHgj .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tWxWPFbHgj .dropdown-item:hover span {
  color: white;
}
.cid-tWxWPFbHgj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWxWPFbHgj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWxWPFbHgj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWxWPFbHgj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWxWPFbHgj .nav-link {
  position: relative;
}
.cid-tWxWPFbHgj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWxWPFbHgj .container {
    flex-wrap: nowrap;
  }
}
.cid-tWxWPFbHgj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWxWPFbHgj .dropdown-menu,
.cid-tWxWPFbHgj .navbar.opened {
  background: #a7ffd8 !important;
}
.cid-tWxWPFbHgj .nav-item:focus,
.cid-tWxWPFbHgj .nav-link:focus {
  outline: none;
}
.cid-tWxWPFbHgj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWxWPFbHgj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWxWPFbHgj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWxWPFbHgj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWxWPFbHgj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWxWPFbHgj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWxWPFbHgj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a7ffd8;
}
.cid-tWxWPFbHgj .navbar.opened {
  transition: all 0.3s;
}
.cid-tWxWPFbHgj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWxWPFbHgj .navbar .navbar-logo img {
  width: auto;
}
.cid-tWxWPFbHgj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWxWPFbHgj .navbar.collapsed {
  justify-content: center;
}
.cid-tWxWPFbHgj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWxWPFbHgj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWxWPFbHgj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWxWPFbHgj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWxWPFbHgj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWxWPFbHgj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWxWPFbHgj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWxWPFbHgj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWxWPFbHgj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWxWPFbHgj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWxWPFbHgj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWxWPFbHgj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWxWPFbHgj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWxWPFbHgj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tWxWPFbHgj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWxWPFbHgj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWxWPFbHgj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWxWPFbHgj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWxWPFbHgj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWxWPFbHgj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWxWPFbHgj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWxWPFbHgj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWxWPFbHgj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWxWPFbHgj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWxWPFbHgj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWxWPFbHgj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWxWPFbHgj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWxWPFbHgj .dropdown-item.active,
.cid-tWxWPFbHgj .dropdown-item:active {
  background-color: transparent;
}
.cid-tWxWPFbHgj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWxWPFbHgj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWxWPFbHgj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWxWPFbHgj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a7ffd8;
}
.cid-tWxWPFbHgj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWxWPFbHgj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWxWPFbHgj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWxWPFbHgj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWxWPFbHgj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWxWPFbHgj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWxWPFbHgj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWxWPFbHgj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWxWPFbHgj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWxWPFbHgj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWxWPFbHgj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWxWPFbHgj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWxWPFbHgj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWxWPFbHgj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWxWPFbHgj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWxWPFbHgj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWxWPFbHgj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWxWPFbHgj .navbar {
    height: 70px;
  }
  .cid-tWxWPFbHgj .navbar.opened {
    height: auto;
  }
  .cid-tWxWPFbHgj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWA5y2dkML {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a7ffd8;
}
.cid-tWA5y2dkML .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA5y2dkML .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA5y2dkML .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWA5y2dkML .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWA5y2dkML .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWA5GPVImz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #173d33;
}
.cid-tWA5GPVImz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA5GPVImz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA5GPVImz .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWA5GPVImz .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWA5GPVImz .container {
    padding: 0 24px;
  }
}
.cid-tWA5GPVImz .row {
  justify-content: center;
}
.cid-tWA5GPVImz .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWA5GPVImz .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWA5GPVImz .content-wrapper {
    padding: 32px;
  }
}
.cid-tWA5GPVImz .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWA5GPVImz .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWA5GPVImz .mbr-section-title {
  color: #FF3399;
}
.cid-tWA5GPVImz .mbr-text {
  color: #262642;
}
.cid-tWA5LWuqkf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #a7ffd8;
}
.cid-tWA5LWuqkf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA5LWuqkf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA5LWuqkf .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWA5LWuqkf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWA5LWuqkf .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWA5LWuqkf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWA5LWuqkf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWA63sWtfG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fff0b0;
  overflow: hidden;
}
.cid-tWA63sWtfG .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWA63sWtfG .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWA63sWtfG .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWA63sWtfG .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWA63sWtfG a {
  background-image: none !important;
}
.cid-tWA63sWtfG .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWA63sWtfG .container {
  padding: 5rem 1rem;
}
.cid-tWA63sWtfG p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWA63sWtfG p {
    text-align: center !important;
  }
}
.cid-tWA63sWtfG .media-container-row .mbr-text2,
.cid-tWA63sWtfG .line {
  color: #232323;
  text-align: left;
}
.cid-tWA6RaeALU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWA6RaeALU nav.navbar {
  position: fixed;
}
.cid-tWA6RaeALU .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWA6RaeALU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWA6RaeALU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWA6RaeALU .dropdown-item:hover,
.cid-tWA6RaeALU .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tWA6RaeALU .dropdown-item:hover span {
  color: white;
}
.cid-tWA6RaeALU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWA6RaeALU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWA6RaeALU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWA6RaeALU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWA6RaeALU .nav-link {
  position: relative;
}
.cid-tWA6RaeALU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWA6RaeALU .container {
    flex-wrap: nowrap;
  }
}
.cid-tWA6RaeALU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWA6RaeALU .dropdown-menu,
.cid-tWA6RaeALU .navbar.opened {
  background: #a7ffd8 !important;
}
.cid-tWA6RaeALU .nav-item:focus,
.cid-tWA6RaeALU .nav-link:focus {
  outline: none;
}
.cid-tWA6RaeALU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWA6RaeALU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWA6RaeALU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWA6RaeALU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWA6RaeALU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWA6RaeALU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWA6RaeALU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a7ffd8;
}
.cid-tWA6RaeALU .navbar.opened {
  transition: all 0.3s;
}
.cid-tWA6RaeALU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWA6RaeALU .navbar .navbar-logo img {
  width: auto;
}
.cid-tWA6RaeALU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWA6RaeALU .navbar.collapsed {
  justify-content: center;
}
.cid-tWA6RaeALU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWA6RaeALU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWA6RaeALU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWA6RaeALU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWA6RaeALU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWA6RaeALU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWA6RaeALU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWA6RaeALU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWA6RaeALU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWA6RaeALU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWA6RaeALU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWA6RaeALU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWA6RaeALU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWA6RaeALU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tWA6RaeALU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWA6RaeALU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWA6RaeALU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWA6RaeALU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWA6RaeALU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWA6RaeALU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWA6RaeALU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWA6RaeALU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWA6RaeALU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWA6RaeALU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWA6RaeALU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWA6RaeALU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWA6RaeALU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWA6RaeALU .dropdown-item.active,
.cid-tWA6RaeALU .dropdown-item:active {
  background-color: transparent;
}
.cid-tWA6RaeALU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWA6RaeALU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWA6RaeALU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWA6RaeALU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a7ffd8;
}
.cid-tWA6RaeALU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWA6RaeALU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWA6RaeALU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWA6RaeALU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWA6RaeALU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWA6RaeALU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWA6RaeALU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWA6RaeALU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWA6RaeALU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWA6RaeALU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWA6RaeALU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWA6RaeALU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWA6RaeALU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWA6RaeALU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWA6RaeALU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWA6RaeALU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWA6RaeALU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWA6RaeALU .navbar {
    height: 70px;
  }
  .cid-tWA6RaeALU .navbar.opened {
    height: auto;
  }
  .cid-tWA6RaeALU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWA6RaF5sf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #173d33;
}
.cid-tWA6RaF5sf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA6RaF5sf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA6RaF5sf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWA6RaF5sf .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWA6RaF5sf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWA6RaF5sf .mbr-text,
.cid-tWA6RaF5sf .mbr-section-btn {
  color: #fafafa;
}
.cid-tWA6RaF5sf .mbr-section-title {
  color: #fafafa;
}
.cid-tWA6Rb1WOc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWA6Rb1WOc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA6Rb1WOc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA6Rb1WOc .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tWA6Rb1WOc .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tWA6Rb1WOc .container {
    padding: 0 24px;
  }
}
.cid-tWA6Rb1WOc .row {
  justify-content: center;
}
.cid-tWA6Rb1WOc .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tWA6Rb1WOc .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tWA6Rb1WOc .content-wrapper {
    padding: 32px;
  }
}
.cid-tWA6Rb1WOc .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWA6Rb1WOc .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tWA6Rb1WOc .mbr-section-title {
  color: #FF3399;
}
.cid-tWA6Rb1WOc .mbr-text {
  color: #262642;
}
.cid-tWA6Rbl3fm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #7e1a3c;
}
.cid-tWA6Rbl3fm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWA6Rbl3fm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWA6Rbl3fm .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWA6Rbl3fm .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWA6Rbl3fm .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWA6Rbl3fm .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWA6Rbl3fm .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWA6Rbl3fm .mbr-section-title {
  color: #fafafa;
}
.cid-tWA6RbKotz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fff0b0;
  overflow: hidden;
}
.cid-tWA6RbKotz .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWA6RbKotz .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWA6RbKotz .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-tWA6RbKotz .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-tWA6RbKotz a {
  background-image: none !important;
}
.cid-tWA6RbKotz .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWA6RbKotz .container {
  padding: 5rem 1rem;
}
.cid-tWA6RbKotz p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWA6RbKotz p {
    text-align: center !important;
  }
}
.cid-tWA6RbKotz .media-container-row .mbr-text2,
.cid-tWA6RbKotz .line {
  color: #232323;
  text-align: left;
}
.cid-tWJNFQXE1d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWJNFQXE1d nav.navbar {
  position: fixed;
}
.cid-tWJNFQXE1d .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWJNFQXE1d .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWJNFQXE1d .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWJNFQXE1d .dropdown-item:hover,
.cid-tWJNFQXE1d .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tWJNFQXE1d .dropdown-item:hover span {
  color: white;
}
.cid-tWJNFQXE1d .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWJNFQXE1d .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWJNFQXE1d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWJNFQXE1d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWJNFQXE1d .nav-link {
  position: relative;
}
.cid-tWJNFQXE1d .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWJNFQXE1d .container {
    flex-wrap: nowrap;
  }
}
.cid-tWJNFQXE1d .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWJNFQXE1d .dropdown-menu,
.cid-tWJNFQXE1d .navbar.opened {
  background: #a7ffd8 !important;
}
.cid-tWJNFQXE1d .nav-item:focus,
.cid-tWJNFQXE1d .nav-link:focus {
  outline: none;
}
.cid-tWJNFQXE1d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWJNFQXE1d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWJNFQXE1d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWJNFQXE1d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWJNFQXE1d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWJNFQXE1d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWJNFQXE1d .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a7ffd8;
}
.cid-tWJNFQXE1d .navbar.opened {
  transition: all 0.3s;
}
.cid-tWJNFQXE1d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWJNFQXE1d .navbar .navbar-logo img {
  width: auto;
}
.cid-tWJNFQXE1d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWJNFQXE1d .navbar.collapsed {
  justify-content: center;
}
.cid-tWJNFQXE1d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWJNFQXE1d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWJNFQXE1d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWJNFQXE1d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWJNFQXE1d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWJNFQXE1d .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWJNFQXE1d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWJNFQXE1d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWJNFQXE1d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWJNFQXE1d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWJNFQXE1d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWJNFQXE1d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWJNFQXE1d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWJNFQXE1d .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tWJNFQXE1d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWJNFQXE1d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWJNFQXE1d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWJNFQXE1d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWJNFQXE1d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWJNFQXE1d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWJNFQXE1d .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWJNFQXE1d .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWJNFQXE1d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWJNFQXE1d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWJNFQXE1d .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWJNFQXE1d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWJNFQXE1d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWJNFQXE1d .dropdown-item.active,
.cid-tWJNFQXE1d .dropdown-item:active {
  background-color: transparent;
}
.cid-tWJNFQXE1d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWJNFQXE1d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWJNFQXE1d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWJNFQXE1d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a7ffd8;
}
.cid-tWJNFQXE1d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWJNFQXE1d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWJNFQXE1d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWJNFQXE1d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWJNFQXE1d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWJNFQXE1d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWJNFQXE1d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWJNFQXE1d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWJNFQXE1d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWJNFQXE1d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWJNFQXE1d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWJNFQXE1d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWJNFQXE1d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWJNFQXE1d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWJNFQXE1d .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWJNFQXE1d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWJNFQXE1d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWJNFQXE1d .navbar {
    height: 70px;
  }
  .cid-tWJNFQXE1d .navbar.opened {
    height: auto;
  }
  .cid-tWJNFQXE1d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWJNFRvvpf {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/whey-protein-1.jpg");
  overflow: hidden;
}
.cid-tWJNFRvvpf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJNFRvvpf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJNFRvvpf path {
  fill: #e43f3f;
}
@keyframes wave3 {
  0% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
  50% {
    transform: scaleY(1.1) translate(-50%, -50%);
  }
  100% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
}
.cid-tWJNFRvvpf b,
.cid-tWJNFRvvpf strong {
  font-weight: 900;
}
.cid-tWJNFRvvpf svg {
  position: absolute;
  top: 30px;
  left: 45%;
  right: 50%;
  animation: 5s ease infinite wave3;
  transform-origin: top;
  transform: scaleY(0.8) translate(-50%, -50%);
}
.cid-tWJNFRvvpf a {
  font-weight: 900;
  background: #ff6666;
}
.cid-tWJNFRvvpf .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tWJNFRvvpf .mbr-text,
.cid-tWJNFRvvpf .mbr-section-btn {
  text-align: center;
  color: #ffe885;
}
.cid-tWJNFRvvpf .mbr-section-title {
  text-align: left;
  color: #fff0b0;
}
.cid-tWJNFRZoD2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #173d33;
  position: relative;
  overflow: hidden;
}
.cid-tWJNFRZoD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJNFRZoD2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJNFRZoD2 .bg-frame {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  opacity: 0.7;
  width: 25vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #7e1a3c;
  box-shadow: 0 0 40px #7e1a3c;
  filter: blur(130px);
}
@media (max-width: 767px) {
  .cid-tWJNFRZoD2 .bg-frame {
    width: 50vw;
  }
}
.cid-tWJNFRZoD2 .row {
  position: relative;
  z-index: 3;
}
.cid-tWJNFRZoD2 .title-container {
  margin-top: 2rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWJNFRZoD2 .title-container {
    margin-top: 0;
    margin-bottom: 60px;
  }
}
.cid-tWJNFRZoD2 .mbr-section-title {
  color: #ffffff;
}
.cid-tWJNFRZoD2 .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tWJNFRZoD2 .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 1rem;
}
.cid-tWJNFRZoD2 .list-container {
  width: 100%;
}
.cid-tWJNFRZoD2 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tWJNFRZoD2 .list-item {
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
}
@media (max-width: 575px) {
  .cid-tWJNFRZoD2 .list-item {
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
}
.cid-tWJNFRZoD2 .list-item-title {
  width: 25%;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tWJNFRZoD2 .list-item-title {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-tWJNFRZoD2 .list-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tWJNFRZoD2 .list-item-text {
  width: 75%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tWJNFRZoD2 .list-item-text {
    width: 100%;
  }
}
.cid-tWJNFRZoD2 .list-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tWJNFSvocE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWJNFSvocE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJNFSvocE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJNFSvocE .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #7e1a3c, #a7ffd8);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tWJNFSvocE .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tWJNFSvocE .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tWJNFSvocE .card-title {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWJNFSvocE .card-title {
    margin-bottom: 20px;
  }
}
.cid-tWJNFSvocE .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWJNFSvocE .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWJNFSvocE .card-text {
  color: #03250f;
  margin-bottom: 0;
}
.cid-tWJNFSVBYg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWJNFSVBYg .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #7e1a3c;
  border-bottom: 1px solid #7e1a3c;
  z-index: 1;
}
.cid-tWJNFSVBYg .content_wrapper:hover .mbr-section-title a {
  color: #ff6666 !important;
}
.cid-tWJNFSVBYg .mbr-section-title {
  margin-bottom: 12px;
}
.cid-tWJNFSVBYg .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-tWJNFSVBYg .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tWJNFSVBYg .mbr-section-btn .btn-secondary-outline:hover,
.cid-tWJNFSVBYg .mbr-section-btn .btn-secondary-outline .active,
.cid-tWJNFSVBYg .mbr-section-btn .btn-secondary-outline:focus {
  color: #e43f3f !important;
}
.cid-tWJNFSVBYg .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-tWJNFSVBYg .image_post {
  display: inline-block;
}
.cid-tWJNFSVBYg .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-tWJNFSVBYg .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-tWJNFSVBYg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJNFSVBYg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJNFTnsKK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-tWJNFTnsKK .container {
    padding: 0 25px;
  }
}
.cid-tWJNFTnsKK .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWJNFTnsKK .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWJNFTnsKK .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWJNFTnsKK .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWJNFTnsKK .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWJNFTnsKK .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWJNFTnsKK .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWJNFTnsKK .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWJNFTnsKK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWJNFTnsKK .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWJNFTnsKK .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWJNFTnsKK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWJNFTnsKK .mbr-section-title {
  color: #fff0b0;
}
.cid-tWJNFTnsKK .panel-title-edit {
  color: #fff0b0;
}
.cid-tWJNFTnsKK .panel-text {
  color: #000000;
}
.cid-tWJNFTZMoC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a7ffd8;
}
.cid-tWJNFTZMoC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJNFTZMoC h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-tWJNFTZMoC h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #e43f3f;
  z-index: -1;
}
.cid-tWJNFTZMoC h1 a:hover {
  color: inherit !important;
}
.cid-tWJNFTZMoC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJNFTZMoC .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWJNFTZMoC .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWJNFTZMoC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWJNFTZMoC .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-tWJNFTZMoC .mbr-section-subtitle,
.cid-tWJNFTZMoC .subtitle-wrap {
  color: #19303d;
}
.cid-tWJNFTZMoC .mbr-text,
.cid-tWJNFTZMoC .mbr-section-btn {
  color: #19303d;
  text-align: left;
}
.cid-tWJNFUrAaE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWJNFUrAaE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJNFUrAaE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJNFUrAaE .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWJNFUrAaE .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWJNFUrAaE .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWJNFUrAaE .mbr-section-title {
  color: #131313;
}
.cid-tWJNFUrAaE .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWJNFUrAaE .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWJNFUrAaE .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWJNFUrAaE .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWJNFUrAaE .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWJNFUrAaE .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWJNFUrAaE .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWJNFUrAaE .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWJNFUrAaE .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWJNFUrAaE .card-title {
  color: #131313;
}
.cid-tWJNFUrAaE .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWJNFUrAaE .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJNFUrAaE .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWJNFUrAaE .card-link {
    margin-top: 15px;
  }
}
.cid-tWJNFUrAaE .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWJNFUrAaE .card-title,
.cid-tWJNFUrAaE .iconfont-wrapper {
  text-align: center;
}
.cid-tWJNFVaOpM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWJNFVaOpM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJNFVaOpM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWJNFVaOpM .container {
    padding: 0 15px;
  }
}
.cid-tWJNFVaOpM .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWJNFVaOpM .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWJNFVaOpM .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWJNFVaOpM .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWJNFVaOpM .mbr-section-title {
  color: #000000;
}
.cid-tWJNFVaOpM .mbr-text {
  color: #000000;
}
.cid-tWJNFVaOpM .mbr-name {
  color: #f2ac2b;
}
.cid-tWJNFVCAmT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tWJNFVCAmT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJNFVCAmT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJNFVCAmT .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWJNFVCAmT .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWJNFVCAmT .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWJNFVCAmT .mbr-section-title {
  color: #131313;
}
.cid-tWJNFVCAmT .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWJNFVCAmT .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWJNFVCAmT .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWJNFVCAmT .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #a7ffd8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWJNFVCAmT .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWJNFVCAmT .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWJNFVCAmT .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWJNFVCAmT .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWJNFVCAmT .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWJNFVCAmT .card-title {
  color: #131313;
}
.cid-tWJNFVCAmT .card-text {
  margin-top: 10px;
  color: #000000;
}
.cid-tWJNFVCAmT .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJNFVCAmT .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWJNFVCAmT .card-link {
    margin-top: 15px;
  }
}
.cid-tWJNFVCAmT .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWJNFVCAmT .card-title,
.cid-tWJNFVCAmT .iconfont-wrapper {
  color: #353535;
}
.cid-tWJQfAwlKI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWJQfAwlKI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJQfAwlKI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJQfAwlKI .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWJQfAwlKI .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWJQfAwlKI .container-fluid .row {
  padding: 0;
}
.cid-tWJQfAwlKI .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWJQfAwlKI .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWJQfAwlKI .card {
    padding: 48px 20px;
  }
}
.cid-tWJQfAwlKI .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWJQfAwlKI .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWJQfAwlKI .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWJQfAwlKI .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWJQfAwlKI .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWJNFWkT2C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWJNFWkT2C blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #a7ffd8;
}
.cid-tWJNFWkT2C .mbr-section-title {
  color: #000000;
}
.cid-tWJNFWkT2C .mbr-text {
  color: #000000;
}
.cid-tWJNFWKL37 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWJNFWKL37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJNFWKL37 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJNFWKL37 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWJNFWKL37 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWJNFWKL37 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWJNFWKL37 .mbr-section-title {
  color: #131313;
}
.cid-tWJNFWKL37 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWJNFWKL37 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWJNFWKL37 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWJNFWKL37 .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWJNFWKL37 .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWJNFWKL37 .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWJNFWKL37 .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWJNFWKL37 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWJNFWKL37 .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWJNFWKL37 .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWJNFWKL37 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWJNFWKL37 .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWJNFWKL37 .content-wrap {
    margin-top: 0;
  }
}
.cid-tWJNFWKL37 .card-title {
  color: #131313;
}
.cid-tWJNFWKL37 .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJNFWKL37 .card-text {
    margin-top: 15px;
  }
}
.cid-tWJNFWKL37 .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJNFWKL37 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWJNFWKL37 .card-link {
    margin-top: 15px;
  }
}
.cid-tWJNFWKL37 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWJNFXtbzG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWJNFXXAYZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a7ffd8;
}
.cid-tWJNFXXAYZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJNFXXAYZ .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-tWJNFXXAYZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWJNFXXAYZ .row {
  flex-direction: row-reverse;
}
.cid-tWJNFXXAYZ img {
  width: 100%;
}
.cid-tWJNFYqtPZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWJNFYqtPZ .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tWJNFYqtPZ .mbr-text {
  color: #ffffff;
}
.cid-tWMqViPM2Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWMqViPM2Q .container {
    padding: 0 25px;
  }
}
.cid-tWMqViPM2Q .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWMqViPM2Q .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWMqViPM2Q .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWMqViPM2Q .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWMqViPM2Q .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWMqViPM2Q .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWMqViPM2Q .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWMqViPM2Q .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWMqViPM2Q .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWMqViPM2Q .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWMqViPM2Q .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWMqViPM2Q .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWMqViPM2Q .mbr-section-title {
  color: #000000;
}
.cid-tWMqViPM2Q .panel-title-edit {
  color: #000000;
}
.cid-tWMqViPM2Q .panel-text {
  color: #000000;
}
.cid-tWJQvRjRnh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #a7ffd8;
}
.cid-tWJQvRjRnh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJQvRjRnh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJQvRjRnh .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWJQvRjRnh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWJQvRjRnh .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWJQvRjRnh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWJQvRjRnh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWJNFZvwb2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tWJNFZvwb2 .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWJNFZvwb2 .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWJNFZvwb2 .media-container-row .mbr-text1 {
  color: #fafafa;
  text-align: left;
}
.cid-tWJNFZvwb2 .media-container-row .mbr-text3 {
  color: #fafafa;
  text-align: right;
}
.cid-tWJNFZvwb2 a {
  background-image: none !important;
}
.cid-tWJNFZvwb2 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWJNFZvwb2 .container {
  padding: 5rem 1rem;
}
.cid-tWJNFZvwb2 p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWJNFZvwb2 p {
    text-align: center !important;
  }
}
.cid-tWJNFZvwb2 .media-container-row .mbr-text2,
.cid-tWJNFZvwb2 .line {
  color: #fafafa;
  text-align: left;
}
.cid-tWJR0UpRg3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWJR0UpRg3 nav.navbar {
  position: fixed;
}
.cid-tWJR0UpRg3 .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWJR0UpRg3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWJR0UpRg3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWJR0UpRg3 .dropdown-item:hover,
.cid-tWJR0UpRg3 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tWJR0UpRg3 .dropdown-item:hover span {
  color: white;
}
.cid-tWJR0UpRg3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWJR0UpRg3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWJR0UpRg3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWJR0UpRg3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWJR0UpRg3 .nav-link {
  position: relative;
}
.cid-tWJR0UpRg3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWJR0UpRg3 .container {
    flex-wrap: nowrap;
  }
}
.cid-tWJR0UpRg3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWJR0UpRg3 .dropdown-menu,
.cid-tWJR0UpRg3 .navbar.opened {
  background: #a7ffd8 !important;
}
.cid-tWJR0UpRg3 .nav-item:focus,
.cid-tWJR0UpRg3 .nav-link:focus {
  outline: none;
}
.cid-tWJR0UpRg3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWJR0UpRg3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWJR0UpRg3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWJR0UpRg3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWJR0UpRg3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWJR0UpRg3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWJR0UpRg3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a7ffd8;
}
.cid-tWJR0UpRg3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tWJR0UpRg3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWJR0UpRg3 .navbar .navbar-logo img {
  width: auto;
}
.cid-tWJR0UpRg3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWJR0UpRg3 .navbar.collapsed {
  justify-content: center;
}
.cid-tWJR0UpRg3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWJR0UpRg3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWJR0UpRg3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWJR0UpRg3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWJR0UpRg3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWJR0UpRg3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWJR0UpRg3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWJR0UpRg3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWJR0UpRg3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWJR0UpRg3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWJR0UpRg3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWJR0UpRg3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWJR0UpRg3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWJR0UpRg3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tWJR0UpRg3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWJR0UpRg3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWJR0UpRg3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWJR0UpRg3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWJR0UpRg3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWJR0UpRg3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWJR0UpRg3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWJR0UpRg3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWJR0UpRg3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWJR0UpRg3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWJR0UpRg3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWJR0UpRg3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWJR0UpRg3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWJR0UpRg3 .dropdown-item.active,
.cid-tWJR0UpRg3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tWJR0UpRg3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWJR0UpRg3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWJR0UpRg3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWJR0UpRg3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a7ffd8;
}
.cid-tWJR0UpRg3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWJR0UpRg3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWJR0UpRg3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWJR0UpRg3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWJR0UpRg3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWJR0UpRg3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWJR0UpRg3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWJR0UpRg3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWJR0UpRg3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWJR0UpRg3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWJR0UpRg3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWJR0UpRg3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWJR0UpRg3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWJR0UpRg3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWJR0UpRg3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWJR0UpRg3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWJR0UpRg3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWJR0UpRg3 .navbar {
    height: 70px;
  }
  .cid-tWJR0UpRg3 .navbar.opened {
    height: auto;
  }
  .cid-tWJR0UpRg3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWJR0UXJfJ {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/istockphoto-1280096850-612x612.jpg");
  overflow: hidden;
}
.cid-tWJR0UXJfJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR0UXJfJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJR0UXJfJ path {
  fill: #e43f3f;
}
@keyframes wave3 {
  0% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
  50% {
    transform: scaleY(1.1) translate(-50%, -50%);
  }
  100% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
}
.cid-tWJR0UXJfJ b,
.cid-tWJR0UXJfJ strong {
  font-weight: 900;
}
.cid-tWJR0UXJfJ svg {
  position: absolute;
  top: 30px;
  left: 45%;
  right: 50%;
  animation: 5s ease infinite wave3;
  transform-origin: top;
  transform: scaleY(0.8) translate(-50%, -50%);
}
.cid-tWJR0UXJfJ a {
  font-weight: 900;
  background: #ff6666;
}
.cid-tWJR0UXJfJ .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tWJR0UXJfJ .mbr-text,
.cid-tWJR0UXJfJ .mbr-section-btn {
  text-align: center;
  color: #ffe885;
}
.cid-tWJR0UXJfJ .mbr-section-title {
  text-align: left;
  color: #fff0b0;
}
.cid-tWJR0Vrzw9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #173d33;
  position: relative;
  overflow: hidden;
}
.cid-tWJR0Vrzw9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR0Vrzw9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJR0Vrzw9 .bg-frame {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  opacity: 0.7;
  width: 25vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #7e1a3c;
  box-shadow: 0 0 40px #7e1a3c;
  filter: blur(130px);
}
@media (max-width: 767px) {
  .cid-tWJR0Vrzw9 .bg-frame {
    width: 50vw;
  }
}
.cid-tWJR0Vrzw9 .row {
  position: relative;
  z-index: 3;
}
.cid-tWJR0Vrzw9 .title-container {
  margin-top: 2rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWJR0Vrzw9 .title-container {
    margin-top: 0;
    margin-bottom: 60px;
  }
}
.cid-tWJR0Vrzw9 .mbr-section-title {
  color: #ffffff;
}
.cid-tWJR0Vrzw9 .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tWJR0Vrzw9 .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 1rem;
}
.cid-tWJR0Vrzw9 .list-container {
  width: 100%;
}
.cid-tWJR0Vrzw9 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tWJR0Vrzw9 .list-item {
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
}
@media (max-width: 575px) {
  .cid-tWJR0Vrzw9 .list-item {
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
}
.cid-tWJR0Vrzw9 .list-item-title {
  width: 25%;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tWJR0Vrzw9 .list-item-title {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-tWJR0Vrzw9 .list-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tWJR0Vrzw9 .list-item-text {
  width: 75%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tWJR0Vrzw9 .list-item-text {
    width: 100%;
  }
}
.cid-tWJR0Vrzw9 .list-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tWJR0VZoeB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWJR0VZoeB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR0VZoeB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJR0VZoeB .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #7e1a3c, #a7ffd8);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tWJR0VZoeB .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tWJR0VZoeB .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tWJR0VZoeB .card-title {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWJR0VZoeB .card-title {
    margin-bottom: 20px;
  }
}
.cid-tWJR0VZoeB .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWJR0VZoeB .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWJR0VZoeB .card-text {
  color: #03250f;
  margin-bottom: 0;
}
.cid-tWJR0WniVq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWJR0WniVq .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #7e1a3c;
  border-bottom: 1px solid #7e1a3c;
  z-index: 1;
}
.cid-tWJR0WniVq .content_wrapper:hover .mbr-section-title a {
  color: #ff6666 !important;
}
.cid-tWJR0WniVq .mbr-section-title {
  margin-bottom: 12px;
}
.cid-tWJR0WniVq .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-tWJR0WniVq .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tWJR0WniVq .mbr-section-btn .btn-secondary-outline:hover,
.cid-tWJR0WniVq .mbr-section-btn .btn-secondary-outline .active,
.cid-tWJR0WniVq .mbr-section-btn .btn-secondary-outline:focus {
  color: #e43f3f !important;
}
.cid-tWJR0WniVq .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-tWJR0WniVq .image_post {
  display: inline-block;
}
.cid-tWJR0WniVq .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-tWJR0WniVq .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-tWJR0WniVq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR0WniVq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJR0WOKxC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-tWJR0WOKxC .container {
    padding: 0 25px;
  }
}
.cid-tWJR0WOKxC .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWJR0WOKxC .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWJR0WOKxC .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWJR0WOKxC .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWJR0WOKxC .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWJR0WOKxC .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWJR0WOKxC .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWJR0WOKxC .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWJR0WOKxC .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWJR0WOKxC .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWJR0WOKxC .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWJR0WOKxC .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWJR0WOKxC .mbr-section-title {
  color: #fff0b0;
}
.cid-tWJR0WOKxC .panel-title-edit {
  color: #fff0b0;
}
.cid-tWJR0WOKxC .panel-text {
  color: #000000;
}
.cid-tWJR0XrIso {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a7ffd8;
}
.cid-tWJR0XrIso .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR0XrIso h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-tWJR0XrIso h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #e43f3f;
  z-index: -1;
}
.cid-tWJR0XrIso h1 a:hover {
  color: inherit !important;
}
.cid-tWJR0XrIso .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJR0XrIso .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWJR0XrIso .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWJR0XrIso .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWJR0XrIso .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-tWJR0XrIso .mbr-section-subtitle,
.cid-tWJR0XrIso .subtitle-wrap {
  color: #19303d;
}
.cid-tWJR0XrIso .mbr-text,
.cid-tWJR0XrIso .mbr-section-btn {
  color: #19303d;
  text-align: left;
}
.cid-tWJR0XQZ7I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWJR0XQZ7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR0XQZ7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJR0XQZ7I .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWJR0XQZ7I .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWJR0XQZ7I .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWJR0XQZ7I .mbr-section-title {
  color: #131313;
}
.cid-tWJR0XQZ7I .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWJR0XQZ7I .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWJR0XQZ7I .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWJR0XQZ7I .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWJR0XQZ7I .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWJR0XQZ7I .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWJR0XQZ7I .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWJR0XQZ7I .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWJR0XQZ7I .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWJR0XQZ7I .card-title {
  color: #131313;
}
.cid-tWJR0XQZ7I .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWJR0XQZ7I .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJR0XQZ7I .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWJR0XQZ7I .card-link {
    margin-top: 15px;
  }
}
.cid-tWJR0XQZ7I .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWJR0XQZ7I .card-title,
.cid-tWJR0XQZ7I .iconfont-wrapper {
  text-align: center;
}
.cid-tWJR0Yt942 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWJR0Yt942 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR0Yt942 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWJR0Yt942 .container {
    padding: 0 15px;
  }
}
.cid-tWJR0Yt942 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWJR0Yt942 .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWJR0Yt942 .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWJR0Yt942 .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWJR0Yt942 .mbr-section-title {
  color: #000000;
}
.cid-tWJR0Yt942 .mbr-text {
  color: #000000;
}
.cid-tWJR0Yt942 .mbr-name {
  color: #f2ac2b;
}
.cid-tWJR0YSZDN {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tWJR0YSZDN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR0YSZDN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJR0YSZDN .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWJR0YSZDN .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWJR0YSZDN .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWJR0YSZDN .mbr-section-title {
  color: #131313;
}
.cid-tWJR0YSZDN .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWJR0YSZDN .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWJR0YSZDN .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWJR0YSZDN .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #a7ffd8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWJR0YSZDN .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWJR0YSZDN .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWJR0YSZDN .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWJR0YSZDN .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWJR0YSZDN .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWJR0YSZDN .card-title {
  color: #131313;
}
.cid-tWJR0YSZDN .card-text {
  margin-top: 10px;
  color: #000000;
}
.cid-tWJR0YSZDN .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJR0YSZDN .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWJR0YSZDN .card-link {
    margin-top: 15px;
  }
}
.cid-tWJR0YSZDN .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWJR0YSZDN .card-title,
.cid-tWJR0YSZDN .iconfont-wrapper {
  color: #353535;
}
.cid-tWJR0ZrD4Y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWJR0ZrD4Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR0ZrD4Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJR0ZrD4Y .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWJR0ZrD4Y .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWJR0ZrD4Y .container-fluid .row {
  padding: 0;
}
.cid-tWJR0ZrD4Y .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWJR0ZrD4Y .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWJR0ZrD4Y .card {
    padding: 48px 20px;
  }
}
.cid-tWJR0ZrD4Y .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWJR0ZrD4Y .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWJR0ZrD4Y .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWJR0ZrD4Y .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWJR0ZrD4Y .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWJR0ZQGVW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWJR0ZQGVW blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #a7ffd8;
}
.cid-tWJR0ZQGVW .mbr-section-title {
  color: #000000;
}
.cid-tWJR0ZQGVW .mbr-text {
  color: #000000;
}
.cid-tWJR10kkR5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWJR10kkR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR10kkR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJR10kkR5 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWJR10kkR5 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWJR10kkR5 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWJR10kkR5 .mbr-section-title {
  color: #131313;
}
.cid-tWJR10kkR5 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWJR10kkR5 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWJR10kkR5 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWJR10kkR5 .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWJR10kkR5 .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWJR10kkR5 .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWJR10kkR5 .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWJR10kkR5 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWJR10kkR5 .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWJR10kkR5 .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWJR10kkR5 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWJR10kkR5 .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWJR10kkR5 .content-wrap {
    margin-top: 0;
  }
}
.cid-tWJR10kkR5 .card-title {
  color: #131313;
}
.cid-tWJR10kkR5 .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJR10kkR5 .card-text {
    margin-top: 15px;
  }
}
.cid-tWJR10kkR5 .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJR10kkR5 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWJR10kkR5 .card-link {
    margin-top: 15px;
  }
}
.cid-tWJR10kkR5 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWJR10X0fu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWJR11rRds {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a7ffd8;
}
.cid-tWJR11rRds .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR11rRds .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-tWJR11rRds .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWJR11rRds .row {
  flex-direction: row-reverse;
}
.cid-tWJR11rRds img {
  width: 100%;
}
.cid-tWJR12qbty {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWJR12qbty .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tWJR12qbty .mbr-text {
  color: #ffffff;
}
.cid-tWMr3kXcNV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWMr3kXcNV .container {
    padding: 0 25px;
  }
}
.cid-tWMr3kXcNV .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWMr3kXcNV .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWMr3kXcNV .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWMr3kXcNV .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWMr3kXcNV .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWMr3kXcNV .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWMr3kXcNV .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWMr3kXcNV .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWMr3kXcNV .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWMr3kXcNV .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWMr3kXcNV .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWMr3kXcNV .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWMr3kXcNV .mbr-section-title {
  color: #000000;
}
.cid-tWMr3kXcNV .panel-title-edit {
  color: #000000;
}
.cid-tWMr3kXcNV .panel-text {
  color: #000000;
}
.cid-tWJR11QXHN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #a7ffd8;
}
.cid-tWJR11QXHN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJR11QXHN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJR11QXHN .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWJR11QXHN .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWJR11QXHN .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWJR11QXHN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWJR11QXHN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWJR12PoDf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tWJR12PoDf .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWJR12PoDf .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWJR12PoDf .media-container-row .mbr-text1 {
  color: #fafafa;
  text-align: left;
}
.cid-tWJR12PoDf .media-container-row .mbr-text3 {
  color: #fafafa;
  text-align: right;
}
.cid-tWJR12PoDf a {
  background-image: none !important;
}
.cid-tWJR12PoDf .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWJR12PoDf .container {
  padding: 5rem 1rem;
}
.cid-tWJR12PoDf p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWJR12PoDf p {
    text-align: center !important;
  }
}
.cid-tWJR12PoDf .media-container-row .mbr-text2,
.cid-tWJR12PoDf .line {
  color: #fafafa;
  text-align: left;
}
.cid-tWJTL5929d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWJTL5929d nav.navbar {
  position: fixed;
}
.cid-tWJTL5929d .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWJTL5929d .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWJTL5929d .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWJTL5929d .dropdown-item:hover,
.cid-tWJTL5929d .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tWJTL5929d .dropdown-item:hover span {
  color: white;
}
.cid-tWJTL5929d .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWJTL5929d .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWJTL5929d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWJTL5929d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWJTL5929d .nav-link {
  position: relative;
}
.cid-tWJTL5929d .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWJTL5929d .container {
    flex-wrap: nowrap;
  }
}
.cid-tWJTL5929d .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWJTL5929d .dropdown-menu,
.cid-tWJTL5929d .navbar.opened {
  background: #a7ffd8 !important;
}
.cid-tWJTL5929d .nav-item:focus,
.cid-tWJTL5929d .nav-link:focus {
  outline: none;
}
.cid-tWJTL5929d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWJTL5929d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWJTL5929d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWJTL5929d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWJTL5929d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWJTL5929d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWJTL5929d .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #a7ffd8;
}
.cid-tWJTL5929d .navbar.opened {
  transition: all 0.3s;
}
.cid-tWJTL5929d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWJTL5929d .navbar .navbar-logo img {
  width: auto;
}
.cid-tWJTL5929d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWJTL5929d .navbar.collapsed {
  justify-content: center;
}
.cid-tWJTL5929d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWJTL5929d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWJTL5929d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWJTL5929d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWJTL5929d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWJTL5929d .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tWJTL5929d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWJTL5929d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWJTL5929d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWJTL5929d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWJTL5929d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWJTL5929d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWJTL5929d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWJTL5929d .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tWJTL5929d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWJTL5929d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWJTL5929d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWJTL5929d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWJTL5929d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWJTL5929d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWJTL5929d .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWJTL5929d .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWJTL5929d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWJTL5929d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWJTL5929d .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWJTL5929d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWJTL5929d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWJTL5929d .dropdown-item.active,
.cid-tWJTL5929d .dropdown-item:active {
  background-color: transparent;
}
.cid-tWJTL5929d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWJTL5929d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWJTL5929d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWJTL5929d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a7ffd8;
}
.cid-tWJTL5929d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWJTL5929d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWJTL5929d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWJTL5929d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWJTL5929d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWJTL5929d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWJTL5929d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWJTL5929d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWJTL5929d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWJTL5929d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWJTL5929d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWJTL5929d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWJTL5929d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWJTL5929d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWJTL5929d .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWJTL5929d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWJTL5929d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tWJTL5929d .navbar {
    height: 70px;
  }
  .cid-tWJTL5929d .navbar.opened {
    height: auto;
  }
  .cid-tWJTL5929d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWJTL5I5N4 {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/best-weight-gain-supplements-for-skinny-women.jpg");
  overflow: hidden;
}
.cid-tWJTL5I5N4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTL5I5N4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJTL5I5N4 path {
  fill: #e43f3f;
}
@keyframes wave3 {
  0% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
  50% {
    transform: scaleY(1.1) translate(-50%, -50%);
  }
  100% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
}
.cid-tWJTL5I5N4 b,
.cid-tWJTL5I5N4 strong {
  font-weight: 900;
}
.cid-tWJTL5I5N4 svg {
  position: absolute;
  top: 30px;
  left: 45%;
  right: 50%;
  animation: 5s ease infinite wave3;
  transform-origin: top;
  transform: scaleY(0.8) translate(-50%, -50%);
}
.cid-tWJTL5I5N4 a {
  font-weight: 900;
  background: #ff6666;
}
.cid-tWJTL5I5N4 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tWJTL5I5N4 .mbr-text,
.cid-tWJTL5I5N4 .mbr-section-btn {
  text-align: center;
  color: #ffe885;
}
.cid-tWJTL5I5N4 .mbr-section-title {
  text-align: left;
  color: #fff0b0;
}
.cid-tWJTL6gTob {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #173d33;
  position: relative;
  overflow: hidden;
}
.cid-tWJTL6gTob .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTL6gTob .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJTL6gTob .bg-frame {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  opacity: 0.7;
  width: 25vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #7e1a3c;
  box-shadow: 0 0 40px #7e1a3c;
  filter: blur(130px);
}
@media (max-width: 767px) {
  .cid-tWJTL6gTob .bg-frame {
    width: 50vw;
  }
}
.cid-tWJTL6gTob .row {
  position: relative;
  z-index: 3;
}
.cid-tWJTL6gTob .title-container {
  margin-top: 2rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWJTL6gTob .title-container {
    margin-top: 0;
    margin-bottom: 60px;
  }
}
.cid-tWJTL6gTob .mbr-section-title {
  color: #ffffff;
}
.cid-tWJTL6gTob .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tWJTL6gTob .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 1rem;
}
.cid-tWJTL6gTob .list-container {
  width: 100%;
}
.cid-tWJTL6gTob .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tWJTL6gTob .list-item {
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
}
@media (max-width: 575px) {
  .cid-tWJTL6gTob .list-item {
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
}
.cid-tWJTL6gTob .list-item-title {
  width: 25%;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tWJTL6gTob .list-item-title {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-tWJTL6gTob .list-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tWJTL6gTob .list-item-text {
  width: 75%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tWJTL6gTob .list-item-text {
    width: 100%;
  }
}
.cid-tWJTL6gTob .list-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tWJTL6SfQ3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWJTL6SfQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTL6SfQ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJTL6SfQ3 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #7e1a3c, #a7ffd8);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tWJTL6SfQ3 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tWJTL6SfQ3 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tWJTL6SfQ3 .card-title {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWJTL6SfQ3 .card-title {
    margin-bottom: 20px;
  }
}
.cid-tWJTL6SfQ3 .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tWJTL6SfQ3 .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tWJTL6SfQ3 .card-text {
  color: #03250f;
  margin-bottom: 0;
}
.cid-tWJTL7iDJj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWJTL7iDJj .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #7e1a3c;
  border-bottom: 1px solid #7e1a3c;
  z-index: 1;
}
.cid-tWJTL7iDJj .content_wrapper:hover .mbr-section-title a {
  color: #ff6666 !important;
}
.cid-tWJTL7iDJj .mbr-section-title {
  margin-bottom: 12px;
}
.cid-tWJTL7iDJj .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-tWJTL7iDJj .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-tWJTL7iDJj .mbr-section-btn .btn-secondary-outline:hover,
.cid-tWJTL7iDJj .mbr-section-btn .btn-secondary-outline .active,
.cid-tWJTL7iDJj .mbr-section-btn .btn-secondary-outline:focus {
  color: #e43f3f !important;
}
.cid-tWJTL7iDJj .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-tWJTL7iDJj .image_post {
  display: inline-block;
}
.cid-tWJTL7iDJj .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-tWJTL7iDJj .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-tWJTL7iDJj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTL7iDJj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJTL7Q1G7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
@media (max-width: 992px) {
  .cid-tWJTL7Q1G7 .container {
    padding: 0 25px;
  }
}
.cid-tWJTL7Q1G7 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWJTL7Q1G7 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWJTL7Q1G7 .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWJTL7Q1G7 .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWJTL7Q1G7 .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWJTL7Q1G7 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWJTL7Q1G7 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWJTL7Q1G7 .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWJTL7Q1G7 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWJTL7Q1G7 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWJTL7Q1G7 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWJTL7Q1G7 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWJTL7Q1G7 .mbr-section-title {
  color: #fff0b0;
}
.cid-tWJTL7Q1G7 .panel-title-edit {
  color: #fff0b0;
}
.cid-tWJTL7Q1G7 .panel-text {
  color: #000000;
}
.cid-tWJTL8yuZG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a7ffd8;
}
.cid-tWJTL8yuZG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTL8yuZG h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-tWJTL8yuZG h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #e43f3f;
  z-index: -1;
}
.cid-tWJTL8yuZG h1 a:hover {
  color: inherit !important;
}
.cid-tWJTL8yuZG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJTL8yuZG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWJTL8yuZG .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tWJTL8yuZG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWJTL8yuZG .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-tWJTL8yuZG .mbr-section-subtitle,
.cid-tWJTL8yuZG .subtitle-wrap {
  color: #19303d;
}
.cid-tWJTL8yuZG .mbr-text,
.cid-tWJTL8yuZG .mbr-section-btn {
  color: #19303d;
  text-align: left;
}
.cid-tWJTL94OwC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWJTL94OwC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTL94OwC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJTL94OwC .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWJTL94OwC .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWJTL94OwC .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWJTL94OwC .mbr-section-title {
  color: #131313;
}
.cid-tWJTL94OwC .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWJTL94OwC .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWJTL94OwC .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWJTL94OwC .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWJTL94OwC .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWJTL94OwC .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWJTL94OwC .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWJTL94OwC .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWJTL94OwC .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWJTL94OwC .card-title {
  color: #131313;
}
.cid-tWJTL94OwC .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tWJTL94OwC .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJTL94OwC .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWJTL94OwC .card-link {
    margin-top: 15px;
  }
}
.cid-tWJTL94OwC .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWJTL94OwC .card-title,
.cid-tWJTL94OwC .iconfont-wrapper {
  text-align: center;
}
.cid-tWJTL9JrEH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWJTL9JrEH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTL9JrEH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWJTL9JrEH .container {
    padding: 0 15px;
  }
}
.cid-tWJTL9JrEH .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-tWJTL9JrEH .title-wrapper .mbr-section-title {
    padding: 0;
  }
}
.cid-tWJTL9JrEH .content-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tWJTL9JrEH .content-wrapper .mbr-name {
  margin: 0;
}
.cid-tWJTL9JrEH .mbr-section-title {
  color: #000000;
}
.cid-tWJTL9JrEH .mbr-text {
  color: #000000;
}
.cid-tWJTL9JrEH .mbr-name {
  color: #f2ac2b;
}
.cid-tWJTLah9rD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tWJTLah9rD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTLah9rD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJTLah9rD .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWJTLah9rD .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWJTLah9rD .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWJTLah9rD .mbr-section-title {
  color: #131313;
}
.cid-tWJTLah9rD .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWJTLah9rD .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWJTLah9rD .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWJTLah9rD .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #a7ffd8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWJTLah9rD .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tWJTLah9rD .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWJTLah9rD .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tWJTLah9rD .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tWJTLah9rD .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWJTLah9rD .card-title {
  color: #131313;
}
.cid-tWJTLah9rD .card-text {
  margin-top: 10px;
  color: #000000;
}
.cid-tWJTLah9rD .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJTLah9rD .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tWJTLah9rD .card-link {
    margin-top: 15px;
  }
}
.cid-tWJTLah9rD .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWJTLah9rD .card-title,
.cid-tWJTLah9rD .iconfont-wrapper {
  color: #353535;
}
.cid-tWJTLaYZcO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWJTLaYZcO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTLaYZcO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJTLaYZcO .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tWJTLaYZcO .container-fluid {
    padding: 0 12px;
  }
}
.cid-tWJTLaYZcO .container-fluid .row {
  padding: 0;
}
.cid-tWJTLaYZcO .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tWJTLaYZcO .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tWJTLaYZcO .card {
    padding: 48px 20px;
  }
}
.cid-tWJTLaYZcO .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tWJTLaYZcO .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWJTLaYZcO .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tWJTLaYZcO .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tWJTLaYZcO .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tWJTLbxh56 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWJTLbxh56 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #a7ffd8;
}
.cid-tWJTLbxh56 .mbr-section-title {
  color: #000000;
}
.cid-tWJTLbxh56 .mbr-text {
  color: #000000;
}
.cid-tWJTLbYDFH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a7ffd8;
}
.cid-tWJTLbYDFH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTLbYDFH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJTLbYDFH .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tWJTLbYDFH .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWJTLbYDFH .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tWJTLbYDFH .mbr-section-title {
  color: #131313;
}
.cid-tWJTLbYDFH .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tWJTLbYDFH .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tWJTLbYDFH .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tWJTLbYDFH .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tWJTLbYDFH .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWJTLbYDFH .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWJTLbYDFH .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tWJTLbYDFH .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tWJTLbYDFH .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tWJTLbYDFH .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tWJTLbYDFH .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tWJTLbYDFH .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tWJTLbYDFH .content-wrap {
    margin-top: 0;
  }
}
.cid-tWJTLbYDFH .card-title {
  color: #131313;
}
.cid-tWJTLbYDFH .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJTLbYDFH .card-text {
    margin-top: 15px;
  }
}
.cid-tWJTLbYDFH .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tWJTLbYDFH .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWJTLbYDFH .card-link {
    margin-top: 15px;
  }
}
.cid-tWJTLbYDFH .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tWJTLcTASd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tWJTLdH4hC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a7ffd8;
}
.cid-tWJTLdH4hC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTLdH4hC .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-tWJTLdH4hC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tWJTLdH4hC .row {
  flex-direction: row-reverse;
}
.cid-tWJTLdH4hC img {
  width: 100%;
}
.cid-tWJTLf8Xu3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tWJTLf8Xu3 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tWJTLf8Xu3 .mbr-text {
  color: #ffffff;
}
.cid-tWMsJKdCSV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tWMsJKdCSV .container {
    padding: 0 25px;
  }
}
.cid-tWMsJKdCSV .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tWMsJKdCSV .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tWMsJKdCSV .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-tWMsJKdCSV .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tWMsJKdCSV .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tWMsJKdCSV .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWMsJKdCSV .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWMsJKdCSV .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tWMsJKdCSV .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tWMsJKdCSV .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tWMsJKdCSV .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tWMsJKdCSV .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tWMsJKdCSV .mbr-section-title {
  color: #000000;
}
.cid-tWMsJKdCSV .panel-title-edit {
  color: #000000;
}
.cid-tWMsJKdCSV .panel-text {
  color: #000000;
}
.cid-tWJTLevzip {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #a7ffd8;
}
.cid-tWJTLevzip .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWJTLevzip .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWJTLevzip .google-map {
  height: 30rem;
  position: relative;
}
.cid-tWJTLevzip .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWJTLevzip .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWJTLevzip .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWJTLevzip .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWJTLfDZNV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #353535;
  overflow: hidden;
}
.cid-tWJTLfDZNV .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-tWJTLfDZNV .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-tWJTLfDZNV .media-container-row .mbr-text1 {
  color: #fafafa;
  text-align: left;
}
.cid-tWJTLfDZNV .media-container-row .mbr-text3 {
  color: #fafafa;
  text-align: right;
}
.cid-tWJTLfDZNV a {
  background-image: none !important;
}
.cid-tWJTLfDZNV .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-tWJTLfDZNV .container {
  padding: 5rem 1rem;
}
.cid-tWJTLfDZNV p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-tWJTLfDZNV p {
    text-align: center !important;
  }
}
.cid-tWJTLfDZNV .media-container-row .mbr-text2,
.cid-tWJTLfDZNV .line {
  color: #fafafa;
  text-align: left;
}
