.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Raleway', sans-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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .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: #42c587 !important;
}
.bg-success {
  background-color: #02693e !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: #42c587 !important;
  border-color: #42c587 !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: #29875b !important;
  border-color: #29875b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #29875b !important;
  border-color: #29875b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #21a567 !important;
  border-color: #21a567 !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: #135d3a !important;
  border-color: #135d3a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #135d3a !important;
  border-color: #135d3a !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: #02693e !important;
  border-color: #02693e !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: #00140c !important;
  border-color: #00140c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #00140c !important;
  border-color: #00140c !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: #42c587;
  color: #42c587;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #29875b !important;
  background-color: transparent!important;
  border-color: #29875b !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #42c587 !important;
  border-color: #42c587 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #21a567;
  color: #21a567;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #135d3a !important;
  background-color: transparent!important;
  border-color: #135d3a !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #21a567 !important;
  border-color: #21a567 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #02693e;
  color: #02693e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #00140c !important;
  background-color: transparent!important;
  border-color: #00140c !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #02693e !important;
  border-color: #02693e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  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: #ffd10a !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: #ff9966;
  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: #ff5f0f !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: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #42c587 !important;
}
.text-secondary {
  color: #21a567 !important;
}
.text-success {
  color: #02693e !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: #267b53 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #105032 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000503 !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: #42c587;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #42c587;
  border-color: #42c587;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #42c587;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a4e3c5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #04e688;
}
.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: 'Raleway', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #42c587 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #42c587;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #42c587;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #42c587;
}
.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: #42c587;
  border-bottom-color: #42c587;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #42c587 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #21a567 !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='%2342c587' %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-soOsoK7K8V .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-soOsoK7K8V .nav-item,
.cid-soOsoK7K8V .nav-link,
.cid-soOsoK7K8V .navbar-caption {
  font-weight: normal;
}
.cid-soOsoK7K8V .nav-item:focus,
.cid-soOsoK7K8V .nav-link:focus {
  outline: none;
}
.cid-soOsoK7K8V .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-soOsoK7K8V .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-soOsoK7K8V .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-soOsoK7K8V .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-soOsoK7K8V .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-soOsoK7K8V .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-soOsoK7K8V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-soOsoK7K8V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-soOsoK7K8V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-soOsoK7K8V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-soOsoK7K8V .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fafafa;
}
.cid-soOsoK7K8V .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-soOsoK7K8V .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-soOsoK7K8V .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-soOsoK7K8V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-soOsoK7K8V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soOsoK7K8V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-soOsoK7K8V .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-soOsoK7K8V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soOsoK7K8V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soOsoK7K8V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soOsoK7K8V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-soOsoK7K8V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-soOsoK7K8V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-soOsoK7K8V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soOsoK7K8V .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-soOsoK7K8V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soOsoK7K8V .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soOsoK7K8V .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-soOsoK7K8V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soOsoK7K8V .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-soOsoK7K8V .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-soOsoK7K8V .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soOsoK7K8V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-soOsoK7K8V .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-soOsoK7K8V .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-soOsoK7K8V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-soOsoK7K8V .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-soOsoK7K8V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soOsoK7K8V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soOsoK7K8V .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-soOsoK7K8V .dropdown-item.active,
.cid-soOsoK7K8V .dropdown-item:active {
  background-color: transparent;
}
.cid-soOsoK7K8V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soOsoK7K8V .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soOsoK7K8V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-soOsoK7K8V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-soOsoK7K8V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soOsoK7K8V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-soOsoK7K8V .navbar-buttons {
  text-align: center;
}
.cid-soOsoK7K8V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soOsoK7K8V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-soOsoK7K8V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soOsoK7K8V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soOsoK7K8V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-soOsoK7K8V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soOsoK7K8V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soOsoK7K8V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-soOsoK7K8V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-soOsoK7K8V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soOsoK7K8V .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-soOsoK7K8V a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-soOsoK7K8V .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-soOsoK7K8V .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-soOsoK7K8V .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-soOsoK7K8V .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-soOsoK7K8V .navbar {
    height: 77px;
  }
  .cid-soOsoK7K8V .navbar.opened {
    height: auto;
  }
  .cid-soOsoK7K8V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfpNjBNYHX .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sfpNjBNYHX .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sfpNjBNYHX .mbr-section-title {
  color: #ffffff;
}
.cid-sfpNjBNYHX .mbr-text,
.cid-sfpNjBNYHX .mbr-section-btn {
  color: #ffffff;
}
.cid-sqIBeXLxYR {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sqIBeXLxYR H3 {
  text-align: left;
  color: #02693e;
}
.cid-sqIBeXLxYR .mbr-text,
.cid-sqIBeXLxYR .mbr-section-btn {
  color: #02693e;
}
.cid-sqIBA4HvCu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sqIBA4HvCu .mbr-text,
.cid-sqIBA4HvCu .mbr-section-btn {
  color: #000000;
}
.cid-sqIBA4HvCu H3 {
  color: #000000;
}
.cid-sqIBA4HvCu blockquote {
  padding: 1em 20px;
}
.cid-sri1AHfTOy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sri1AHfTOy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sri1AHfTOy .row {
  flex-direction: row-reverse;
}
.cid-sri1AHfTOy img {
  width: 100%;
}
.cid-sqIAwtc0PG {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sqIgQVi9GE {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqIgQVi9GE .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-sqIgQVi9GE .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sqIgQVi9GE .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sqIgQVi9GE .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-sqIgQVi9GE .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-sqIgQVi9GE .card-box {
  padding: 1rem;
}
.cid-sqIgQVi9GE .mbr-section-title,
.cid-sqIgQVi9GE .line-wrap {
  text-align: center;
}
.cid-sqIgQVi9GE .card-box > p,
.cid-sqIgQVi9GE .mbr-section-btn {
  text-align: left;
  color: #9e9e9e;
}
.cid-sqIgUihPhd {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqIgUihPhd .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-sqIgUihPhd .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sqIgUihPhd .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sqIgUihPhd .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-sqIgUihPhd .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-sqIgUihPhd .card-box {
  padding: 1rem;
}
.cid-sqIgUihPhd .mbr-section-title,
.cid-sqIgUihPhd .line-wrap {
  text-align: center;
}
.cid-sqIgUihPhd .card-box > p,
.cid-sqIgUihPhd .mbr-section-btn {
  text-align: left;
  color: #9e9e9e;
}
.cid-tTktIpDkEY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tTktIpDkEY .google-map {
  height: 25rem;
  position: relative;
}
.cid-tTktIpDkEY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tTktIpDkEY .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tTktIpDkEY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tTktIpDkEY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tTktIpDkEY .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tTktIpDkEY .form-container {
  padding: 3rem;
}
.cid-tTktIpDkEY .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-tTktIpDkEY .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #02693e, #21a567);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tTktIpDkEY .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-tTktIpDkEY .form-group,
  .cid-tTktIpDkEY .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tTktIpDkEY .form-control {
  border-radius: .25rem !important;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-tTktIpDkEY textarea.form-control {
  min-height: 170px;
}
@media (max-width: 767px) {
  .cid-tTktIpDkEY .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tTktIpDkEY .text-block {
    margin-bottom: 2rem;
  }
  .cid-tTktIpDkEY .wrapper {
    margin-top: 0;
  }
}
.cid-tTktIpDkEY .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tTktIpDkEY .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-tTktIpDkEY .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tTktIpDkEY .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-tTktIpDkEY .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tTktIpDkEY .social-list a:hover {
  opacity: 1;
}
.cid-spub5HvPFV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spub5HvPFV [class^="socicon-"]:before,
.cid-spub5HvPFV [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-spub5HvPFV .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #02693e;
  border-width: 2px;
  transition: all .3s;
  border-color: #02693e;
}
.cid-spub5HvPFV .btn-social:hover {
  background: #02693e;
}
.cid-spub5HvPFV .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-spnqCaaYMa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spnqCaaYMa .navbar-logo {
  width: 200px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-spnqCaaYMa .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-spnqCaaYMa .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spnqCaaYMa .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-spnqCaaYMa .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-spnqCaaYMa .text2 {
  color: #000000;
  text-align: left;
}
.cid-spnqCaaYMa .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-spnqCaaYMa .logo-title {
  text-align: center;
}
.cid-spnqCaaYMa .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-spnqCaaYMa .links {
  text-align: center;
  color: #656565;
}
.cid-spnqCaaYMa .logo-sub-title i {
  color: #9e9e9e;
}
.cid-spnqCaaYMa .links,
.cid-spnqCaaYMa .social-list {
  color: #232323;
}
.cid-spnqCaaYMa .logo-title,
.cid-spnqCaaYMa .logo {
  color: #232323;
}
.cid-spoqiHS8O2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spoqiHS8O2 .nav-item,
.cid-spoqiHS8O2 .nav-link,
.cid-spoqiHS8O2 .navbar-caption {
  font-weight: normal;
}
.cid-spoqiHS8O2 .nav-item:focus,
.cid-spoqiHS8O2 .nav-link:focus {
  outline: none;
}
.cid-spoqiHS8O2 .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-spoqiHS8O2 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spoqiHS8O2 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spoqiHS8O2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spoqiHS8O2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spoqiHS8O2 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spoqiHS8O2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spoqiHS8O2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spoqiHS8O2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spoqiHS8O2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spoqiHS8O2 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fafafa;
}
.cid-spoqiHS8O2 .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-spoqiHS8O2 .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-spoqiHS8O2 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spoqiHS8O2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spoqiHS8O2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spoqiHS8O2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-spoqiHS8O2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spoqiHS8O2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spoqiHS8O2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spoqiHS8O2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spoqiHS8O2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spoqiHS8O2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-spoqiHS8O2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spoqiHS8O2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spoqiHS8O2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spoqiHS8O2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spoqiHS8O2 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spoqiHS8O2 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-spoqiHS8O2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spoqiHS8O2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spoqiHS8O2 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spoqiHS8O2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spoqiHS8O2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-spoqiHS8O2 .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-spoqiHS8O2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-spoqiHS8O2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spoqiHS8O2 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spoqiHS8O2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spoqiHS8O2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spoqiHS8O2 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-spoqiHS8O2 .dropdown-item.active,
.cid-spoqiHS8O2 .dropdown-item:active {
  background-color: transparent;
}
.cid-spoqiHS8O2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spoqiHS8O2 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spoqiHS8O2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-spoqiHS8O2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spoqiHS8O2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spoqiHS8O2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spoqiHS8O2 .navbar-buttons {
  text-align: center;
}
.cid-spoqiHS8O2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spoqiHS8O2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-spoqiHS8O2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spoqiHS8O2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spoqiHS8O2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spoqiHS8O2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spoqiHS8O2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spoqiHS8O2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spoqiHS8O2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spoqiHS8O2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spoqiHS8O2 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-spoqiHS8O2 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spoqiHS8O2 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spoqiHS8O2 .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spoqiHS8O2 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-spoqiHS8O2 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spoqiHS8O2 .navbar {
    height: 77px;
  }
  .cid-spoqiHS8O2 .navbar.opened {
    height: auto;
  }
  .cid-spoqiHS8O2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sqIEXahOaA {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #02693e;
}
.cid-spoQbfxXvI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spoQbfxXvI .row {
  border-top: 1px solid #bbbbbb;
  padding-top: 2rem;
}
.cid-spoQbfxXvI .mbr-text {
  line-height: 1.5;
}
.cid-spoQbfxXvI .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-spoQbfxXvI .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-spoQbfxXvI .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-spoQbfxXvI .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-spoQbfxXvI .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-spoQbfxXvI .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-spoQbfxXvI .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-spoQbfxXvI .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-spoQbfxXvI .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-spoResIV44 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spoResIV44 .mbr-text {
  line-height: 1.5;
}
.cid-spoResIV44 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-spoResIV44 .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-spoResIV44 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-spoResIV44 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-spoResIV44 .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-spoResIV44 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-spoResIV44 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-spoResIV44 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-spoResIV44 .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-sppd9uh2rD {
  padding-top: 0px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sppd9uh2rD .mbr-section-subtitle {
  color: #767676;
}
.cid-sppd9uh2rD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sppd9uh2rD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sppd9uh2rD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sppd9uh2rD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sppd9uh2rD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #42c587;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sppd9uh2rD .icon-focus,
.cid-sppd9uh2rD .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sppd9uh2rD .icon-focus:before,
.cid-sppd9uh2rD .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sppd9uh2rD .icon-video {
  font-size: 1.5rem !important;
}
.cid-sppd9uh2rD .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sppd9uh2rD ul {
  font-size: 0;
}
.cid-sppd9uh2rD .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sppd9uh2rD .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sppd9uh2rD .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #42c587 !important;
}
.cid-sppd9uh2rD .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sppd9uh2rD .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sppd9uh2rD .mbr-gallery-filter ul li.active .btn:after {
  border-color: #42c587;
}
.cid-sppd9uh2rD .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sppd9uh2rD .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sppd9uh2rD .mbr-gallery-filter ul li:first-child,
.cid-sppd9uh2rD .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sppd9uh2rD .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sppd9uh2rD .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-spoWQnZVgM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spoWQnZVgM .row {
  border-top: 1px solid #bbbbbb;
  padding-top: 2rem;
}
.cid-spoWQnZVgM .mbr-text {
  line-height: 1.5;
}
.cid-spoWQnZVgM .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-spoWQnZVgM .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-spoWQnZVgM .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-spoWQnZVgM .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-spoWQnZVgM .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-spoWQnZVgM .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-spoWQnZVgM .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-spoWQnZVgM .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-spoWQnZVgM .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-spoXmv7OH9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spoXmv7OH9 .mbr-text {
  line-height: 1.5;
}
.cid-spoXmv7OH9 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-spoXmv7OH9 .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-spoXmv7OH9 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-spoXmv7OH9 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-spoXmv7OH9 .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-spoXmv7OH9 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-spoXmv7OH9 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-spoXmv7OH9 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-spoXmv7OH9 .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-sppc6za4tm {
  padding-top: 0px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sppc6za4tm .mbr-section-subtitle {
  color: #02693e;
}
.cid-sppc6za4tm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sppc6za4tm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sppc6za4tm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sppc6za4tm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sppc6za4tm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #42c587;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sppc6za4tm .icon-focus,
.cid-sppc6za4tm .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sppc6za4tm .icon-focus:before,
.cid-sppc6za4tm .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sppc6za4tm .icon-video {
  font-size: 1.5rem !important;
}
.cid-sppc6za4tm .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sppc6za4tm ul {
  font-size: 0;
}
.cid-sppc6za4tm .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sppc6za4tm .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sppc6za4tm .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #42c587 !important;
}
.cid-sppc6za4tm .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sppc6za4tm .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sppc6za4tm .mbr-gallery-filter ul li.active .btn:after {
  border-color: #42c587;
}
.cid-sppc6za4tm .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sppc6za4tm .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sppc6za4tm .mbr-gallery-filter ul li:first-child,
.cid-sppc6za4tm .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sppc6za4tm .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sppc6za4tm .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-spp6EHraxg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spp6EHraxg .row {
  border-top: 1px solid #bbbbbb;
  padding-top: 2rem;
}
.cid-spp6EHraxg .mbr-text {
  line-height: 1.5;
}
.cid-spp6EHraxg .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-spp6EHraxg .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-spp6EHraxg .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-spp6EHraxg .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-spp6EHraxg .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-spp6EHraxg .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-spp6EHraxg .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-spp6EHraxg .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-spp6EHraxg .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-spp6FyazS2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spp6FyazS2 .mbr-text {
  line-height: 1.5;
}
.cid-spp6FyazS2 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-spp6FyazS2 .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-spp6FyazS2 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-spp6FyazS2 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-spp6FyazS2 .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-spp6FyazS2 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-spp6FyazS2 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-spp6FyazS2 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-spp6FyazS2 .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-sppae4I2na {
  padding-top: 0px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sppae4I2na .mbr-section-subtitle {
  color: #767676;
}
.cid-sppae4I2na .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sppae4I2na .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sppae4I2na .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sppae4I2na .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sppae4I2na .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #42c587;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sppae4I2na .icon-focus,
.cid-sppae4I2na .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sppae4I2na .icon-focus:before,
.cid-sppae4I2na .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sppae4I2na .icon-video {
  font-size: 1.5rem !important;
}
.cid-sppae4I2na .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sppae4I2na ul {
  font-size: 0;
}
.cid-sppae4I2na .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sppae4I2na .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sppae4I2na .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #42c587 !important;
}
.cid-sppae4I2na .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sppae4I2na .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sppae4I2na .mbr-gallery-filter ul li.active .btn:after {
  border-color: #42c587;
}
.cid-sppae4I2na .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sppae4I2na .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sppae4I2na .mbr-gallery-filter ul li:first-child,
.cid-sppae4I2na .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sppae4I2na .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sppae4I2na .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sppd5hXOwg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sppd5hXOwg .row {
  border-top: 1px solid #bbbbbb;
  padding-top: 2rem;
}
.cid-sppd5hXOwg .mbr-text {
  line-height: 1.5;
}
.cid-sppd5hXOwg .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sppd5hXOwg .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-sppd5hXOwg .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sppd5hXOwg .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sppd5hXOwg .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-sppd5hXOwg .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sppd5hXOwg .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sppd5hXOwg .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sppd5hXOwg .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-sppd63UQfO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sppd63UQfO .mbr-text {
  line-height: 1.5;
}
.cid-sppd63UQfO .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sppd63UQfO .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-sppd63UQfO .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-sppd63UQfO .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-sppd63UQfO .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-sppd63UQfO .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-sppd63UQfO .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-sppd63UQfO .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sppd63UQfO .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-sppd8uh455 {
  padding-top: 0px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sppd8uh455 .mbr-section-subtitle {
  color: #767676;
}
.cid-sppd8uh455 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sppd8uh455 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sppd8uh455 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sppd8uh455 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sppd8uh455 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #42c587;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sppd8uh455 .icon-focus,
.cid-sppd8uh455 .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sppd8uh455 .icon-focus:before,
.cid-sppd8uh455 .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sppd8uh455 .icon-video {
  font-size: 1.5rem !important;
}
.cid-sppd8uh455 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sppd8uh455 ul {
  font-size: 0;
}
.cid-sppd8uh455 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sppd8uh455 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sppd8uh455 .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #42c587 !important;
}
.cid-sppd8uh455 .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sppd8uh455 .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sppd8uh455 .mbr-gallery-filter ul li.active .btn:after {
  border-color: #42c587;
}
.cid-sppd8uh455 .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sppd8uh455 .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sppd8uh455 .mbr-gallery-filter ul li:first-child,
.cid-sppd8uh455 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sppd8uh455 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sppd8uh455 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-tT5fsPb8lI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT5fsPb8lI .row {
  border-top: 1px solid #bbbbbb;
  padding-top: 2rem;
}
.cid-tT5fsPb8lI .mbr-text {
  line-height: 1.5;
}
.cid-tT5fsPb8lI .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tT5fsPb8lI .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-tT5fsPb8lI .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-tT5fsPb8lI .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-tT5fsPb8lI .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-tT5fsPb8lI .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-tT5fsPb8lI .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-tT5fsPb8lI .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-tT5fsPb8lI .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-tT5fH3Dy9P {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT5fH3Dy9P .mbr-text {
  line-height: 1.5;
}
.cid-tT5fH3Dy9P .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tT5fH3Dy9P .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-tT5fH3Dy9P .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-tT5fH3Dy9P .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-tT5fH3Dy9P .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-tT5fH3Dy9P .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-tT5fH3Dy9P .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-tT5fH3Dy9P .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-tT5fH3Dy9P .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-tT5ftwAzHc {
  padding-top: 0px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tT5ftwAzHc .mbr-section-subtitle {
  color: #767676;
}
.cid-tT5ftwAzHc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tT5ftwAzHc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tT5ftwAzHc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tT5ftwAzHc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tT5ftwAzHc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #42c587;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tT5ftwAzHc .icon-focus,
.cid-tT5ftwAzHc .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tT5ftwAzHc .icon-focus:before,
.cid-tT5ftwAzHc .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tT5ftwAzHc .icon-video {
  font-size: 1.5rem !important;
}
.cid-tT5ftwAzHc .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tT5ftwAzHc ul {
  font-size: 0;
}
.cid-tT5ftwAzHc .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tT5ftwAzHc .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tT5ftwAzHc .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #42c587 !important;
}
.cid-tT5ftwAzHc .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-tT5ftwAzHc .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-tT5ftwAzHc .mbr-gallery-filter ul li.active .btn:after {
  border-color: #42c587;
}
.cid-tT5ftwAzHc .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-tT5ftwAzHc .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-tT5ftwAzHc .mbr-gallery-filter ul li:first-child,
.cid-tT5ftwAzHc .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tT5ftwAzHc .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tT5ftwAzHc .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-tT5gjMKDCW {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT5gjMKDCW .row {
  border-top: 1px solid #bbbbbb;
  padding-top: 2rem;
}
.cid-tT5gjMKDCW .mbr-text {
  line-height: 1.5;
}
.cid-tT5gjMKDCW .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tT5gjMKDCW .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-tT5gjMKDCW .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-tT5gjMKDCW .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-tT5gjMKDCW .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-tT5gjMKDCW .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-tT5gjMKDCW .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-tT5gjMKDCW .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-tT5gjMKDCW .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-tT5gkob8HP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT5gkob8HP .mbr-text {
  line-height: 1.5;
}
.cid-tT5gkob8HP .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tT5gkob8HP .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-tT5gkob8HP .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-tT5gkob8HP .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-tT5gkob8HP .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-tT5gkob8HP .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-tT5gkob8HP .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-tT5gkob8HP .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-tT5gkob8HP .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-tT5glgjE3q {
  padding-top: 0px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tT5glgjE3q .mbr-section-subtitle {
  color: #767676;
}
.cid-tT5glgjE3q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tT5glgjE3q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tT5glgjE3q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tT5glgjE3q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tT5glgjE3q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #42c587;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tT5glgjE3q .icon-focus,
.cid-tT5glgjE3q .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tT5glgjE3q .icon-focus:before,
.cid-tT5glgjE3q .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tT5glgjE3q .icon-video {
  font-size: 1.5rem !important;
}
.cid-tT5glgjE3q .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tT5glgjE3q ul {
  font-size: 0;
}
.cid-tT5glgjE3q .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tT5glgjE3q .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tT5glgjE3q .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #42c587 !important;
}
.cid-tT5glgjE3q .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-tT5glgjE3q .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-tT5glgjE3q .mbr-gallery-filter ul li.active .btn:after {
  border-color: #42c587;
}
.cid-tT5glgjE3q .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-tT5glgjE3q .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-tT5glgjE3q .mbr-gallery-filter ul li:first-child,
.cid-tT5glgjE3q .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tT5glgjE3q .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tT5glgjE3q .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-tT5gmtwQnH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT5gmtwQnH .row {
  border-top: 1px solid #bbbbbb;
  padding-top: 2rem;
}
.cid-tT5gmtwQnH .mbr-text {
  line-height: 1.5;
}
.cid-tT5gmtwQnH .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tT5gmtwQnH .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-tT5gmtwQnH .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-tT5gmtwQnH .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-tT5gmtwQnH .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-tT5gmtwQnH .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-tT5gmtwQnH .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-tT5gmtwQnH .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-tT5gmtwQnH .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-tT5gnr4NgN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT5gnr4NgN .mbr-text {
  line-height: 1.5;
}
.cid-tT5gnr4NgN .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tT5gnr4NgN .container2 input {
  position: absolute;
  opacity: 0;
}
.cid-tT5gnr4NgN .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-tT5gnr4NgN .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-tT5gnr4NgN .container2 input:checked ~ .checkmark {
  background-color: #42c587;
}
.cid-tT5gnr4NgN .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-tT5gnr4NgN .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-tT5gnr4NgN .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-tT5gnr4NgN .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-tT5gnZNSbJ {
  padding-top: 0px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tT5gnZNSbJ .mbr-section-subtitle {
  color: #767676;
}
.cid-tT5gnZNSbJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tT5gnZNSbJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tT5gnZNSbJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tT5gnZNSbJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tT5gnZNSbJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #42c587;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tT5gnZNSbJ .icon-focus,
.cid-tT5gnZNSbJ .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tT5gnZNSbJ .icon-focus:before,
.cid-tT5gnZNSbJ .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tT5gnZNSbJ .icon-video {
  font-size: 1.5rem !important;
}
.cid-tT5gnZNSbJ .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tT5gnZNSbJ ul {
  font-size: 0;
}
.cid-tT5gnZNSbJ .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tT5gnZNSbJ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tT5gnZNSbJ .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #42c587 !important;
}
.cid-tT5gnZNSbJ .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-tT5gnZNSbJ .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-tT5gnZNSbJ .mbr-gallery-filter ul li.active .btn:after {
  border-color: #42c587;
}
.cid-tT5gnZNSbJ .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-tT5gnZNSbJ .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-tT5gnZNSbJ .mbr-gallery-filter ul li:first-child,
.cid-tT5gnZNSbJ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tT5gnZNSbJ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tT5gnZNSbJ .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-spudvWa8oF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-spudvWa8oF img,
.cid-spudvWa8oF .item-img {
  width: 100%;
}
.cid-spudvWa8oF .item:focus,
.cid-spudvWa8oF span:focus {
  outline: none;
}
.cid-spudvWa8oF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-spudvWa8oF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-spudvWa8oF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-spudvWa8oF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-spudvWa8oF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-spudvWa8oF .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-spudvWa8oF .mbr-text,
.cid-spudvWa8oF .mbr-section-btn {
  text-align: left;
}
.cid-spudvWa8oF .item-title {
  text-align: left;
}
.cid-spudvWa8oF .item-subtitle {
  text-align: center;
}
.cid-spufEYoJcT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spufEYoJcT [class^="socicon-"]:before,
.cid-spufEYoJcT [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-spufEYoJcT .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #02693e;
  border-width: 2px;
  transition: all .3s;
  border-color: #02693e;
}
.cid-spufEYoJcT .btn-social:hover {
  background: #02693e;
}
.cid-spufEYoJcT .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-spoqiKYXjL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spoqiKYXjL .navbar-logo {
  width: 200px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-spoqiKYXjL .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-spoqiKYXjL .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spoqiKYXjL .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-spoqiKYXjL .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-spoqiKYXjL .text2 {
  color: #000000;
  text-align: left;
}
.cid-spoqiKYXjL .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-spoqiKYXjL .logo-title {
  text-align: center;
}
.cid-spoqiKYXjL .logo-sub-title {
  text-align: center;
  color: #000000;
}
.cid-spoqiKYXjL .links {
  text-align: center;
  color: #656565;
}
.cid-spoqiKYXjL .logo-sub-title i {
  color: #9e9e9e;
}
.cid-spuhxy48XZ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spuhxy48XZ .nav-item,
.cid-spuhxy48XZ .nav-link,
.cid-spuhxy48XZ .navbar-caption {
  font-weight: normal;
}
.cid-spuhxy48XZ .nav-item:focus,
.cid-spuhxy48XZ .nav-link:focus {
  outline: none;
}
.cid-spuhxy48XZ .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-spuhxy48XZ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-spuhxy48XZ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spuhxy48XZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-spuhxy48XZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-spuhxy48XZ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-spuhxy48XZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spuhxy48XZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spuhxy48XZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spuhxy48XZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spuhxy48XZ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fafafa;
}
.cid-spuhxy48XZ .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-spuhxy48XZ .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-spuhxy48XZ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-spuhxy48XZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spuhxy48XZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spuhxy48XZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-spuhxy48XZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spuhxy48XZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spuhxy48XZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spuhxy48XZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spuhxy48XZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spuhxy48XZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-spuhxy48XZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spuhxy48XZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spuhxy48XZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spuhxy48XZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spuhxy48XZ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spuhxy48XZ .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-spuhxy48XZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spuhxy48XZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-spuhxy48XZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spuhxy48XZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spuhxy48XZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-spuhxy48XZ .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-spuhxy48XZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-spuhxy48XZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spuhxy48XZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spuhxy48XZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spuhxy48XZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spuhxy48XZ .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-spuhxy48XZ .dropdown-item.active,
.cid-spuhxy48XZ .dropdown-item:active {
  background-color: transparent;
}
.cid-spuhxy48XZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spuhxy48XZ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spuhxy48XZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-spuhxy48XZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spuhxy48XZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spuhxy48XZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spuhxy48XZ .navbar-buttons {
  text-align: center;
}
.cid-spuhxy48XZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spuhxy48XZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-spuhxy48XZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spuhxy48XZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spuhxy48XZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spuhxy48XZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spuhxy48XZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spuhxy48XZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spuhxy48XZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spuhxy48XZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spuhxy48XZ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-spuhxy48XZ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spuhxy48XZ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-spuhxy48XZ .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spuhxy48XZ .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-spuhxy48XZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spuhxy48XZ .navbar {
    height: 77px;
  }
  .cid-spuhxy48XZ .navbar.opened {
    height: auto;
  }
  .cid-spuhxy48XZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sqIEzwseJI {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #02693e;
}
.cid-sqIEzwseJI .row {
  flex-direction: row-reverse;
}
.cid-sqIEzwseJI .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sqIEzwseJI .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sqIEzwseJI .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sqIEzwseJI .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sqIEzwseJI .mbr-text,
.cid-sqIEzwseJI .mbr-section-btn {
  text-align: left;
}
.cid-sputfxZIvJ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sputfxZIvJ .timeline-element {
  position: relative;
}
.cid-sputfxZIvJ .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sputfxZIvJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sputfxZIvJ .mbr-section-title,
.cid-sputfxZIvJ .mbr-section-subtitle,
.cid-sputfxZIvJ .timeline-date {
  text-align: center;
}
.cid-sputfxZIvJ .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #42c587;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sputfxZIvJ .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sputfxZIvJ .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sputfxZIvJ .row:after {
  content: "";
  position: absolute;
  background-color: #42c587;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sputfxZIvJ .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sputfxZIvJ .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sputfxZIvJ .timeline-date-wrapper,
  .cid-sputfxZIvJ .timeline-text-wrapper,
  .cid-sputfxZIvJ .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sputfxZIvJ .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-sputfxZIvJ .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sputfxZIvJ .timeline-date-wrapper,
  .cid-sputfxZIvJ .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sputfxZIvJ .timeline-date-wrapper,
  .cid-sputfxZIvJ .timeline-text-wrapper,
  .cid-sputfxZIvJ .image-wrapper {
    padding: 2rem;
  }
}
.cid-spLNUNi1qu {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-spLNUNi1qu .google-map {
  height: 25rem;
  position: relative;
}
.cid-spLNUNi1qu .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-spLNUNi1qu .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-spLNUNi1qu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-spLNUNi1qu .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-spLNUNi1qu .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-spLNUNi1qu .form-container {
  padding: 3rem;
}
.cid-spLNUNi1qu .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-spLNUNi1qu .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #21a567, #02824c);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-spLNUNi1qu .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-spLNUNi1qu .form-group,
  .cid-spLNUNi1qu .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-spLNUNi1qu .form-control {
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
  padding: .5rem 1rem;
  background-color: #ffffff;
  border: 1px solid #efefef;
  color: #565656;
  border-radius: .25rem;
  font-size: 1rem;
  line-height: 1.43;
}
.cid-spLNUNi1qu .form-control:focus,
.cid-spLNUNi1qu .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #ffffff;
}
.cid-spLNUNi1qu textarea.form-control {
  min-height: 170px;
}
.cid-spLNUNi1qu .form-group {
  margin-bottom: 1rem;
}
.cid-spLNUNi1qu input::-webkit-input-placeholder,
.cid-spLNUNi1qu textarea::-webkit-input-placeholder {
  color: #565656;
}
.cid-spLNUNi1qu input:-moz-placeholder,
.cid-spLNUNi1qu textarea:-moz-placeholder {
  color: #565656;
}
.cid-spLNUNi1qu .jq-selectbox li,
.cid-spLNUNi1qu .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-spLNUNi1qu .jq-selectbox li:hover,
.cid-spLNUNi1qu .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-spLNUNi1qu .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-spLNUNi1qu .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-spLNUNi1qu .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-spLNUNi1qu .text-block {
    margin-bottom: 2rem;
  }
  .cid-spLNUNi1qu .wrapper {
    margin-top: 0;
  }
}
.cid-spLNUNi1qu .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-spLNUNi1qu .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-spLNUNi1qu .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-spLNUNi1qu .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-spLNUNi1qu .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-spLNUNi1qu .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-spLNUNi1qu .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spLNUNi1qu .mbr-text,
.cid-spLNUNi1qu .social-list .mbr-iconfont-social {
  color: #ffffff;
}
.cid-spLNUNi1qu .mbr-title {
  color: #42c587;
}
.cid-spuhxDCvjH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-spuhxDCvjH [class^="socicon-"]:before,
.cid-spuhxDCvjH [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-spuhxDCvjH .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #02693e;
  border-width: 2px;
  transition: all .3s;
  border-color: #02693e;
}
.cid-spuhxDCvjH .btn-social:hover {
  background: #02693e;
}
.cid-spuhxDCvjH .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-spuhxDY1dd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spuhxDY1dd .navbar-logo {
  width: 200px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-spuhxDY1dd .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-spuhxDY1dd .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spuhxDY1dd .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-spuhxDY1dd .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-spuhxDY1dd .text2 {
  color: #000000;
  text-align: left;
}
.cid-spuhxDY1dd .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-spuhxDY1dd .logo-title {
  text-align: center;
}
.cid-spuhxDY1dd .logo-sub-title {
  text-align: center;
  color: #000000;
}
.cid-spuhxDY1dd .links {
  text-align: center;
  color: #656565;
}
.cid-spuhxDY1dd .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sqGIKmtzgq .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqGIKmtzgq .nav-item,
.cid-sqGIKmtzgq .nav-link,
.cid-sqGIKmtzgq .navbar-caption {
  font-weight: normal;
}
.cid-sqGIKmtzgq .nav-item:focus,
.cid-sqGIKmtzgq .nav-link:focus {
  outline: none;
}
.cid-sqGIKmtzgq .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sqGIKmtzgq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sqGIKmtzgq .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqGIKmtzgq .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sqGIKmtzgq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqGIKmtzgq .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sqGIKmtzgq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqGIKmtzgq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqGIKmtzgq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqGIKmtzgq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqGIKmtzgq .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fafafa;
}
.cid-sqGIKmtzgq .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-sqGIKmtzgq .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sqGIKmtzgq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sqGIKmtzgq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqGIKmtzgq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sqGIKmtzgq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-sqGIKmtzgq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqGIKmtzgq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqGIKmtzgq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqGIKmtzgq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqGIKmtzgq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqGIKmtzgq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sqGIKmtzgq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqGIKmtzgq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqGIKmtzgq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqGIKmtzgq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqGIKmtzgq .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqGIKmtzgq .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sqGIKmtzgq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqGIKmtzgq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sqGIKmtzgq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqGIKmtzgq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqGIKmtzgq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sqGIKmtzgq .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sqGIKmtzgq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sqGIKmtzgq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqGIKmtzgq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqGIKmtzgq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqGIKmtzgq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqGIKmtzgq .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sqGIKmtzgq .dropdown-item.active,
.cid-sqGIKmtzgq .dropdown-item:active {
  background-color: transparent;
}
.cid-sqGIKmtzgq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqGIKmtzgq .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqGIKmtzgq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sqGIKmtzgq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqGIKmtzgq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqGIKmtzgq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqGIKmtzgq .navbar-buttons {
  text-align: center;
}
.cid-sqGIKmtzgq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqGIKmtzgq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sqGIKmtzgq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sqGIKmtzgq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqGIKmtzgq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sqGIKmtzgq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sqGIKmtzgq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqGIKmtzgq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sqGIKmtzgq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sqGIKmtzgq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sqGIKmtzgq .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sqGIKmtzgq a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqGIKmtzgq .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sqGIKmtzgq .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sqGIKmtzgq .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sqGIKmtzgq .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqGIKmtzgq .navbar {
    height: 77px;
  }
  .cid-sqGIKmtzgq .navbar.opened {
    height: auto;
  }
  .cid-sqGIKmtzgq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sqIDcNQWAW {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #02693e;
}
.cid-sqIDcNQWAW .row {
  flex-direction: row-reverse;
}
.cid-sqIDcNQWAW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sqIDcNQWAW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sqIDcNQWAW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sqIDcNQWAW .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sqIDcNQWAW .mbr-text,
.cid-sqIDcNQWAW .mbr-section-btn {
  text-align: left;
}
.cid-sqGIKnji9b {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sqGIKnji9b .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sqGIKnji9b .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sqGIKnji9b .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sqGIKnji9b .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sqGIKnji9b .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sqGIKnji9b .mbr-section-title {
  color: #000000;
}
.cid-sqGIKnBGWe {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sqGIKnBGWe .line {
  background-color: #42c587;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sqGIKnBGWe .mbr-text {
  color: #02824c;
}
.cid-sqGIKnML6F {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqGIKnML6F .mbr-iconfont {
  color: #ffe161;
}
.cid-sqGIKnML6F .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-sqGIKnML6F .mbr-text {
  margin: 1.5rem 0;
}
.cid-sqGIKnML6F .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sqGIKnML6F .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-sqGIKnML6F .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sqGIKnML6F .mbr-section-subtitle,
.cid-sqGIKnML6F .mbr-text,
.cid-sqGIKnML6F .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-sqGIKnML6F .mbr-section-subtitle {
  color: #232323;
}
.cid-sqGIKnML6F .mbr-section-title {
  text-align: center;
}
.cid-sqGIKoo7U6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqGIKoo7U6 .mbr-iconfont {
  color: #ffe161;
}
.cid-sqGIKoo7U6 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-sqGIKoo7U6 .mbr-text {
  margin: 1.5rem 0;
}
.cid-sqGIKoo7U6 .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sqGIKoo7U6 .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-sqGIKoo7U6 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sqGIKoo7U6 .mbr-section-subtitle,
.cid-sqGIKoo7U6 .mbr-text,
.cid-sqGIKoo7U6 .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-tT5i1RmoBB {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tT5i1RmoBB .mbr-iconfont {
  color: #ffe161;
}
.cid-tT5i1RmoBB .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tT5i1RmoBB .mbr-text {
  margin: 1.5rem 0;
}
.cid-tT5i1RmoBB .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tT5i1RmoBB .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tT5i1RmoBB .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tT5i1RmoBB .mbr-section-subtitle,
.cid-tT5i1RmoBB .mbr-text,
.cid-tT5i1RmoBB .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-sqGIKpMuwz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sqGIKpMuwz [class^="socicon-"]:before,
.cid-sqGIKpMuwz [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sqGIKpMuwz .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #02693e;
  border-width: 2px;
  transition: all .3s;
  border-color: #02693e;
}
.cid-sqGIKpMuwz .btn-social:hover {
  background: #02693e;
}
.cid-sqGIKpMuwz .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sqGIKqa8tF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqGIKqa8tF .navbar-logo {
  width: 200px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sqGIKqa8tF .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sqGIKqa8tF .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqGIKqa8tF .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sqGIKqa8tF .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-sqGIKqa8tF .text2 {
  color: #000000;
  text-align: left;
}
.cid-sqGIKqa8tF .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sqGIKqa8tF .logo-title {
  text-align: center;
}
.cid-sqGIKqa8tF .logo-sub-title {
  text-align: center;
  color: #ffffff;
}
.cid-sqGIKqa8tF .links {
  text-align: center;
  color: #656565;
}
.cid-sqGIKqa8tF .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sqGIKqa8tF .links,
.cid-sqGIKqa8tF .social-list {
  color: #232323;
}
.cid-sqGIKqa8tF .logo-title,
.cid-sqGIKqa8tF .logo {
  color: #232323;
}
