body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.75rem;
  line-height: 1.25;
  letter-spacing: -0.07em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-2 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.125rem;
}
.display-4 {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.09375rem;
}
.display-5 {
  font-family: 'Spartan', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
.display-5 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-7 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 3rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.625rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.64rem;
    font-size: calc( 1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #ffa41d !important;
}
.bg-success {
  background-color: #ffffff !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: #ffa41d !important;
  border-color: #ffa41d !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: #c57600 !important;
  border-color: #c57600 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c57600 !important;
  border-color: #c57600 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff4712 !important;
  border-color: #ff4712 !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: #ba2a00 !important;
  border-color: #ba2a00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ba2a00 !important;
  border-color: #ba2a00 !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: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffa41d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c57600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa41d !important;
  border-color: #ffa41d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff4712;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ba2a00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4712 !important;
  border-color: #ff4712 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffa41d !important;
}
.text-secondary {
  color: #ff4712 !important;
}
.text-success {
  color: #ffffff !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: #b66d00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ab2600 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !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: #ffa41d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffa41d;
  border-color: #ffa41d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffa41d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff6e9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.09375rem;
}
.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: #ffa41d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.09375rem;
}
blockquote {
  border-color: #ffa41d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffa41d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffa41d;
}
.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: #ffa41d;
  border-bottom-color: #ffa41d;
}
.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: #ffa41d !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: #ff4712 !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='%23ffa41d' %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-t3P3ISCNMy .container-fluid {
  padding: 0 1rem;
}
.cid-t3P3ISCNMy .navbar-dropdown {
  background-color: #f9f9fc !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .menu_box .navbar.opened,
  .cid-t3P3ISCNMy .menu_box .navbar-collapse {
    background-color: #f9f9fc !important;
    transition: all 0s ease 0s;
  }
}
.cid-t3P3ISCNMy .navbar-dropdown {
  position: relative !important;
}
.cid-t3P3ISCNMy nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-t3P3ISCNMy .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 208px;
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-t3P3ISCNMy .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3P3ISCNMy .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-t3P3ISCNMy .offcanvas {
    padding: 55px 35px 40px;
    width: 480px;
    background-color: #f0f0f5;
  }
  .cid-t3P3ISCNMy .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-t3P3ISCNMy .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-t3P3ISCNMy .offcanvas-header .btn-close {
    position: absolute;
    top: 44px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-t3P3ISCNMy .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .cid-t3P3ISCNMy .offcanvas-body .mbr-text,
  .cid-t3P3ISCNMy .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-t3P3ISCNMy .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #20232a;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-t3P3ISCNMy ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-t3P3ISCNMy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-t3P3ISCNMy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-t3P3ISCNMy .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-t3P3ISCNMy li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-t3P3ISCNMy li.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #20232a;
    margin-top: 3px;
    transition: all .4s ease;
  }
  .cid-t3P3ISCNMy .lg_brand {
    margin: 0 1rem;
  }
}
.cid-t3P3ISCNMy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-t3P3ISCNMy .nav-item {
    margin: 4px 15px;
  }
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .nav-item {
    margin: 0 !important;
  }
}
.cid-t3P3ISCNMy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-t3P3ISCNMy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-t3P3ISCNMy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-t3P3ISCNMy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-t3P3ISCNMy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-t3P3ISCNMy .offcanvas_box {
    display: none;
  }
}
.cid-t3P3ISCNMy .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-t3P3ISCNMy .dropdown-item:hover {
  color: #ffa41d;
}
.cid-t3P3ISCNMy .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-t3P3ISCNMy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3P3ISCNMy .nav-link {
  position: relative;
  color: #20232a;
}
.cid-t3P3ISCNMy .container {
  display: flex;
  margin: auto;
}
.cid-t3P3ISCNMy .iconfont-wrapper {
  width: 42px;
  margin: 5px;
  color: #20232a;
  font-size: 21px;
  transition: all 0.2s ease-in-out;
}
.cid-t3P3ISCNMy .iconfont-wrapper:hover {
  color: #ffa41d;
}
.cid-t3P3ISCNMy .navbar-caption {
  color: #20232a;
}
.cid-t3P3ISCNMy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-t3P3ISCNMy .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-t3P3ISCNMy .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-t3P3ISCNMy .dropdown-menu,
.cid-t3P3ISCNMy .navbar.opened {
  background: #f9f9fc !important;
}
.cid-t3P3ISCNMy .nav-item:focus,
.cid-t3P3ISCNMy .nav-link:focus {
  outline: none;
}
.cid-t3P3ISCNMy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3P3ISCNMy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3P3ISCNMy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3P3ISCNMy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3P3ISCNMy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3P3ISCNMy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3P3ISCNMy .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-t3P3ISCNMy .navbar.opened {
  transition: all 0.3s;
}
.cid-t3P3ISCNMy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-t3P3ISCNMy .navbar .navbar-logo img {
  width: auto;
  object-fit: cover;
}
.cid-t3P3ISCNMy .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-t3P3ISCNMy .navbar.collapsed {
  justify-content: center;
}
.cid-t3P3ISCNMy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3P3ISCNMy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t3P3ISCNMy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3P3ISCNMy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3P3ISCNMy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3P3ISCNMy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-t3P3ISCNMy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-t3P3ISCNMy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-t3P3ISCNMy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3P3ISCNMy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3P3ISCNMy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-t3P3ISCNMy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3P3ISCNMy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3P3ISCNMy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3P3ISCNMy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-t3P3ISCNMy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-t3P3ISCNMy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-t3P3ISCNMy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3P3ISCNMy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3P3ISCNMy .navbar .icons-menu {
    padding: 0;
  }
}
.cid-t3P3ISCNMy .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3P3ISCNMy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3P3ISCNMy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3P3ISCNMy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3P3ISCNMy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3P3ISCNMy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3P3ISCNMy .dropdown-item.active,
.cid-t3P3ISCNMy .dropdown-item:active {
  background-color: transparent;
}
.cid-t3P3ISCNMy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3P3ISCNMy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3P3ISCNMy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3P3ISCNMy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9fc;
}
.cid-t3P3ISCNMy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3P3ISCNMy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3P3ISCNMy ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-t3P3ISCNMy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3P3ISCNMy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f9fc;
  background: #f9f9fc;
}
.cid-t3P3ISCNMy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #20232a;
}
.cid-t3P3ISCNMy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3P3ISCNMy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3P3ISCNMy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3P3ISCNMy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3P3ISCNMy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3P3ISCNMy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3P3ISCNMy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3P3ISCNMy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3P3ISCNMy a.nav-link {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
.cid-t3P3ISCNMy .nav-item:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .nav-item:hover {
    width: 0;
  }
}
.cid-t3P3ISCNMy .icons-menu {
  margin-bottom: 35px;
}
.cid-t3P3ISCNMy .icons-menu .iconfont-wrapper {
  margin-bottom: 25px;
  display: block;
}
.cid-t3P3ISCNMy .icons-menu .iconfont-wrapper span {
  margin-right: 14px;
}
.cid-t3P3ISCNMy .icons-menu .iconfont-wrapper .mbr-text {
  margin: 0;
  display: inline-block;
}
.cid-t3P3ISCNMy .icons-menu .iconfont-wrapper:last-child {
  margin-bottom: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3P3ISCNMy .navbar {
    height: 70px;
  }
  .cid-t3P3ISCNMy .navbar.opened {
    height: auto;
  }
  .cid-t3P3ISCNMy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3P3ISCNMy .navbar-caption:hover {
  color: #ffa41d;
}
.cid-t3P3ISCNMy .nav-link:hover {
  color: #ffa41d;
}
.cid-t3P3ISCNMy .mbr-iconfont {
  font-size: 21px;
}
.cid-t3P3ISCNMy .mbr-section-subtitle {
  color: #20232a;
  text-align: left;
}
.cid-t3P3ISCNMy .mbr-text,
.cid-t3P3ISCNMy .iconfont-wrapper {
  color: #20232a;
  text-align: left;
}
.cid-t3P3ISCNMy .text_widget a:hover {
  color: #ffa41d;
}
.cid-t3P3ISCNMy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-t3P3NuslVK {
  background-image: url("https://mobirise.com/extensions/parkm5/assets/images/background4.jpg");
}
.cid-t3P3NuslVK img {
  max-height: 300px;
  object-fit: cover;
}
.cid-t3P3NuslVK .images {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-t3P3NuslVK .images {
    display: none;
  }
}
.cid-t3P3NuslVK .image-wrapper-1,
.cid-t3P3NuslVK .image-wrapper-2 {
  position: relative;
  height: 60px;
}
.cid-t3P3NuslVK .image-wrapper-1 {
  margin-top: 80px;
}
.cid-t3P3NuslVK .image-wrapper-1 img {
  position: absolute;
  top: 0;
  right: -4rem;
}
.cid-t3P3NuslVK .image-wrapper-1 .image-absolute-1 {
  position: absolute;
  width: 80px;
  height: 80px;
  top: -3rem;
  right: -10.5rem;
}
@media (max-width: 1100px) {
  .cid-t3P3NuslVK .image-wrapper-1 .image-absolute-1 {
    display: none;
  }
}
.cid-t3P3NuslVK .image-wrapper-2 {
  margin-top: 85px;
}
.cid-t3P3NuslVK .image-wrapper-2 img {
  width: 90%;
}
.cid-t3P3NuslVK .image-wrapper-2 .image-absolute-2 {
  position: absolute;
  width: 119px;
  height: 221px;
  left: -12rem;
  top: -2rem;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .cid-t3P3NuslVK .image-wrapper-2 .image-absolute-2 {
    left: -10rem;
    top: 0rem;
  }
}
@media (max-width: 1100px) {
  .cid-t3P3NuslVK .image-wrapper-2 .image-absolute-2 {
    display: none;
  }
}
.cid-t3P3NuslVK .text-wrapper {
  width: 100%;
}
.cid-t3P3NuslVK .mbr-text {
  margin: 0 0 36px 0;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3P3NuslVK .mbr-section-title {
  margin: 0 0 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-t3P3NuslVK .mbr-section-btn {
  margin: 0 25%;
}
@media (max-width: 992px) {
  .cid-t3P3NuslVK .mbr-section-btn {
    margin: 0;
  }
}
.cid-t3P3NuslVK .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  background: transparent !important;
  color: #ffffff !important;
}
.cid-t3P3NuslVK .btn:hover {
  box-shadow: none;
  color: #000000 !important;
  background: #ffffff !important;
}
.cid-t3P3NuslVK .text {
  display: flex;
  align-items: center;
}
#custom-html-5h {
  /* Type valid CSS here */
}
#custom-html-5h div {
  padding: 0;
  color: #777;
  text-align: center;
}
#custom-html-5h p {
  font-size: 60px;
  color: #777;
}
.cid-t3P4HsW6by {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3P4HsW6by .row {
  justify-content: center;
}
.cid-t3P4HsW6by .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3P4HsW6by .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-t3P4HsW6by .card {
  height: 600px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-t3P4HsW6by .card {
    margin-bottom: 30px;
  }
}
.cid-t3P4HsW6by .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-t3P4HsW6by .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
}
.cid-t3P4HsW6by .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
}
@media (max-width: 425px) {
  .cid-t3P4HsW6by .card-wrapper {
    padding: 29px;
  }
}
.cid-t3P4HsW6by .card-wrapper .card-button {
  width: 100%;
}
.cid-t3P4HsW6by .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ff4712;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-t3P4HsW6by .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
  transform: translate(0, 50%);
  transform: translate(0, 0);
}
.cid-t3P4HsW6by .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-t3P4HsW6by .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-t3P4HsW6by .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-t3P4HsW6by .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #ff4712;
  pointer-events: visible;
}
.cid-t3P4HsW6by .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-t3P4HsW6by .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-t3P4HsW6by .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffffff;
  pointer-events: visible;
}
.cid-t3P4HsW6by .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-t3P4HsW6by .card:hover .card-text-main {
  transform: translate(0, 0);
  transform: translate(0, -25%);
}
.cid-t3P4HsW6by .card:hover .card-text-date {
  opacity: 1;
}
.cid-t3P4HsW6by .card:hover .card-text-link {
  opacity: 1;
}
.cid-t3P4HsW6by .card:hover .mbr-button {
  background: #20232a;
}
.cid-t3P4HsW6by .mbr-button {
  color: #FFFFFF;
}
.cid-t3P4HsW6by .mbr-card-title {
  color: #FFFFFF;
  margin: 1rem 0 0 0;
  pointer-events: visible;
}
@media (max-width: 992px) {
  .cid-t3P4HsW6by .mbr-card-title {
    margin: 1rem 0 2rem 0;
  }
}
.cid-t3P4HsW6by .mbr-date {
  color: #fafafa;
}
.cid-t3P4HsW6by .mbr-link {
  color: #FFFFFF;
}
.cid-t3P4HsW6by .mbr-card-title,
.cid-t3P4HsW6by .mbr-card-title,
.cid-t3P4HsW6by .card-button,
.cid-t3P4HsW6by .mbr-date,
.cid-t3P4HsW6by .mbr-link {
  text-align: left;
}
.cid-t3P4HsW6by .mbr-card-title,
.cid-t3P4HsW6by .card-button,
.cid-t3P4HsW6by .card-text-date,
.cid-t3P4HsW6by .card-text-link {
  color: #171a21;
  text-align: center;
}
.cid-t3P5rmsXS0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f5;
}
.cid-t3P5rmsXS0 .video-wrapper iframe {
  width: 100%;
}
.cid-t3P5rmsXS0 .mbr-section-title,
.cid-t3P5rmsXS0 .mbr-section-subtitle,
.cid-t3P5rmsXS0 .mbr-text {
  text-align: center;
}
.cid-t3P5rmsXS0 .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3P5rmsXS0 .mbr-section-title {
  margin-bottom: 14px;
  color: #20232a;
  text-align: center;
}
.cid-t3P5rmsXS0 .mbr-text {
  margin-bottom: 0;
  color: #65676c;
}
.cid-t3P5rmsXS0 .mbr-section-head {
  margin-bottom: 45px;
}
.cid-t3P5DYvN0I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3P5DYvN0I .content {
  display: flex;
  align-items: center;
}
.cid-t3P5DYvN0I .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-t3P5DYvN0I .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-t3P5DYvN0I .mbr-text {
  margin-bottom: 38px;
  color: #65676c;
}
.cid-t3P5DYvN0I .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3P5DYvN0I .btn:hover {
  box-shadow: none;
}
.cid-t3P5DYvN0I .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3P5DYvN0I .image-wrapper {
    margin-top: 25px;
  }
}
.cid-t3P5DYvN0I .image-wrapper img {
  width: 100%;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-t3P5DYvN0I .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-t3P5DYvN0I .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-t3P5DYvN0I .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ff4712;
}
.cid-t3P5DYvN0I .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-t3P5DYvN0I .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-t3P5DYvN0I .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ff4712;
}
.cid-t3P5DYvN0I .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-t3P5DYvN0I .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-t3P5DYvN0I .mbr-iconfont {
  color: #ffffff;
}
.cid-t3P5DYvN0I .mbr-image-text {
  color: #ffffff;
}
.cid-t3P5DYvN0I .mbr-section-title,
.cid-t3P5DYvN0I .mbr-section-btn {
  text-align: center;
}
.cid-t3P5I8hcCu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #171a21;
}
.cid-t3P5I8hcCu .container-fluid {
  padding: 0;
}
.cid-t3P5I8hcCu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3P5I8hcCu .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-t3P5I8hcCu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3P5I8hcCu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-t3P5I8hcCu .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-t3P5I8hcCu .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-t3P5I8hcCu .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-t3P5I8hcCu .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-t3P5I8hcCu .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3P5I8hcCu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-t3P5I8hcCu .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #65676c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3P5I8hcCu .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-t3P5I8hcCu .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-t3P5I8hcCu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3P5I8hcCu .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-t3P5I8hcCu .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-t3P5I8hcCu .copyright {
  margin: 0 60px;
  border-top: 1px solid #65676c;
  padding: 26px 0;
}
.cid-t3P5I8hcCu .copyright .mbr-text {
  margin: 0;
}
.cid-t3P5I8hcCu .mbr-section-title,
.cid-t3P5I8hcCu .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3P5I8hcCu .mbr-text {
  color: #84858a;
  text-align: center;
}
.cid-t3P3ISCNMy .container-fluid {
  padding: 0 1rem;
}
.cid-t3P3ISCNMy .navbar-dropdown {
  background-color: #f9f9fc !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .menu_box .navbar.opened,
  .cid-t3P3ISCNMy .menu_box .navbar-collapse {
    background-color: #f9f9fc !important;
    transition: all 0s ease 0s;
  }
}
.cid-t3P3ISCNMy .navbar-dropdown {
  position: relative !important;
}
.cid-t3P3ISCNMy nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-t3P3ISCNMy .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 208px;
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-t3P3ISCNMy .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3P3ISCNMy .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-t3P3ISCNMy .offcanvas {
    padding: 55px 35px 40px;
    width: 480px;
    background-color: #f0f0f5;
  }
  .cid-t3P3ISCNMy .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-t3P3ISCNMy .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-t3P3ISCNMy .offcanvas-header .btn-close {
    position: absolute;
    top: 44px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-t3P3ISCNMy .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .cid-t3P3ISCNMy .offcanvas-body .mbr-text,
  .cid-t3P3ISCNMy .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-t3P3ISCNMy .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #20232a;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-t3P3ISCNMy .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-t3P3ISCNMy ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-t3P3ISCNMy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-t3P3ISCNMy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-t3P3ISCNMy .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-t3P3ISCNMy li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-t3P3ISCNMy li.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #20232a;
    margin-top: 3px;
    transition: all .4s ease;
  }
  .cid-t3P3ISCNMy .lg_brand {
    margin: 0 1rem;
  }
}
.cid-t3P3ISCNMy .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-t3P3ISCNMy .nav-item {
    margin: 4px 15px;
  }
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .nav-item {
    margin: 0 !important;
  }
}
.cid-t3P3ISCNMy .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-t3P3ISCNMy .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-t3P3ISCNMy .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-t3P3ISCNMy .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-t3P3ISCNMy .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-t3P3ISCNMy .offcanvas_box {
    display: none;
  }
}
.cid-t3P3ISCNMy .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-t3P3ISCNMy .dropdown-item:hover {
  color: #ffa41d;
}
.cid-t3P3ISCNMy .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-t3P3ISCNMy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3P3ISCNMy .nav-link {
  position: relative;
  color: #20232a;
}
.cid-t3P3ISCNMy .container {
  display: flex;
  margin: auto;
}
.cid-t3P3ISCNMy .iconfont-wrapper {
  width: 42px;
  margin: 5px;
  color: #20232a;
  font-size: 21px;
  transition: all 0.2s ease-in-out;
}
.cid-t3P3ISCNMy .iconfont-wrapper:hover {
  color: #ffa41d;
}
.cid-t3P3ISCNMy .navbar-caption {
  color: #20232a;
}
.cid-t3P3ISCNMy .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-t3P3ISCNMy .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-t3P3ISCNMy .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-t3P3ISCNMy .dropdown-menu,
.cid-t3P3ISCNMy .navbar.opened {
  background: #f9f9fc !important;
}
.cid-t3P3ISCNMy .nav-item:focus,
.cid-t3P3ISCNMy .nav-link:focus {
  outline: none;
}
.cid-t3P3ISCNMy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3P3ISCNMy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3P3ISCNMy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3P3ISCNMy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3P3ISCNMy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3P3ISCNMy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3P3ISCNMy .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-t3P3ISCNMy .navbar.opened {
  transition: all 0.3s;
}
.cid-t3P3ISCNMy .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-t3P3ISCNMy .navbar .navbar-logo img {
  width: auto;
  object-fit: cover;
}
.cid-t3P3ISCNMy .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-t3P3ISCNMy .navbar.collapsed {
  justify-content: center;
}
.cid-t3P3ISCNMy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3P3ISCNMy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t3P3ISCNMy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3P3ISCNMy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3P3ISCNMy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3P3ISCNMy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-t3P3ISCNMy .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-t3P3ISCNMy .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-t3P3ISCNMy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3P3ISCNMy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3P3ISCNMy .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-t3P3ISCNMy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3P3ISCNMy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3P3ISCNMy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3P3ISCNMy .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-t3P3ISCNMy .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-t3P3ISCNMy .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-t3P3ISCNMy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3P3ISCNMy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3P3ISCNMy .navbar .icons-menu {
    padding: 0;
  }
}
.cid-t3P3ISCNMy .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3P3ISCNMy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3P3ISCNMy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3P3ISCNMy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3P3ISCNMy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3P3ISCNMy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3P3ISCNMy .dropdown-item.active,
.cid-t3P3ISCNMy .dropdown-item:active {
  background-color: transparent;
}
.cid-t3P3ISCNMy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3P3ISCNMy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3P3ISCNMy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3P3ISCNMy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9fc;
}
.cid-t3P3ISCNMy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3P3ISCNMy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3P3ISCNMy ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-t3P3ISCNMy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3P3ISCNMy button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f9fc;
  background: #f9f9fc;
}
.cid-t3P3ISCNMy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #20232a;
}
.cid-t3P3ISCNMy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3P3ISCNMy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3P3ISCNMy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3P3ISCNMy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3P3ISCNMy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3P3ISCNMy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3P3ISCNMy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3P3ISCNMy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3P3ISCNMy a.nav-link {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
.cid-t3P3ISCNMy .nav-item:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t3P3ISCNMy .nav-item:hover {
    width: 0;
  }
}
.cid-t3P3ISCNMy .icons-menu {
  margin-bottom: 35px;
}
.cid-t3P3ISCNMy .icons-menu .iconfont-wrapper {
  margin-bottom: 25px;
  display: block;
}
.cid-t3P3ISCNMy .icons-menu .iconfont-wrapper span {
  margin-right: 14px;
}
.cid-t3P3ISCNMy .icons-menu .iconfont-wrapper .mbr-text {
  margin: 0;
  display: inline-block;
}
.cid-t3P3ISCNMy .icons-menu .iconfont-wrapper:last-child {
  margin-bottom: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3P3ISCNMy .navbar {
    height: 70px;
  }
  .cid-t3P3ISCNMy .navbar.opened {
    height: auto;
  }
  .cid-t3P3ISCNMy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3P3ISCNMy .navbar-caption:hover {
  color: #ffa41d;
}
.cid-t3P3ISCNMy .nav-link:hover {
  color: #ffa41d;
}
.cid-t3P3ISCNMy .mbr-iconfont {
  font-size: 21px;
}
.cid-t3P3ISCNMy .mbr-section-subtitle {
  color: #20232a;
  text-align: left;
}
.cid-t3P3ISCNMy .mbr-text,
.cid-t3P3ISCNMy .iconfont-wrapper {
  color: #20232a;
  text-align: left;
}
.cid-t3P3ISCNMy .text_widget a:hover {
  color: #ffa41d;
}
.cid-t3P3ISCNMy a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-t3PawbkTqo {
  background-image: url("https://mobirise.com/extensions/parkm5/assets/images/background4.jpg");
}
.cid-t3PawbkTqo img {
  max-height: 300px;
  object-fit: cover;
}
.cid-t3PawbkTqo .images {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-t3PawbkTqo .images {
    display: none;
  }
}
.cid-t3PawbkTqo .image-wrapper-1,
.cid-t3PawbkTqo .image-wrapper-2 {
  position: relative;
  height: 60px;
}
.cid-t3PawbkTqo .image-wrapper-1 {
  margin-top: 80px;
}
.cid-t3PawbkTqo .image-wrapper-1 img {
  position: absolute;
  top: 0;
  right: -4rem;
}
.cid-t3PawbkTqo .image-wrapper-1 .image-absolute-1 {
  position: absolute;
  width: 80px;
  height: 80px;
  top: -3rem;
  right: -10.5rem;
}
@media (max-width: 1100px) {
  .cid-t3PawbkTqo .image-wrapper-1 .image-absolute-1 {
    display: none;
  }
}
.cid-t3PawbkTqo .image-wrapper-2 {
  margin-top: 85px;
}
.cid-t3PawbkTqo .image-wrapper-2 img {
  width: 90%;
}
.cid-t3PawbkTqo .image-wrapper-2 .image-absolute-2 {
  position: absolute;
  width: 119px;
  height: 221px;
  left: -12rem;
  top: -2rem;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .cid-t3PawbkTqo .image-wrapper-2 .image-absolute-2 {
    left: -10rem;
    top: 0rem;
  }
}
@media (max-width: 1100px) {
  .cid-t3PawbkTqo .image-wrapper-2 .image-absolute-2 {
    display: none;
  }
}
.cid-t3PawbkTqo .text-wrapper {
  width: 100%;
}
.cid-t3PawbkTqo .mbr-text {
  margin: 0 0 36px 0;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PawbkTqo .mbr-section-title {
  margin: 0 0 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-t3PawbkTqo .mbr-section-btn {
  margin: 0 25%;
}
@media (max-width: 992px) {
  .cid-t3PawbkTqo .mbr-section-btn {
    margin: 0;
  }
}
.cid-t3PawbkTqo .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  background: transparent !important;
  color: #ffffff !important;
}
.cid-t3PawbkTqo .btn:hover {
  box-shadow: none;
  color: #000000 !important;
  background: #ffffff !important;
}
.cid-t3PawbkTqo .text {
  display: flex;
  align-items: center;
}
.cid-t3PawQOFzP {
  background-image: url("https://mobirise.com/extensions/parkm5/assets/images/background3.jpg");
}
.cid-t3PawQOFzP .image-1 {
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3PawQOFzP .image-1 {
    margin-bottom: 2rem;
  }
}
.cid-t3PawQOFzP .image-1 img {
  width: 220px;
  height: 310px;
  object-fit: cover;
}
.cid-t3PawQOFzP .image-1 .image-absolute {
  width: 235px;
  height: 290px;
  object-fit: cover;
  position: absolute;
  left: 20%;
  top: 33%;
}
@media (max-width: 1050px) {
  .cid-t3PawQOFzP .image-1 .image-absolute {
    display: none;
  }
}
.cid-t3PawQOFzP .image-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .cid-t3PawQOFzP .image-2 {
    margin-top: 2rem;
  }
}
.cid-t3PawQOFzP .image-2 img {
  width: 245px;
  height: 320px;
  object-fit: cover;
  z-index: 2;
}
.cid-t3PawQOFzP .image-2 .image-absolute {
  width: 190px;
  height: 260px;
  object-fit: cover;
  margin-top: -45%;
  margin-right: 35%;
  z-index: 1;
}
@media (max-width: 1050px) {
  .cid-t3PawQOFzP .image-2 .image-absolute {
    display: none;
  }
}
.cid-t3PawQOFzP .text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3PawQOFzP .text-wrapper {
  width: 80%;
}
.cid-t3PawQOFzP .mbr-section-title {
  margin-bottom: 46px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-t3PawQOFzP .mbr-section-title {
    margin-bottom: 2rem;
  }
}
.cid-t3PawQOFzP .mbr-text {
  margin-bottom: 0;
  opacity: .7;
  color: #EAEAEA;
  text-align: center;
}
.cid-t3Paxyl9zv {
  background-image: url("https://mobirise.com/extensions/parkm5/assets/images/background5.jpg");
}
.cid-t3Paxyl9zv .text {
  display: flex;
  align-items: center;
}
.cid-t3Paxyl9zv .mbr-section-subtitle {
  margin: 0 0 22px 0;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-t3Paxyl9zv .mbr-section-title {
  margin: 0 0 33px 0;
  color: #ffffff;
}
.cid-t3Paxyl9zv .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
}
.cid-t3Paxyl9zv .btn:hover {
  box-shadow: none;
}
.cid-t3Paxyl9zv .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3Paxyl9zv .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-t3Paxyl9zv .image-wrapper img {
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-t3Paxyl9zv .image-wrapper img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-t3Paxyl9zv .image-wrapper img {
    width: 240px;
    height: 275px;
  }
}
.cid-t3Paxyl9zv .image-wrapper .image-absolute {
  position: absolute;
  top: 20px;
  right: 23%;
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-t3Paxyl9zv .image-wrapper .image-absolute {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-t3Paxyl9zv .image-wrapper .image-absolute {
    width: 240px;
    height: 275px;
  }
}
@media (max-width: 425px) {
  .cid-t3Paxyl9zv .image-wrapper .image-absolute {
    display: none;
  }
}
.cid-t3Paxyl9zv .row:hover img {
  transform: rotate(0deg);
}
.cid-t3PayeMYdK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PayeMYdK .row {
  justify-content: center;
}
.cid-t3PayeMYdK .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PayeMYdK .mbr-section-title {
  margin-bottom: 54px;
  color: #080808;
}
.cid-t3PayeMYdK .features-card {
  margin-bottom: 42px;
}
.cid-t3PayeMYdK .features-card img {
  width: 100%;
  object-fit: cover;
  border: 7px solid #ffffff;
  height: 470px;
  transition: all .3s ease;
}
.cid-t3PayeMYdK .features-card img:hover {
  transform: translate(0, -5px);
}
.cid-t3PayeMYdK .features-card .mbr-text {
  margin: 40px 0 0 0;
}
.cid-t3PayeMYdK .features-card:nth-child(2) img {
  max-height: 408px;
}
.cid-t3PayeMYdK .features-card:nth-child(4) img {
  max-height: 272px;
}
.cid-t3PayeMYdK .features-card:nth-child(5) {
  margin-top: -62px;
}
@media (max-width: 992px) {
  .cid-t3PayeMYdK .features-card:nth-child(5) {
    margin-top: 0;
  }
}
.cid-t3PayeMYdK .features-card:nth-child(5) img {
  max-height: 510px;
}
.cid-t3PayeMYdK .features-card:nth-child(6) img {
  max-height: 272px;
}
.cid-t3PayeMYdK .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PayeMYdK .btn:hover {
  box-shadow: none;
}
.cid-t3PayeMYdK .mbr-text {
  color: #1f242e;
  text-align: center;
}
.cid-t3PayeMYdK .mbr-section-title,
.cid-t3PayeMYdK .mbr-section-btn {
  text-align: center;
}
.cid-t3PaB1bIZ7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaB1bIZ7 .row {
  justify-content: center;
}
.cid-t3PaB1bIZ7 .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PaB1bIZ7 .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-t3PaB1bIZ7 .card {
  padding: 0 15px;
}
.cid-t3PaB1bIZ7 .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-t3PaB1bIZ7 .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-t3PaB1bIZ7 .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-t3PaB1bIZ7 .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-t3PaB1bIZ7 .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-t3PaBHp01w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaBHp01w .cards {
  padding-right: 35px;
}
@media (max-width: 1200px) {
  .cid-t3PaBHp01w .cards {
    padding: 0 0 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-t3PaBHp01w .cards {
    padding: 0 12px;
  }
}
.cid-t3PaBHp01w .cards-wrapper {
  justify-content: center;
}
.cid-t3PaBHp01w .card {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .cid-t3PaBHp01w .card {
    padding: 0 5px;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .cid-t3PaBHp01w .card {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
.cid-t3PaBHp01w .card .card-wrapper {
  padding: 16px 15px 43px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #fafafa;
}
.cid-t3PaBHp01w .card .card-wrapper img {
  margin-top: 30px;
  margin-bottom: 19px;
  width: 51px;
  height: 51px;
  object-fit: cover;
}
.cid-t3PaBHp01w .card .card-wrapper .mbr-card-title {
  margin: 0 0 8px 0;
}
.cid-t3PaBHp01w .card .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-t3PaBHp01w .features-content {
  padding-left: 85px;
}
@media (max-width: 992px) {
  .cid-t3PaBHp01w .features-content {
    padding: 0 12px;
  }
}
.cid-t3PaBHp01w .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-t3PaBHp01w .mbr-section-title {
  margin: 29px 0 13.5px 0;
  color: #080808;
}
.cid-t3PaBHp01w .mbr-text {
  margin-bottom: 38px;
  color: #65676c;
}
.cid-t3PaBHp01w .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PaBHp01w .btn:hover {
  box-shadow: none;
}
.cid-t3PaBHp01w .mbr-card-title {
  color: #080808;
  text-align: center;
}
.cid-t3PaBHp01w .mbr-card-desc {
  color: #65676c;
  text-align: center;
}
.cid-t3PaBHp01w .mbr-section-title,
.cid-t3PaBHp01w .mbr-section-btn {
  text-align: left;
}
.cid-t3PaCnL3T6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #150c0a;
}
.cid-t3PaCnL3T6 .mbr-section-subtitle {
  margin-bottom: 23px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 992px) {
  .cid-t3PaCnL3T6 .mbr-section-subtitle {
    margin-bottom: 15px;
  }
}
.cid-t3PaCnL3T6 .mbr-section-title {
  margin-bottom: 0;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .cid-t3PaCnL3T6 .mbr-section-title {
    margin-bottom: 17px;
  }
}
.cid-t3PaCnL3T6 .mbr-text {
  margin-bottom: 0;
  color: #adaeb1;
}
.cid-t3PaCnL3T6 .cards {
  margin: 112px 0 0 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t3PaCnL3T6 .cards {
    margin: 70px 0 0 0;
    flex-direction: column;
    align-items: center;
  }
}
.cid-t3PaCnL3T6 .cards .image-card {
  width: 423px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-t3PaCnL3T6 .cards .image-card {
    margin: 0 0 30px 0;
  }
}
.cid-t3PaCnL3T6 .cards .image-card img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}
.cid-t3PaCnL3T6 .cards .image-card .image-card-text {
  width: 58%;
}
.cid-t3PaCnL3T6 .cards .image-card .image-card-text .mbr-image-text {
  margin: 46px 0 0 0;
}
@media (max-width: 992px) {
  .cid-t3PaCnL3T6 .cards .image-card .image-card-text .mbr-image-text {
    margin: 23px 0 0 0;
  }
}
.cid-t3PaCnL3T6 .cards .image-card:not(:first-child) {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-t3PaCnL3T6 .cards .image-card:not(:first-child) {
    margin-left: 0;
  }
}
.cid-t3PaCnL3T6 .mbr-image-text {
  color: #ffffff;
  text-align: center;
}
.cid-t3PaD0YTXe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaD0YTXe .row {
  justify-content: center;
}
.cid-t3PaD0YTXe .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PaD0YTXe .mbr-section-title {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-t3PaD0YTXe .content-card {
  margin-top: 40px;
}
.cid-t3PaD0YTXe .content-card .content-card-icon {
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  margin: 0 auto 38px;
}
.cid-t3PaD0YTXe .content-card .content-card-icon span {
  width: 42px;
  height: 42px;
  color: #ff4712;
  font-size: 42px;
}
.cid-t3PaD0YTXe .content-card .content-card-text .mbr-card-title {
  margin-bottom: 15px;
}
.cid-t3PaD0YTXe .content-card .content-card-text .mbr-card-text {
  margin-bottom: 0;
}
.cid-t3PaD0YTXe .mbr-card-title {
  color: #080808;
  text-align: center;
}
.cid-t3PaD0YTXe .mbr-card-text {
  color: #65676c;
  text-align: center;
}
.cid-t3PaDyIYVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f5;
}
.cid-t3PaDyIYVR .row {
  justify-content: center;
}
.cid-t3PaDyIYVR .card {
  padding: 0 15px;
  height: 453px;
  position: relative;
  margin-bottom: 30px;
}
.cid-t3PaDyIYVR .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0 15px;
}
.cid-t3PaDyIYVR .item-wrapper {
  height: 100%;
}
.cid-t3PaDyIYVR .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-t3PaDyIYVR .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.3em;
  transition: all .4s ease;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-t3PaDyIYVR .card-wrapper {
    padding: 1.8em;
  }
}
.cid-t3PaDyIYVR .mbr-number {
  margin: 0;
  opacity: 0;
  transition: all .4s ease;
  transform: translate(0, -30%);
  pointer-events: visible;
  color: #fff;
}
.cid-t3PaDyIYVR .mbr-title {
  margin-bottom: 1rem;
  pointer-events: visible;
  color: #fff;
}
.cid-t3PaDyIYVR .mbr-text {
  margin: 0;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: visible;
  color: #EAEAEA;
}
.cid-t3PaDyIYVR .card-text {
  transform: translate(0, 50%);
  transition: all .4s ease;
}
.cid-t3PaDyIYVR .card:hover .mbr-number {
  opacity: 1;
  transform: translate(0, 0);
}
.cid-t3PaDyIYVR .card:hover .mbr-text {
  opacity: .7;
}
.cid-t3PaDyIYVR .card:hover .card-text {
  transform: translate(0, 0);
}
.cid-t3PaDyIYVR .card:hover .card-wrapper {
  background: #ff4712;
}
.cid-t3PaGvCkOD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaGvCkOD .row {
  justify-content: center;
}
.cid-t3PaGvCkOD .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PaGvCkOD .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
}
.cid-t3PaGvCkOD .card {
  padding: 0 15px;
}
.cid-t3PaGvCkOD .item-wrapper {
  height: 100%;
}
.cid-t3PaGvCkOD .card-wrapper {
  margin-bottom: 30px;
  border-radius: 0;
}
.cid-t3PaGvCkOD .card-wrapper .card-image {
  height: 306px;
  overflow: hidden;
  margin-bottom: 22px;
}
.cid-t3PaGvCkOD .card-wrapper .card-image img {
  height: 306px;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-t3PaGvCkOD .card-wrapper .card-text {
  margin: 0 0 26px 0;
  display: flex;
}
.cid-t3PaGvCkOD .card-wrapper .card-text .mbr-card-title {
  margin-bottom: 0;
}
.cid-t3PaGvCkOD .card-wrapper .card-text p {
  margin-right: 13px;
}
.cid-t3PaGvCkOD .card-wrapper .card-border {
  height: 1px;
  background: #20232a;
  opacity: .3;
  transition: all 1s linear;
}
.cid-t3PaGvCkOD .mbr-section-btn {
  margin-top: 33px;
}
.cid-t3PaGvCkOD .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PaGvCkOD .btn:hover {
  box-shadow: none;
}
.cid-t3PaGvCkOD .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-t3PaGvCkOD .card:hover .card-border {
  opacity: 1;
}
.cid-t3PaGvCkOD .mbr-section-title,
.cid-t3PaGvCkOD .mbr-section-btn {
  text-align: center;
}
.cid-t3PaHcIKCD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaHcIKCD .row {
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}
.cid-t3PaHcIKCD .card {
  padding: 0;
  height: 422px;
  position: relative;
}
.cid-t3PaHcIKCD .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
}
.cid-t3PaHcIKCD .item-wrapper {
  height: 100%;
}
.cid-t3PaHcIKCD .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-t3PaHcIKCD .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 54px 49px;
  transition: all .4s ease;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .cid-t3PaHcIKCD .card-wrapper {
    padding: 34px 31px;
  }
}
@media (max-width: 425px) {
  .cid-t3PaHcIKCD .card-wrapper {
    padding: 31px;
  }
}
.cid-t3PaHcIKCD .mbr-number {
  margin: 0;
  opacity: 0;
  transition: all .4s ease;
  transform: translate(0, -30%);
  pointer-events: visible;
  color: #fff;
  text-align: center;
}
.cid-t3PaHcIKCD .mbr-title {
  pointer-events: visible;
}
@media (max-width: 768px) {
  .cid-t3PaHcIKCD .mbr-title {
    margin-bottom: .5rem;
  }
}
.cid-t3PaHcIKCD .mbr-text {
  margin: 0;
  pointer-events: visible;
  color: #EAEAEA;
  text-align: center;
}
.cid-t3PaHcIKCD .card-text {
  transform: translate(0, 30%);
  transition: all .4s ease;
}
.cid-t3PaHcIKCD .card-text span {
  display: block;
  font-size: 24px;
  margin: 2rem auto 0;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: visible;
}
@media (max-width: 768px) {
  .cid-t3PaHcIKCD .card-text span {
    margin: 2px auto 0;
  }
}
.cid-t3PaHcIKCD .card:hover .mbr-number {
  opacity: 1;
  transform: translate(0, 0);
}
.cid-t3PaHcIKCD .card:hover .mbr-text {
  opacity: .7;
}
.cid-t3PaHcIKCD .card:hover span {
  opacity: 1;
}
.cid-t3PaHcIKCD .card:hover .card-text {
  transform: translate(0, -10%);
}
.cid-t3PaHcIKCD .card:hover .card-wrapper {
  background: #ff4712;
}
.cid-t3PaHcIKCD .mbr-title,
.cid-t3PaHcIKCD .mbr-iconfont {
  color: #fff;
  text-align: center;
}
.cid-t3PaI6XWAz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaI6XWAz .row {
  justify-content: center;
}
.cid-t3PaI6XWAz .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PaI6XWAz .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-t3PaI6XWAz .card {
  height: 460px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-t3PaI6XWAz .card {
    margin-bottom: 30px;
  }
}
.cid-t3PaI6XWAz .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-t3PaI6XWAz .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-t3PaI6XWAz .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-t3PaI6XWAz .card-wrapper {
    padding: 29px;
  }
}
.cid-t3PaI6XWAz .card-wrapper .card-button {
  width: 100%;
}
.cid-t3PaI6XWAz .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ff4712;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-t3PaI6XWAz .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
}
.cid-t3PaI6XWAz .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-t3PaI6XWAz .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-t3PaI6XWAz .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-t3PaI6XWAz .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #ff4712;
  pointer-events: visible;
}
.cid-t3PaI6XWAz .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-t3PaI6XWAz .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-t3PaI6XWAz .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffffff;
  pointer-events: visible;
}
.cid-t3PaI6XWAz .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-t3PaI6XWAz .card:hover .card-text-main {
  transform: translate(0, 0);
}
.cid-t3PaI6XWAz .card:hover .card-text-link {
  opacity: 1;
}
.cid-t3PaI6XWAz .card:hover .mbr-button {
  background: #20232a;
}
.cid-t3PaI6XWAz .mbr-button {
  color: #FFFFFF;
}
.cid-t3PaI6XWAz .mbr-card-title {
  color: #FFFFFF;
}
.cid-t3PaI6XWAz .mbr-date {
  color: #fafafa;
}
.cid-t3PaI6XWAz .mbr-link {
  color: #FFFFFF;
}
.cid-t3PaI6XWAz .mbr-card-title,
.cid-t3PaI6XWAz .mbr-card-title,
.cid-t3PaI6XWAz .card-button,
.cid-t3PaI6XWAz .mbr-date,
.cid-t3PaI6XWAz .mbr-link {
  text-align: left;
}
.cid-t3PaILaFJ0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaILaFJ0 .row {
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}
.cid-t3PaILaFJ0 .card {
  padding: 0;
  height: 422px;
  position: relative;
}
.cid-t3PaILaFJ0 .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
}
.cid-t3PaILaFJ0 .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-t3PaILaFJ0 .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .cid-t3PaILaFJ0 .card-wrapper {
    padding: 34px 31px;
  }
}
@media (max-width: 425px) {
  .cid-t3PaILaFJ0 .card-wrapper {
    padding: 31px;
  }
}
.cid-t3PaILaFJ0 .mbr-number {
  margin: 0;
  opacity: 0;
  transition: all .4s ease;
  transform: translate(0, -30%);
  pointer-events: visible;
  color: #fff;
}
.cid-t3PaILaFJ0 .mbr-title {
  margin-bottom: 0;
  pointer-events: visible;
}
@media (max-width: 768px) {
  .cid-t3PaILaFJ0 .mbr-title {
    margin-bottom: .5rem;
  }
}
.cid-t3PaILaFJ0 .mbr-text {
  margin: 0;
  pointer-events: visible;
}
.cid-t3PaILaFJ0 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #f9f9fc;
  border-radius: 50%;
  font-size: 24px;
  margin: 0;
  pointer-events: visible;
}
@media (max-width: 768px) {
  .cid-t3PaILaFJ0 span {
    margin: 2px auto 0;
  }
}
.cid-t3PaILaFJ0 .card-text-item {
  padding: 0 5px 0 0;
}
.cid-t3PaILaFJ0 .card:hover .mbr-number {
  opacity: 1;
  transform: translate(0, 0);
}
.cid-t3PaILaFJ0 .card:hover .card-link {
  background: #1f242e;
  opacity: .86;
}
.cid-t3PaILaFJ0 .mbr-section-subtitle {
  margin-bottom: 22px;
  color: #FF4712;
  text-align: center;
}
.cid-t3PaILaFJ0 .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
  text-align: center;
}
.cid-t3PaILaFJ0 .mbr-section-head {
  margin-bottom: 45px;
}
.cid-t3PaILaFJ0 .mbr-title,
.cid-t3PaILaFJ0 .mbr-iconfont {
  color: #fff;
}
.cid-t3PaJmLZVf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/parkm5/assets/images/background5.jpg");
}
.cid-t3PaJmLZVf .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PaJmLZVf .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-t3PaJmLZVf .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-t3PaJmLZVf .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PaJmLZVf .btn:hover {
  box-shadow: none;
}
.cid-t3PaJmLZVf .mbr-section-title,
.cid-t3PaJmLZVf .mbr-section-btn {
  text-align: center;
}
.cid-t3PaK8iAEz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaK8iAEz .row {
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t3PaK8iAEz .row {
    flex-direction: column-reverse;
  }
}
.cid-t3PaK8iAEz img {
  width: 160px;
  min-height: 80px;
  object-fit: cover;
  margin: 0 auto;
  opacity: 0.2;
  transition: all 0.3s;
}
.cid-t3PaK8iAEz .card {
  height: fit-content;
}
.cid-t3PaK8iAEz a {
  width: 100%;
  height: 100%;
}
.cid-t3PaK8iAEz a:hover img {
  opacity: 1;
}
.cid-t3PaK8iAEz .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-t3PaK8iAEz .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-t3PaKLeOHc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaKLeOHc .row {
  height: 100%;
  justify-content: center;
}
.cid-t3PaKLeOHc img {
  width: 160px;
  min-height: 80px;
  object-fit: cover;
  margin: 0 auto;
  opacity: 0.2;
  transition: all 0.3s;
}
@media (max-width: 1100px) {
  .cid-t3PaKLeOHc img {
    width: 130px;
  }
}
.cid-t3PaKLeOHc .card {
  height: fit-content;
  margin-bottom: 35px;
}
.cid-t3PaKLeOHc a {
  width: 100%;
  height: 100%;
}
.cid-t3PaKLeOHc a:hover img {
  opacity: 1;
}
.cid-t3PaKLeOHc .mbr-section-head {
  padding-right: 10%;
}
@media (max-width: 992px) {
  .cid-t3PaKLeOHc .mbr-section-head {
    padding: 0 12px;
    margin-bottom: 30px;
  }
}
.cid-t3PaKLeOHc .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 992px) {
  .cid-t3PaKLeOHc .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-t3PaKLeOHc .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 992px) {
  .cid-t3PaKLeOHc .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-t3PaKLeOHc .mbr-text {
  margin: 13.5px 0 0 0;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-t3PaKLeOHc .mbr-text {
    margin: 10px 0 0 0;
  }
}
.cid-t3PaLroQa4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f9f9fc;
}
.cid-t3PaLroQa4 .text-content {
  padding-right: 10%;
}
@media (max-width: 992px) {
  .cid-t3PaLroQa4 .text-content {
    padding: 0 12px;
  }
}
.cid-t3PaLroQa4 .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-t3PaLroQa4 .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
.cid-t3PaLroQa4 .mbr-text {
  margin: 13.5px 0 0 0;
  color: #84858a;
}
.cid-t3PaLroQa4 .address-wrapper {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .cid-t3PaLroQa4 .address-wrapper {
    margin: 20px 0 0 0;
  }
}
.cid-t3PaLroQa4 .address-wrapper .mbr-address {
  margin: 0;
}
.cid-t3PaLroQa4 .address-wrapper .mbr-address span {
  width: 58px;
  height: 58px;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin-right: 14px;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-t3PaLroQa4 .address-wrapper .mbr-address span {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .cid-t3PaLroQa4 .address-wrapper .mbr-address span {
    margin-bottom: 0;
  }
}
.cid-t3PaLroQa4 .address-wrapper .mbr-text {
  margin: 14px 0 0 72px;
}
@media (max-width: 992px) {
  .cid-t3PaLroQa4 .address-wrapper .mbr-text {
    margin: 14px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-t3PaLroQa4 .address-wrapper .mbr-text {
    margin: 6px 0 0 72px;
  }
}
.cid-t3PaLroQa4 .address-wrapper:hover span {
  color: #ffa41d;
}
.cid-t3PaLroQa4 .contact-wrapper {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .cid-t3PaLroQa4 .contact-wrapper {
    margin: 20px 0 0 0;
  }
}
.cid-t3PaLroQa4 .contact-wrapper .mbr-contact {
  margin: 0;
}
.cid-t3PaLroQa4 .contact-wrapper .mbr-contact span {
  width: 58px;
  height: 58px;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin-right: 14px;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-t3PaLroQa4 .contact-wrapper .mbr-contact span {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .cid-t3PaLroQa4 .contact-wrapper .mbr-contact span {
    margin-bottom: 0;
  }
}
.cid-t3PaLroQa4 .contact-wrapper .item-link {
  margin-top: 14px;
  margin-left: 72px;
  display: block;
}
@media (max-width: 992px) {
  .cid-t3PaLroQa4 .contact-wrapper .item-link {
    margin: 14px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-t3PaLroQa4 .contact-wrapper .item-link {
    margin: 6px 0 0 72px;
  }
}
.cid-t3PaLroQa4 .contact-wrapper .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-t3PaLroQa4 .contact-wrapper .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background-color: #6a6a6a;
  transition: all .4s ease;
}
.cid-t3PaLroQa4 .contact-wrapper .mbr-phone {
  margin: 22px 0 0 72px;
}
@media (max-width: 992px) {
  .cid-t3PaLroQa4 .contact-wrapper .mbr-phone {
    margin: 22px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-t3PaLroQa4 .contact-wrapper .mbr-phone {
    margin: 6px 0 0 72px;
  }
}
.cid-t3PaLroQa4 .contact-wrapper:hover span {
  color: #ffa41d;
}
.cid-t3PaLroQa4 .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-t3PaLroQa4 .mbr-address,
.cid-t3PaLroQa4 .mbr-iconfont,
.cid-t3PaLroQa4 .mbr-contact {
  color: #20232a;
}
.cid-t3PaLroQa4 .mbr-link {
  color: #84858a;
}
.cid-t3PaLroQa4 .mbr-phone {
  color: #20232a;
}
.cid-t3PaM3P9Bo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f0f0f5;
}
.cid-t3PaM3P9Bo .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-t3PaM3P9Bo .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-t3PaM3P9Bo .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-t3PaM3P9Bo .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-t3PaM3P9Bo .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-t3PaM3P9Bo .google-map {
  height: 30rem;
  position: relative;
}
.cid-t3PaM3P9Bo .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t3PaM3P9Bo .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t3PaM3P9Bo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t3PaM3P9Bo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t3PaM3P9Bo .mbr-section-subtitle {
  color: #FF4712;
  text-align: center;
}
.cid-t3PaM3P9Bo .mbr-section-title {
  color: #20232a;
  text-align: center;
}
.cid-t3PaN3eUr4 {
  background-color: #ffa41d;
}
.cid-t3PaN3eUr4 .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-t3PaN3eUr4 .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-t3PaN3eUr4 .content p {
  margin: 0;
}
.cid-t3PaN3eUr4 .mbr-text {
  color: #ffffff;
}
.cid-t3PaNJ8tvW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaNJ8tvW .mbr-list {
  display: inline-flex;
}
@media (max-width: 768px) {
  .cid-t3PaNJ8tvW .mbr-list {
    display: block;
    width: auto;
  }
}
.cid-t3PaNJ8tvW .mbr-list ul {
  margin: 0 72px 0 0;
  list-style: none;
  padding-left: 0;
  list-style-position: inside;
}
.cid-t3PaNJ8tvW .mbr-list ul li {
  margin-bottom: 16px;
  display: flex;
  list-style: none;
  position: relative;
}
.cid-t3PaNJ8tvW .mbr-list ul li:before {
  margin-top: -3px;
  margin-right: 12px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff4712;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "✓";
}
.cid-t3PaNJ8tvW .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-t3PaNJ8tvW .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-t3PaNJ8tvW .mbr-text {
  margin-bottom: 32px;
  color: #65676c;
}
.cid-t3PaNJ8tvW .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3PaNJ8tvW .image-wrapper {
    margin-top: 23px;
  }
}
.cid-t3PaNJ8tvW .image-wrapper img:first-child {
  width: 79%;
  max-width: 520px;
  object-fit: cover;
}
.cid-t3PaNJ8tvW .image-wrapper .image-absolute {
  position: absolute;
  top: 48%;
  left: 0;
  max-width: 354px;
  max-height: 283px;
}
@media (max-width: 768px) {
  .cid-t3PaNJ8tvW .image-wrapper .image-absolute {
    max-width: 200px;
    max-height: 250px;
  }
}
.cid-t3PaNJ8tvW .image-wrapper .image-logo {
  position: absolute;
  top: 24%;
  left: 57%;
  width: 80px;
  height: 80px;
}
.cid-t3PaNJ8tvW .mbr-section-title,
.cid-t3PaNJ8tvW .list-wrapper {
  text-align: left;
}
.cid-t3PaOw8P3M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaOw8P3M .content {
  display: flex;
  align-items: center;
}
.cid-t3PaOw8P3M .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-t3PaOw8P3M .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-t3PaOw8P3M .mbr-text {
  margin-bottom: 38px;
  color: #65676c;
}
.cid-t3PaOw8P3M .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PaOw8P3M .btn:hover {
  box-shadow: none;
}
.cid-t3PaOw8P3M .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3PaOw8P3M .image-wrapper {
    margin-top: 25px;
  }
}
.cid-t3PaOw8P3M .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-t3PaOw8P3M .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-t3PaOw8P3M .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-t3PaOw8P3M .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ff4712;
}
.cid-t3PaOw8P3M .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-t3PaOw8P3M .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-t3PaOw8P3M .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ff4712;
}
.cid-t3PaOw8P3M .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-t3PaOw8P3M .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-t3PaOw8P3M .mbr-iconfont {
  color: #ffffff;
}
.cid-t3PaOw8P3M .mbr-image-text {
  color: #ffffff;
}
.cid-t3PaPh4EJH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f5;
}
.cid-t3PaPh4EJH .content {
  display: flex;
  align-items: center;
}
.cid-t3PaPh4EJH .content-main {
  margin-left: 84px;
}
@media (max-width: 992px) {
  .cid-t3PaPh4EJH .content-main {
    margin-left: 0;
  }
}
.cid-t3PaPh4EJH .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 992px) {
  .cid-t3PaPh4EJH .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-t3PaPh4EJH .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-t3PaPh4EJH .mbr-text {
  margin-bottom: 38px;
  color: #65676c;
}
@media (max-width: 992px) {
  .cid-t3PaPh4EJH .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-t3PaPh4EJH .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PaPh4EJH .btn:hover {
  box-shadow: none;
}
.cid-t3PaPh4EJH .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3PaPh4EJH .image-wrapper {
    margin-bottom: 61px;
  }
}
.cid-t3PaPh4EJH .image-wrapper .image-tablet {
  width: 490px;
  height: 370px;
  padding: 1rem;
  border: 6px solid #1f242e;
  border-radius: 5%;
  background: #ffffff;
  margin-left: 30px;
  box-shadow: 0px 0px 20px -5px #65676c;
}
@media (max-width: 1200px) {
  .cid-t3PaPh4EJH .image-wrapper .image-tablet {
    margin-left: 0;
  }
}
.cid-t3PaPh4EJH .image-wrapper .image-tablet img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-t3PaPh4EJH .image-wrapper .image-phone {
  position: absolute;
  bottom: -6%;
  right: 4%;
  width: 170px;
  height: 343px;
  padding: 1rem;
  border: 4px solid #1f242e;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 20px -5px #65676c;
}
@media (max-width: 1400px) {
  .cid-t3PaPh4EJH .image-wrapper .image-phone {
    right: -12%;
  }
}
@media (max-width: 1200px) {
  .cid-t3PaPh4EJH .image-wrapper .image-phone {
    right: -18%;
  }
}
@media (max-width: 992px) {
  .cid-t3PaPh4EJH .image-wrapper .image-phone {
    right: 6rem;
  }
}
.cid-t3PaPh4EJH .image-wrapper .image-phone img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-t3PaPWUjyT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaPWUjyT .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-t3PaPWUjyT .mbr-section-title {
  margin-bottom: 90px;
  color: #20232a;
}
.cid-t3PaPWUjyT .mbr-text {
  margin: 50px 0;
  color: #65676c;
}
.cid-t3PaPWUjyT .image-wrapper img {
  width: 100%;
  height: 690px;
  object-fit: cover;
  margin-bottom: 33px;
}
.cid-t3PaPWUjyT .image-wrapper .image-text {
  display: inline-flex;
  padding: 0 50px;
  position: relative;
  margin-bottom: 12px;
}
.cid-t3PaPWUjyT .image-wrapper .image-text::after {
  position: absolute;
  left: 0;
  top: 5px;
  width: 35px;
  height: 2px;
  content: "";
  display: block;
  background: #20232a;
}
.cid-t3PaPWUjyT .image-wrapper .image-text .mbr-image-text {
  margin: 0 5px 0 0;
}
.cid-t3PaPWUjyT .image-wrapper .image-text .mbr-section-text {
  margin: 0;
}
.cid-t3PaPWUjyT .image-wrapper .mbr-quest {
  padding: 0 50px;
  margin: 0;
}
.cid-t3PaPWUjyT .content {
  margin-top: 120px;
}
.cid-t3PaPWUjyT .mbr-section-text {
  color: #65676c;
}
.cid-t3PaPWUjyT .mbr-image-text {
  color: #20232a;
}
.cid-t3PaPWUjyT .mbr-quest {
  color: #20232a;
}
.cid-t3PaQv9ACX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaQv9ACX .card-wrap-1 {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-t3PaQv9ACX .card-wrap-2 {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-t3PaQv9ACX .card-1 {
  width: 404px;
  padding: 70px 60px;
  margin: 0 0 -1rem 0;
  background: #eaeaea;
}
@media (max-width: 998px) {
  .cid-t3PaQv9ACX .card-1 {
    width: auto;
    padding: 20px;
    margin: 0 0 43px 0;
  }
}
.cid-t3PaQv9ACX .card-1 .mbr-section-title {
  margin-bottom: 13px;
}
.cid-t3PaQv9ACX .card-1 .mbr-section-text {
  margin-bottom: 16px;
}
.cid-t3PaQv9ACX .card-1 .list {
  margin: 0;
  padding-left: 18px;
  list-style-position: inside;
}
.cid-t3PaQv9ACX .card-1 .list li::marker {
  color: #ffa41d;
}
.cid-t3PaQv9ACX .image-wrapper img {
  height: 579px;
  width: 100%;
  object-fit: cover;
}
.cid-t3PaQv9ACX .card-2 {
  width: 404px;
  padding: 90px 60px;
  margin: -4rem 0 0 -6rem;
  background: #ffa41d;
}
@media (max-width: 1300px) {
  .cid-t3PaQv9ACX .card-2 {
    margin: -4rem 0 0 -9rem;
  }
}
@media (max-width: 1100px) {
  .cid-t3PaQv9ACX .card-2 {
    width: 350px;
  }
}
@media (max-width: 998px) {
  .cid-t3PaQv9ACX .card-2 {
    width: auto;
    padding: 20px;
    margin: 43px 0 0 0;
  }
}
.cid-t3PaQv9ACX .card-2 .mbr-title {
  margin-bottom: 13px;
}
.cid-t3PaQv9ACX .card-2 .mbr-text {
  margin-bottom: 18px;
  opacity: .7;
}
.cid-t3PaQv9ACX .btn {
  height: 55px;
  min-width: 170px;
  border: 2px solid #ffffff !important;
  margin-top: 10px;
  margin-bottom: 0;
  box-shadow: none;
}
.cid-t3PaQv9ACX .btn:hover {
  box-shadow: none;
  border: 2px solid #ffffff !important;
}
.cid-t3PaQv9ACX .mbr-section-title {
  color: #20232a;
}
.cid-t3PaQv9ACX .mbr-section-text {
  color: #84858a;
}
.cid-t3PaQv9ACX .list {
  color: #84858a;
}
.cid-t3PaQv9ACX .mbr-title {
  color: #FFFFFF;
}
.cid-t3PaQv9ACX .mbr-text {
  color: #FFFFFF;
}
.cid-t3PaRb9Xih {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaRb9Xih .image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-t3PaRb9Xih .image-wrapper img {
    height: 440px;
  }
}
@media (max-width: 992px) {
  .cid-t3PaRb9Xih .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-t3PaRb9Xih .text {
  padding-left: 108px;
}
@media (max-width: 992px) {
  .cid-t3PaRb9Xih .text {
    padding-left: 1rem;
  }
}
.cid-t3PaRb9Xih .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-t3PaRb9Xih .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-t3PaRb9Xih .text .text-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-t3PaRb9Xih .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-t3PaRb9Xih .text img {
  width: 100%;
  height: 482px;
  object-fit: cover;
  margin-top: 165px;
}
@media (max-width: 992px) {
  .cid-t3PaRb9Xih .text img {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .cid-t3PaRb9Xih .text img {
    height: 294px;
  }
}
.cid-t3PaRb9Xih .mbr-section-subtitle {
  color: #FF4712;
}
.cid-t3PaRb9Xih .mbr-section-title {
  color: #20232a;
}
.cid-t3PaRb9Xih .mbr-text {
  color: #84858a;
}
.cid-t3PaROud4q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaROud4q .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 768px) {
  .cid-t3PaROud4q .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-t3PaROud4q .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-t3PaROud4q .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-t3PaROud4q .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #84858a;
}
@media (max-width: 768px) {
  .cid-t3PaROud4q .mbr-text {
    padding: 0;
  }
}
.cid-t3PaSpgnEs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaSpgnEs .image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3PaSpgnEs .image-wrapper {
    height: auto;
  }
}
@media (max-width: 768px) {
  .cid-t3PaSpgnEs .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-t3PaSpgnEs .image-wrapper img {
  max-width: 520px;
  height: 640px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t3PaSpgnEs .image-wrapper img {
    height: 457px;
  }
}
.cid-t3PaSpgnEs .image-wrapper .mbr-description {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 353px;
  height: auto;
  padding: 55px 40px 55px;
  margin: 0;
  background-color: #1f242e;
}
@media (max-width: 1200px) {
  .cid-t3PaSpgnEs .image-wrapper .mbr-description {
    width: 255px;
  }
}
@media (max-width: 768px) {
  .cid-t3PaSpgnEs .image-wrapper .mbr-description {
    padding: 30px 20px;
  }
}
.cid-t3PaSpgnEs .text {
  padding-left: 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t3PaSpgnEs .text {
    padding: 0 12px;
  }
}
.cid-t3PaSpgnEs .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 768px) {
  .cid-t3PaSpgnEs .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-t3PaSpgnEs .text .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-t3PaSpgnEs .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-t3PaSpgnEs .text .list-wrapper {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .cid-t3PaSpgnEs .text .list-wrapper {
    margin-top: 20px;
  }
}
.cid-t3PaSpgnEs .text .list-wrapper .list-item {
  padding: 27px 0;
  border-top: 1px solid #bbbbbb;
}
.cid-t3PaSpgnEs .text .list-wrapper .list-item:first-child {
  padding-top: 0;
  border: none;
}
.cid-t3PaSpgnEs .text .list-wrapper .list-item:last-child {
  padding-bottom: 0;
}
.cid-t3PaSpgnEs .text .list-wrapper .list-item .mbr-number {
  margin: 0 15px 0 0;
  display: inline;
}
.cid-t3PaSpgnEs .text .list-wrapper .list-item .mbr-list {
  margin: 0;
  display: inline;
}
.cid-t3PaSpgnEs .mbr-section-btn {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .cid-t3PaSpgnEs .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-t3PaSpgnEs .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PaSpgnEs .btn:hover {
  box-shadow: none;
}
.cid-t3PaSpgnEs .mbr-description {
  color: #fafafa;
}
.cid-t3PaSpgnEs .mbr-section-subtitle {
  color: #FF4712;
}
.cid-t3PaSpgnEs .mbr-section-title {
  color: #20232a;
}
.cid-t3PaSpgnEs .mbr-text {
  color: #84858a;
}
.cid-t3PaSpgnEs .mbr-number {
  color: #84858a;
}
.cid-t3PaSpgnEs .mbr-list {
  color: #20232a;
}
.cid-t3PaSpgnEs .mbr-section-title,
.cid-t3PaSpgnEs .list-item,
.cid-t3PaSpgnEs .mbr-section-btn {
  text-align: left;
}
.cid-t3PaSYjWsD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaSYjWsD .image-wrapper {
  margin-bottom: 170px;
}
.cid-t3PaSYjWsD .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-t3PaSYjWsD .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-t3PaSYjWsD .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-t3PaSYjWsD .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-t3PaSYjWsD .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-t3PaSYjWsD .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-t3PaSYjWsD .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-t3PaSYjWsD .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-t3PaSYjWsD .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-t3PaSYjWsD .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-t3PaSYjWsD .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-t3PaSYjWsD .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-t3PaSYjWsD .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-t3PaSYjWsD .card-wrap {
  position: relative;
}
.cid-t3PaSYjWsD .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #ff4712;
}
@media (max-width: 992px) {
  .cid-t3PaSYjWsD .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-t3PaSYjWsD .card-wrapper .item-card {
  padding: 0;
}
.cid-t3PaSYjWsD .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-t3PaSYjWsD .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-t3PaSYjWsD .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-t3PaSYjWsD .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-t3PaSYjWsD .mbr-section-subtitle {
  color: #FF4712;
}
.cid-t3PaSYjWsD .mbr-section-title {
  color: #20232a;
}
.cid-t3PaSYjWsD .mbr-link {
  color: #20232a;
}
.cid-t3PaSYjWsD .mbr-card-title {
  color: #fafafa;
}
.cid-t3PaSYjWsD .mbr-number {
  color: #fafafa;
}
.cid-t3PaSYjWsD .mbr-desc {
  color: #fafafa;
}
.cid-t3PaTz0wJv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3PaTz0wJv .image-wrap-1 {
  padding-right: 0;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-t3PaTz0wJv .image-wrap-1 {
    padding: 0 12px;
  }
}
.cid-t3PaTz0wJv .image-wrap-1 .image-wrapper {
  height: 720px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3PaTz0wJv .image-wrap-1 .image-wrapper {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-t3PaTz0wJv .image-wrap-1 .image-wrapper {
    height: 350px;
  }
}
.cid-t3PaTz0wJv .image-wrap-1 .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
}
.cid-t3PaTz0wJv .image-wrap-2 {
  padding-right: 2rem;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-t3PaTz0wJv .image-wrap-2 {
    padding: 0 24px;
  }
}
.cid-t3PaTz0wJv .image-wrap-2 .image-wrapper {
  height: 360px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 768px) {
  .cid-t3PaTz0wJv .image-wrap-2 .image-wrapper {
    height: 350px;
  }
}
.cid-t3PaTz0wJv .image-wrap-2 .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
}
.cid-t3PaTz0wJv .image-wrap {
  padding: 0;
}
.cid-t3PaTz0wJv .card-link {
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: all .4s ease;
}
.cid-t3PaTz0wJv .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.cid-t3PaTz0wJv .card-wrapper .mbr-title {
  pointer-events: visible;
  margin: 0;
  z-index: 1;
  opacity: 0;
  transform: translate(0, 5%);
  transition: all .3s ease;
}
.cid-t3PaTz0wJv .card-wrapper .mbr-text {
  pointer-events: visible;
  margin: 5px 0 0 0;
  opacity: 0;
  transform: translate(0, 5%);
  transition: all .3s ease;
}
.cid-t3PaTz0wJv .image-wrapper:hover .mbr-title {
  opacity: 1;
  transform: translate(0, 0);
}
.cid-t3PaTz0wJv .image-wrapper:hover .mbr-text {
  opacity: .7;
  transform: translate(0, 0);
}
.cid-t3PaTz0wJv .image-wrapper:hover .card-link {
  position: absolute;
  width: 100%;
  background-color: #ffa41d;
}
.cid-t3PaTz0wJv .mbr-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3PaTz0wJv .mbr-text {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3PaU8cWNN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f5;
}
.cid-t3PaU8cWNN .video-wrapper iframe {
  width: 100%;
}
.cid-t3PaU8cWNN .mbr-section-title,
.cid-t3PaU8cWNN .mbr-section-subtitle,
.cid-t3PaU8cWNN .mbr-text {
  text-align: center;
}
.cid-t3PaU8cWNN .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PaU8cWNN .mbr-section-title {
  margin-bottom: 14px;
  color: #20232a;
  text-align: center;
}
.cid-t3PaU8cWNN .mbr-text {
  margin-bottom: 0;
  color: #65676c;
}
.cid-t3PaU8cWNN .mbr-section-head {
  margin-bottom: 45px;
}
.cid-t3PaUVeIVx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3PaUVeIVx .text-wrapper {
  padding: 1rem;
}
.cid-t3PaUVeIVx .row {
  margin: 0;
}
.cid-t3PaUVeIVx .mbr-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3PaUVeIVx .icon {
  margin: -10.5rem auto 0;
  width: 102px;
  height: 102px;
  background: #fafafa;
  padding: 0;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-t3PaUVeIVx .icon {
    width: 70px;
    height: 70px;
    margin: -25rem auto 0;
  }
}
@media (max-width: 576px) {
  .cid-t3PaUVeIVx .icon {
    margin: -47.3rem auto 0;
  }
}
.cid-t3PaUVeIVx .icon span {
  color: #84858a;
  font-size: 25px;
}
.cid-t3PaUVeIVx .image {
  padding: 0;
  position: relative;
}
.cid-t3PaUVeIVx .image .image-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #20232a;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-t3PaUVeIVx .image:hover .image-overlay {
  opacity: .2;
}
.cid-t3PaUVeIVx .image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  pointer-events: visible;
}
.cid-t3PaW1Sz25 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3PaW1Sz25 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-t3PaW1Sz25 .row {
    padding: 0 12px;
  }
}
.cid-t3PaW1Sz25 .card {
  padding: 0;
  height: 380px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-t3PaW1Sz25 .card {
    height: 280px;
  }
}
.cid-t3PaW1Sz25 .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-t3PaW1Sz25 .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-t3PaW1Sz25 .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3PaW1Sz25 .card-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #20232a;
  opacity: .3;
  z-index: 1;
  pointer-events: none;
}
.cid-t3PaW1Sz25 .card-wrapper {
  padding: 44px 34px;
}
.cid-t3PaW1Sz25 .card-wrapper .mbr-section-title {
  margin: 0;
  pointer-events: visible;
}
.cid-t3PaW1Sz25 .card-wrapper .mbr-text {
  margin: 7px 0 0 0;
  pointer-events: visible;
  letter-spacing: 1px;
}
.cid-t3PaW1Sz25 .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3PaW1Sz25 .mbr-text {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3PaWFtCKb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #171a21;
}
.cid-t3PaWFtCKb .text-wrapper {
  padding: 1rem;
}
.cid-t3PaWFtCKb .row {
  margin: 0;
}
.cid-t3PaWFtCKb .mbr-link {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
}
.cid-t3PaWFtCKb .icon {
  margin: 8.5px 0 33.5px 0;
  border-radius: 50%;
  z-index: 1;
}
.cid-t3PaWFtCKb .icon span {
  font-size: 16px;
  margin-right: 7px;
}
.cid-t3PaWFtCKb .icon .mbr-text {
  display: inline;
  margin: 0;
}
.cid-t3PaWFtCKb .image {
  position: relative;
  margin-bottom: 30px;
}
.cid-t3PaWFtCKb .image .image-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #20232a;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-t3PaWFtCKb .image:hover .image-overlay {
  opacity: .2;
}
.cid-t3PaWFtCKb .image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  pointer-events: visible;
}
@media (max-width: 1200px) {
  .cid-t3PaWFtCKb .image img {
    height: 158px;
  }
}
.cid-t3PaWFtCKb .mbr-link:hover .mbr-iconfont {
  color: #e6e6e6;
}
.cid-t3PaWFtCKb .mbr-text,
.cid-t3PaWFtCKb .mbr-iconfont {
  color: #fafafa;
}
.cid-t3PaXp0Ffj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #382217;
}
.cid-t3PaXp0Ffj .mbr-section-head {
  padding: 0 1rem;
}
.cid-t3PaXp0Ffj .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3PaXp0Ffj .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3PaXp0Ffj .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3PaXp0Ffj .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3PaXp0Ffj .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3PaXp0Ffj .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3PaXp0Ffj .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3PaXp0Ffj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 50%;
  max-width: 40%;
}
@media (max-width: 768px) {
  .cid-t3PaXp0Ffj .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
}
.cid-t3PaXp0Ffj .embla__button--next,
.cid-t3PaXp0Ffj .embla__button--prev {
  display: flex;
}
.cid-t3PaXp0Ffj .embla__button {
  top: -13%;
  width: 38px;
  height: 38px;
  margin-top: -1.5rem;
  font-size: 14px;
  background-color: transparent;
  color: #f9f9fc;
  border: 2px solid #f9f9fc;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t3PaXp0Ffj .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t3PaXp0Ffj .embla__button:hover {
  background: transparent;
  opacity: .7;
}
.cid-t3PaXp0Ffj .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3PaXp0Ffj .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-t3PaXp0Ffj .embla__button {
    top: -10%;
  }
}
.cid-t3PaXp0Ffj .embla {
  position: relative;
  width: 100%;
  margin-top: 53px;
  margin-bottom: -9rem;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-t3PaXp0Ffj .embla {
    margin-top: 80px;
  }
}
.cid-t3PaXp0Ffj .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t3PaXp0Ffj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t3PaXp0Ffj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t3PaXp0Ffj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t3PaXp0Ffj .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: 0.13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PaXp0Ffj .mbr-section-title {
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
}
.cid-t3PaXp0Ffj .mbr-text {
  margin: 0;
  color: #adaeb1;
  text-align: center;
}
.cid-t3PaXp0Ffj .item-wrapper {
  height: 100%;
}
.cid-t3PaXp0Ffj .item-wrapper .image-wrap {
  height: 100%;
}
.cid-t3PaXp0Ffj .item-wrapper .image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t3PaXp0Ffj .item-wrapper .image-wrap img {
    height: 320px;
  }
}
.cid-t3PaYp0Tx3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/parkm5/assets/images/background6.jpg");
}
.cid-t3PaYp0Tx3 .mbr-section-head {
  padding: 0 1rem;
}
.cid-t3PaYp0Tx3 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3PaYp0Tx3 .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3PaYp0Tx3 .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3PaYp0Tx3 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3PaYp0Tx3 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3PaYp0Tx3 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3PaYp0Tx3 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3PaYp0Tx3 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 50%;
  max-width: 40%;
}
@media (max-width: 768px) {
  .cid-t3PaYp0Tx3 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
}
.cid-t3PaYp0Tx3 .embla__button--next,
.cid-t3PaYp0Tx3 .embla__button--prev {
  display: flex;
}
.cid-t3PaYp0Tx3 .embla__button {
  top: -13%;
  width: 38px;
  height: 38px;
  margin-top: -1.5rem;
  font-size: 14px;
  background-color: transparent;
  color: #ffa41d;
  border: 2px solid #ffa41d;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t3PaYp0Tx3 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t3PaYp0Tx3 .embla__button:hover {
  background: transparent;
  opacity: .7;
}
.cid-t3PaYp0Tx3 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3PaYp0Tx3 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-t3PaYp0Tx3 .embla__button {
    top: -10%;
  }
}
.cid-t3PaYp0Tx3 .embla {
  position: relative;
  width: 100%;
  margin-top: 52px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-t3PaYp0Tx3 .embla {
    margin-top: 80px;
  }
}
.cid-t3PaYp0Tx3 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t3PaYp0Tx3 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t3PaYp0Tx3 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t3PaYp0Tx3 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t3PaYp0Tx3 .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: 0.13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PaYp0Tx3 .mbr-section-title {
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
.cid-t3PaYp0Tx3 .mbr-text {
  margin: 0;
  color: #EAEAEA;
  text-align: center;
}
.cid-t3PaYp0Tx3 .mbr-text ul {
  list-style-position: inside;
  display: flex;
  justify-content: center;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-t3PaYp0Tx3 .mbr-text ul {
    display: block;
  }
}
.cid-t3PaYp0Tx3 .mbr-text ul li {
  padding: 0 3rem;
}
@media (max-width: 992px) {
  .cid-t3PaYp0Tx3 .mbr-text ul li {
    margin-top: 10px;
    margin-left: 0;
  }
}
.cid-t3PaYp0Tx3 .mbr-text ul li::marker {
  color: #ffa41d;
  font-size: 18px;
}
.cid-t3PaYp0Tx3 .item-wrapper {
  height: 100%;
}
.cid-t3PaYp0Tx3 .item-wrapper .image-wrap {
  height: 100%;
}
.cid-t3PaYp0Tx3 .item-wrapper .image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t3PaYp0Tx3 .item-wrapper .image-wrap img {
    height: 320px;
  }
}
.cid-t3PaZsv3xz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PaZsv3xz .mbr-section-head {
  padding: 0 1rem;
}
.cid-t3PaZsv3xz img,
.cid-t3PaZsv3xz .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t3PaZsv3xz .item:focus,
.cid-t3PaZsv3xz span:focus {
  outline: none;
}
.cid-t3PaZsv3xz .item-wrapper {
  position: relative;
}
.cid-t3PaZsv3xz .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-t3PaZsv3xz .slide-content:hover .item-content {
  background: #ff4712;
}
.cid-t3PaZsv3xz .slide-content:hover .mbr-text {
  color: #ffffff;
}
.cid-t3PaZsv3xz .slide-content:hover .item-content span {
  color: #ffffff;
}
.cid-t3PaZsv3xz .item-content {
  background: #ffffff;
  padding: 50px 40px 58px;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-t3PaZsv3xz .item-content {
    padding: 35px 25px;
  }
}
@media (max-width: 425px) {
  .cid-t3PaZsv3xz .item-content {
    padding: 30px 25px 32px;
  }
}
.cid-t3PaZsv3xz .item-content span {
  font-size: 35px;
  margin: 0 auto;
  color: #ff4712;
  transition: all .4s ease;
}
.cid-t3PaZsv3xz .item-content .mbr-text {
  margin: 18px 0 0 0;
}
.cid-t3PaZsv3xz .item-person {
  margin-top: 40px;
}
.cid-t3PaZsv3xz .item-person img {
  height: 78px;
  width: 78px;
  object-fit: cover;
  margin: 0 auto 28px;
  border-radius: 50%;
}
.cid-t3PaZsv3xz .item-person .item-title {
  margin: 0;
}
.cid-t3PaZsv3xz .item-person .item-subtitle {
  margin: 6px 0 0 0;
}
.cid-t3PaZsv3xz .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-t3PaZsv3xz .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t3PaZsv3xz .embla__button--next,
.cid-t3PaZsv3xz .embla__button--prev {
  display: flex;
}
.cid-t3PaZsv3xz .embla__button {
  bottom: -10%;
  width: 38px;
  height: 38px;
  margin-top: -1.5rem;
  font-size: 14px;
  background-color: transparent;
  color: #ff4712;
  border: 2px solid #ff4712;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t3PaZsv3xz .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t3PaZsv3xz .embla__button:hover {
  background: transparent;
  opacity: .7;
}
.cid-t3PaZsv3xz .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3PaZsv3xz .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t3PaZsv3xz .embla__button {
    top: auto;
  }
}
.cid-t3PaZsv3xz .embla {
  position: relative;
  width: 100%;
}
.cid-t3PaZsv3xz .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t3PaZsv3xz .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t3PaZsv3xz .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t3PaZsv3xz .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t3PaZsv3xz .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-t3PaZsv3xz .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PaZsv3xz .mbr-text {
  color: #20232a;
  text-align: center;
}
.cid-t3PaZsv3xz .item-title {
  color: #20232a;
  text-align: center;
}
.cid-t3PaZsv3xz .item-subtitle {
  color: #adaeb1;
  text-align: center;
}
.cid-t3Pb1pTMIi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3Pb1pTMIi .mbr-section-head {
  padding: 0 1rem;
}
.cid-t3Pb1pTMIi img,
.cid-t3Pb1pTMIi .item-img {
  width: 100%;
}
.cid-t3Pb1pTMIi .item:focus,
.cid-t3Pb1pTMIi span:focus {
  outline: none;
}
.cid-t3Pb1pTMIi .slide-content {
  position: relative;
  height: fit-content;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
  background: #ffffff;
  padding: 74px 40px;
}
@media (max-width: 992px) {
  .cid-t3Pb1pTMIi .slide-content {
    padding: 54px 30px;
  }
}
@media (max-width: 768px) {
  .cid-t3Pb1pTMIi .slide-content {
    padding: 34px 20px;
  }
}
.cid-t3Pb1pTMIi .slide-content .item-rating {
  display: inline-flex;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .cid-t3Pb1pTMIi .slide-content .item-rating {
    margin-bottom: 16px;
  }
}
.cid-t3Pb1pTMIi .slide-content .item-rating span {
  margin: 0;
  color: #ffa41d;
  font-size: 19px;
}
.cid-t3Pb1pTMIi .slide-content .mbr-text {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-t3Pb1pTMIi .slide-content .mbr-text {
    margin-bottom: 10px;
  }
}
.cid-t3Pb1pTMIi .slide-content .item-title {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cid-t3Pb1pTMIi .slide-content .item-title {
    margin-bottom: 3px;
  }
}
.cid-t3Pb1pTMIi .slide-content .item-subtitle {
  margin: 0;
}
.cid-t3Pb1pTMIi .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 338px;
  max-width: 338px;
}
@media (max-width: 768px) {
  .cid-t3Pb1pTMIi .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t3Pb1pTMIi .embla__button--next,
.cid-t3Pb1pTMIi .embla__button--prev {
  display: flex;
}
.cid-t3Pb1pTMIi .embla__button {
  top: -5%;
  width: 38px;
  height: 38px;
  margin-top: -1.5rem;
  font-size: 14px;
  background-color: transparent;
  color: #ffa41d;
  border: 2px solid #ffa41d;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t3Pb1pTMIi .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t3Pb1pTMIi .embla__button:hover {
  background: transparent;
  opacity: .7;
}
.cid-t3Pb1pTMIi .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3Pb1pTMIi .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t3Pb1pTMIi .embla__button {
    top: auto;
  }
}
.cid-t3Pb1pTMIi .embla {
  position: relative;
  width: 100%;
}
.cid-t3Pb1pTMIi .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t3Pb1pTMIi .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t3Pb1pTMIi .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t3Pb1pTMIi .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t3Pb1pTMIi .embla__dots {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cid-t3Pb1pTMIi .embla__dots {
    margin-top: 31px;
  }
}
.cid-t3Pb1pTMIi .embla__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #adaeb1;
  margin: 0 6px;
  padding: 0;
}
.cid-t3Pb1pTMIi .embla__dot:focus {
  background: #ffa41d;
}
.cid-t3Pb1pTMIi .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-t3Pb1pTMIi .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3Pb1pTMIi .mbr-text {
  color: #84858a;
}
.cid-t3Pb1pTMIi .item-title {
  color: #20232a;
  text-align: left;
}
.cid-t3Pb1pTMIi .item-subtitle {
  color: #adaeb1;
  text-align: left;
}
.cid-t3Pb1pTMIi .mbr-text,
.cid-t3Pb1pTMIi .item-rating {
  text-align: left;
}
.cid-t3Pb2kWiZZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3Pb2kWiZZ .mbr-section-head {
  padding: 0 1rem;
}
.cid-t3Pb2kWiZZ img,
.cid-t3Pb2kWiZZ .item-img {
  width: 100%;
}
.cid-t3Pb2kWiZZ .item:focus,
.cid-t3Pb2kWiZZ span:focus {
  outline: none;
}
.cid-t3Pb2kWiZZ .slide-link {
  width: 100%;
  height: 100%;
}
.cid-t3Pb2kWiZZ .slide-content {
  height: 100%;
  position: relative;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
  justify-content: space-between;
}
.cid-t3Pb2kWiZZ .slide-content .mbr-text {
  margin-bottom: 27px;
}
@media (max-width: 425px) {
  .cid-t3Pb2kWiZZ .slide-content .mbr-text {
    margin-bottom: 13px;
  }
}
.cid-t3Pb2kWiZZ .slide-content .item-title {
  margin-bottom: 22px;
}
.cid-t3Pb2kWiZZ .slide-content .item-link {
  display: flex;
  align-items: center;
  transform: translate(-26%, 0);
  transition: all .4s ease;
}
@media (max-width: 768px) {
  .cid-t3Pb2kWiZZ .slide-content .item-link {
    transform: none;
  }
}
.cid-t3Pb2kWiZZ .slide-content .item-link .mbr-link {
  margin: 0 10px 0 0;
}
.cid-t3Pb2kWiZZ .slide-content .image-wrapper {
  height: 295px;
  overflow: hidden;
  margin-top: 68px;
}
@media (max-width: 425px) {
  .cid-t3Pb2kWiZZ .slide-content .image-wrapper {
    margin-top: 19px;
  }
}
.cid-t3Pb2kWiZZ .slide-content .image-wrapper img {
  width: 100%;
  height: 295px;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .7s ease;
}
.cid-t3Pb2kWiZZ .slide-link:hover .item-link {
  transform: translate(0, 0);
}
.cid-t3Pb2kWiZZ .slide-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-t3Pb2kWiZZ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 338px;
  max-width: 338px;
}
@media (max-width: 768px) {
  .cid-t3Pb2kWiZZ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t3Pb2kWiZZ .embla__button--next,
.cid-t3Pb2kWiZZ .embla__button--prev {
  display: flex;
}
.cid-t3Pb2kWiZZ .embla__button {
  bottom: -8%;
  width: 38px;
  height: 38px;
  margin-top: -1.5rem;
  font-size: 14px;
  background-color: transparent;
  color: #20232a;
  border: 2px solid #20232a;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t3Pb2kWiZZ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t3Pb2kWiZZ .embla__button:hover {
  background: transparent;
  opacity: .7;
}
.cid-t3Pb2kWiZZ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3Pb2kWiZZ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t3Pb2kWiZZ .embla__button {
    top: auto;
  }
}
.cid-t3Pb2kWiZZ .embla {
  position: relative;
  width: 100%;
}
.cid-t3Pb2kWiZZ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t3Pb2kWiZZ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t3Pb2kWiZZ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t3Pb2kWiZZ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 992px) {
  .cid-t3Pb2kWiZZ .embla__viewport.container-fluid {
    padding: 0;
  }
}
.cid-t3Pb2kWiZZ .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: left;
}
@media (max-width: 425px) {
  .cid-t3Pb2kWiZZ .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-t3Pb2kWiZZ .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: left;
}
@media (max-width: 425px) {
  .cid-t3Pb2kWiZZ .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-t3Pb2kWiZZ .mbr-text {
  color: #84858a;
  text-align: left;
}
.cid-t3Pb2kWiZZ .item-title {
  color: #20232a;
  text-align: left;
}
.cid-t3Pb2kWiZZ .mbr-link,
.cid-t3Pb2kWiZZ .mbr-iconfont {
  color: #20232a;
}
.cid-t3Pb3pEokt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f5;
}
.cid-t3Pb3pEokt img,
.cid-t3Pb3pEokt .item-img {
  width: 100%;
}
.cid-t3Pb3pEokt .item:focus,
.cid-t3Pb3pEokt span:focus {
  outline: none;
}
.cid-t3Pb3pEokt .slide-content {
  width: 100%;
  height: 460px;
  position: relative;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (max-width: 992px) {
  .cid-t3Pb3pEokt .slide-content {
    margin-bottom: 30px;
  }
}
.cid-t3Pb3pEokt .slide-content img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-t3Pb3pEokt .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-t3Pb3pEokt .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-t3Pb3pEokt .card-wrapper {
    padding: 29px;
  }
}
.cid-t3Pb3pEokt .card-wrapper .card-button {
  width: 100%;
}
.cid-t3Pb3pEokt .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ff4712;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-t3Pb3pEokt .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-t3Pb3pEokt .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-t3Pb3pEokt .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .85;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-t3Pb3pEokt .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #ffa41d;
  pointer-events: visible;
}
.cid-t3Pb3pEokt .slide-content:hover img {
  transform: scale(1.1, 1.1);
}
.cid-t3Pb3pEokt .slide-content:hover .mbr-button {
  background: #20232a;
}
.cid-t3Pb3pEokt .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-t3Pb3pEokt .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t3Pb3pEokt .embla__button--next,
.cid-t3Pb3pEokt .embla__button--prev {
  display: flex;
}
.cid-t3Pb3pEokt .embla__button {
  width: 38px;
  height: 38px;
  margin-top: -1.5rem;
  font-size: 14px;
  background-color: transparent;
  color: #b3b3b3;
  border: 2px solid #e6e6e6;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20%;
}
@media (max-width: 992px) {
  .cid-t3Pb3pEokt .embla__button {
    top: -5%;
  }
}
@media (max-width: 768px) {
  .cid-t3Pb3pEokt .embla__button {
    top: -8%;
  }
}
.cid-t3Pb3pEokt .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t3Pb3pEokt .embla__button:hover {
  background: transparent;
  color: #ffa41d;
}
.cid-t3Pb3pEokt .embla__button.embla__button--prev {
  right: 2.6rem;
}
@media (max-width: 768px) {
  .cid-t3Pb3pEokt .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-t3Pb3pEokt .embla__button.embla__button--next {
  right: 0;
}
@media (max-width: 768px) {
  .cid-t3Pb3pEokt .embla__button.embla__button--next {
    left: 2.6rem;
  }
}
.cid-t3Pb3pEokt .embla {
  position: relative;
  width: 100%;
  margin-top: 45px;
}
@media (max-width: 992px) {
  .cid-t3Pb3pEokt .embla {
    margin-top: 88px;
  }
}
.cid-t3Pb3pEokt .embla__viewport {
  overflow: hidden;
  width: 120%;
  padding: 0;
}
.cid-t3Pb3pEokt .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t3Pb3pEokt .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t3Pb3pEokt .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t3Pb3pEokt .mbr-section-title {
  margin-bottom: 20px;
  color: #20232a;
  text-align: left;
}
.cid-t3Pb3pEokt .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: left;
}
@media (max-width: 992px) {
  .cid-t3Pb3pEokt .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-t3Pb3pEokt .mbr-text {
  margin: 55px 0 0 0;
  color: #84858a;
  text-align: left;
}
@media (max-width: 992px) {
  .cid-t3Pb3pEokt .mbr-text {
    margin: 0;
  }
}
.cid-t3Pb3pEokt .mbr-button {
  color: #FFFFFF;
}
.cid-t3Pb3pEokt .mbr-card-title {
  color: #FFFFFF;
}
.cid-t3Pb3pEokt .mbr-date {
  color: #fafafa;
}
.cid-t3Pb3pEokt .mbr-card-title,
.cid-t3Pb3pEokt .card-button,
.cid-t3Pb3pEokt .card-text-date {
  text-align: left;
}
.cid-t3Pb4dnEsf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f9f9fc;
}
.cid-t3Pb4dnEsf .mbr-fallback-image.disabled {
  display: none;
}
.cid-t3Pb4dnEsf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t3Pb4dnEsf .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3Pb4dnEsf .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3Pb4dnEsf .card-wrap {
  padding: 0 20%;
}
@media (max-width: 991px) {
  .cid-t3Pb4dnEsf .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3Pb4dnEsf .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3Pb4dnEsf .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3Pb4dnEsf .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3Pb4dnEsf .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-t3Pb4dnEsf .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t3Pb4dnEsf .embla__button--next,
.cid-t3Pb4dnEsf .embla__button--prev {
  display: flex;
}
.cid-t3Pb4dnEsf .embla__button {
  top: 50%;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  border: 1px solid #84858a;
  color: #84858a;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t3Pb4dnEsf .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t3Pb4dnEsf .embla__button:hover {
  background: transparent;
  color: #ffa41d;
  border: 1px solid #ffa41d;
}
.cid-t3Pb4dnEsf .embla__button.embla__button--prev {
  left: 10%;
}
.cid-t3Pb4dnEsf .embla__button.embla__button--next {
  right: 10%;
}
@media (max-width: 767px) {
  .cid-t3Pb4dnEsf .embla__button {
    top: auto;
  }
}
.cid-t3Pb4dnEsf .embla {
  position: relative;
  width: 100%;
}
.cid-t3Pb4dnEsf .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t3Pb4dnEsf .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t3Pb4dnEsf .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t3Pb4dnEsf .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t3Pb4dnEsf .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t3Pb4dnEsf .item-wrapper {
    padding: 0;
  }
}
.cid-t3Pb4dnEsf .item-wrapper img {
  width: 103px;
  height: 103px;
  border-radius: 50%;
  margin: 0 auto 38px;
  object-fit: cover;
}
.cid-t3Pb4dnEsf .carousel-caption {
  position: static;
  padding: 0;
}
.cid-t3Pb4dnEsf .carousel-caption .mbr-text {
  margin: 0;
}
.cid-t3Pb4dnEsf .carousel-caption .mbr-icon {
  margin-top: 32px;
}
.cid-t3Pb4dnEsf .carousel-caption .mbr-icon span {
  color: #ff4712;
  font-size: 31px;
}
.cid-t3Pb4dnEsf .carousel-caption .mbr-section-title {
  margin: 22px 0 0 0;
}
.cid-t3Pb4dnEsf .carousel-caption .mbr-desc {
  margin: 6px 0 0 0;
}
.cid-t3Pb4dnEsf .carousel-control:hover {
  background-color: transparent;
  color: #ffa41d;
}
.cid-t3Pb4dnEsf .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t3Pb4dnEsf .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .cid-t3Pb4dnEsf .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t3Pb4dnEsf .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t3Pb4dnEsf .container .carousel-indicators {
  margin: 0 0 -4% 0;
}
.cid-t3Pb4dnEsf .item-menu-overlay {
  display: none !important;
  pointer-events: none;
}
.cid-t3Pb4dnEsf .mbr-text {
  color: #20232a;
}
.cid-t3Pb4dnEsf .mbr-section-title {
  color: #20232a;
}
.cid-t3Pb4dnEsf .mbr-desc {
  color: #84858a;
}
.cid-t3Pb4dnEsf .mbr-text,
.cid-t3Pb4dnEsf .mbr-icon {
  text-align: center;
}
.cid-t3Pb6cpd8a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f5;
}
.cid-t3Pb6cpd8a .iconfont-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff4712;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
}
.cid-t3Pb6cpd8a .iconfont-wrapper span {
  font-size: 28px;
  color: #ffffff;
}
.cid-t3Pb6cpd8a .mbr-section-title {
  margin-bottom: 30px;
  color: #20232a;
}
.cid-t3Pb6cpd8a .btn {
  width: 100%;
  height: 55px;
  min-width: 170px;
  margin-top: 0;
  flex-direction: row-reverse;
  letter-spacing: 0.8px;
}
.cid-t3Pb6cpd8a .btn span {
  margin-right: 11px;
}
.cid-t3Pb6cpd8a .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-t3Pb6cpd8a H1 {
  text-align: center;
}
.cid-t3Pb6cpd8a .form-control {
  border-radius: 30px;
  border: none !important;
  height: 55px;
}
.cid-t3Pb6cpd8a .form-check {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.cid-t3Pb6cpd8a .form-check label {
  margin-left: 11px;
}
.cid-t3Pb6PDQ42 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f5;
}
.cid-t3Pb6PDQ42 .container,
.cid-t3Pb6PDQ42 .container-fluid {
  padding: 0;
}
.cid-t3Pb6PDQ42 .item-map {
  padding-right: 0;
}
.cid-t3Pb6PDQ42 .item-map .google-map {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-t3Pb6PDQ42 .item-map .google-map {
    margin-bottom: 80px;
    height: 500px;
  }
}
.cid-t3Pb6PDQ42 .item-map .google-map iframe {
  min-height: 800px;
}
@media (max-width: 992px) {
  .cid-t3Pb6PDQ42 .item-map .google-map iframe {
    min-height: 500px;
  }
}
.cid-t3Pb6PDQ42 .mbr-form {
  padding: 0 .5rem;
}
.cid-t3Pb6PDQ42 .item-form {
  padding: 0 6.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .cid-t3Pb6PDQ42 .item-form {
    padding: 0 4.8rem;
  }
}
.cid-t3Pb6PDQ42 .item-form .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-t3Pb6PDQ42 .item-form .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-t3Pb6PDQ42 .item-form .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-t3Pb6PDQ42 .item-form .mbr-section-title {
    margin-bottom: 8px;
  }
}
.cid-t3Pb6PDQ42 .btn {
  width: 100%;
  height: 55px;
  min-width: 170px;
  margin-top: 0;
  flex-direction: row-reverse;
  letter-spacing: 0.8px;
  box-shadow: none;
}
.cid-t3Pb6PDQ42 .btn:hover {
  box-shadow: none;
}
.cid-t3Pb6PDQ42 .btn span {
  margin-right: 11px;
}
.cid-t3Pb6PDQ42 .form-group {
  margin-bottom: 21px;
}
.cid-t3Pb6PDQ42 .form-control {
  border: none !important;
  border-bottom: 1px solid #bbbbbb !important;
  border-radius: 0;
  min-height: 45px;
  background: transparent;
  box-shadow: none;
  padding: 10px 0;
}
.cid-t3Pb6PDQ42 .form-control:focus,
.cid-t3Pb6PDQ42 .form-control:hover {
  box-shadow: none;
}
.cid-t3Pb6PDQ42 .form-check {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.cid-t3Pb6PDQ42 .form-check label {
  margin-left: 11px;
}
.cid-t3Pb6PDQ42 form .row [class*=col] {
  padding: 0 0 0 0;
}
.cid-t3Pb6PDQ42 form .row [class*=col]:nth-child(2n) {
  padding: 0 0 0 30px;
}
@media (max-width: 992px) {
  .cid-t3Pb6PDQ42 form .row [class*=col]:nth-child(2n) {
    padding: 0;
  }
}
.cid-t3Pb6PDQ42 form .row [class*=col]:last-child {
  padding: 0 0 0 0;
  margin-top: 23px;
}
@media (max-width: 992px) {
  .cid-t3Pb6PDQ42 form .row [class*=col]:last-child {
    margin-top: 9px;
  }
}
.cid-t3Pb6PDQ42 .mbr-section-subtitle {
  color: #FF4712;
}
.cid-t3Pb6PDQ42 .mbr-section-title {
  color: #20232a;
}
.cid-t3Pb7DZJpi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3Pb7DZJpi .item-image {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-t3Pb7DZJpi .item-image {
    display: none;
  }
}
.cid-t3Pb7DZJpi .item-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}
.cid-t3Pb7DZJpi .item-form {
  padding: 40px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-t3Pb7DZJpi .item-form {
    padding: 25px;
  }
}
.cid-t3Pb7DZJpi .item-form .mbr-section-title {
  margin-bottom: 28px;
}
.cid-t3Pb7DZJpi .item-form .form-group {
  margin-bottom: 0;
}
.cid-t3Pb7DZJpi .item-form .form-control {
  padding: 10px 25px 10px 0;
  background-color: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
  border-radius: 0;
}
.cid-t3Pb7DZJpi .item-form .form-control:hover {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
}
.cid-t3Pb7DZJpi .item-form .form-control:focus {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
}
.cid-t3Pb7DZJpi .item-form .form-check {
  margin: 22px 0 27px 0;
  padding-left: 27px;
}
.cid-t3Pb7DZJpi .form-check-input:focus {
  box-shadow: none;
  border-color: #20232a;
}
.cid-t3Pb7DZJpi .form-check-input:checked {
  background-color: #20232a;
}
.cid-t3Pb7DZJpi .btn {
  width: 100%;
  height: 55px;
  min-width: 170px;
  margin-top: 0;
  flex-direction: row-reverse;
  letter-spacing: 0.8px;
  box-shadow: none;
  border: none !important;
}
.cid-t3Pb7DZJpi .btn:hover {
  box-shadow: none;
}
.cid-t3Pb7DZJpi .mbr-section-title {
  color: #20232a;
}
.cid-t3Pb7DZJpi .form-check-label {
  color: #84858a;
}
.cid-t3Pb8sskEp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3Pb8sskEp .row {
  justify-content: center;
}
.cid-t3Pb8sskEp .dragArea.row {
  justify-content: space-between;
}
.cid-t3Pb8sskEp .mbr-section-title {
  margin: 0;
  color: #20232a;
}
.cid-t3Pb8sskEp .item-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-t3Pb8sskEp .item-form .form-group {
  margin-bottom: 0;
}
.cid-t3Pb8sskEp .item-form .form-control {
  padding: 12px 0;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
  border-radius: 0;
}
.cid-t3Pb8sskEp .item-form .form-control:hover {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
}
.cid-t3Pb8sskEp .item-form .form-control:focus {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
}
.cid-t3Pb8sskEp .item-form .form-check {
  margin: 20px 0 0 0;
  padding-left: 27px;
}
.cid-t3Pb8sskEp .form-check-input:focus {
  box-shadow: none;
  border-color: #20232a;
}
.cid-t3Pb8sskEp .form-check-input:checked {
  background-color: #20232a;
}
.cid-t3Pb8sskEp .btn {
  height: 55px;
  width: 170px;
  flex-direction: row-reverse;
  letter-spacing: 0.8px;
  box-shadow: none;
  border: none !important;
  margin-top: 6px;
}
@media (max-width: 992px) {
  .cid-t3Pb8sskEp .btn {
    margin-top: 10px;
  }
}
.cid-t3Pb8sskEp .btn:hover {
  box-shadow: none;
  background: transparent !important;
  color: #ffa41d !important;
  border: none;
}
.cid-t3Pb8sskEp .btn:focus {
  box-shadow: none;
  background: transparent !important;
  color: #ffa41d !important;
  border: none;
}
.cid-t3Pb8sskEp .btn span {
  margin-right: 15px;
}
.cid-t3Pb8sskEp .form-check-label {
  color: #84858a;
}
.cid-t3Pb9mFF5B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f5;
}
.cid-t3Pb9mFF5B .row {
  justify-content: center;
}
.cid-t3Pb9mFF5B .mbr-form {
  z-index: 1;
}
.cid-t3Pb9mFF5B .dragArea.row {
  justify-content: space-between;
}
.cid-t3Pb9mFF5B .mbr-section-title {
  color: #84858a;
  position: absolute;
  top: -18%;
  right: 0;
  letter-spacing: .13em;
  opacity: .3;
  pointer-events: visible;
}
@media (max-width: 768px) {
  .cid-t3Pb9mFF5B .mbr-section-title {
    display: none;
  }
}
.cid-t3Pb9mFF5B .item-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.cid-t3Pb9mFF5B .item-form .form-group {
  margin-bottom: 0;
}
.cid-t3Pb9mFF5B .item-form .form-control {
  padding: 12px 0;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
  border-radius: 0;
}
.cid-t3Pb9mFF5B .item-form .form-control:hover {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
}
.cid-t3Pb9mFF5B .item-form .form-control:focus {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
}
.cid-t3Pb9mFF5B .item-form .form-check {
  margin: 20px 0 0 0;
  padding-left: 27px;
}
.cid-t3Pb9mFF5B .form-check-input:focus {
  box-shadow: none;
  border-color: #20232a;
}
.cid-t3Pb9mFF5B .form-check-input:checked {
  background-color: #20232a;
}
.cid-t3Pb9mFF5B .btn {
  height: 55px;
  width: 170px;
  flex-direction: row-reverse;
  letter-spacing: 0.8px;
  box-shadow: none;
  border: none !important;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-t3Pb9mFF5B .btn {
    margin-top: 10px;
  }
}
.cid-t3Pb9mFF5B .btn:hover {
  box-shadow: none;
  background: transparent !important;
  color: #ffa41d !important;
  border: none;
}
.cid-t3Pb9mFF5B .btn:focus {
  box-shadow: none;
  background: transparent !important;
  color: #ffa41d !important;
  border: none;
}
.cid-t3Pb9mFF5B .btn span {
  margin-right: 15px;
}
.cid-t3Pb9mFF5B .form-check-label {
  color: #84858a;
}
.cid-t3PbacZd8J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/parkm5/assets/images/background5.jpg");
}
.cid-t3PbacZd8J .number-wrap {
  color: #f9f9fc;
  text-align: center;
  position: relative;
}
.cid-t3PbacZd8J .number-wrap::before {
  content: ':';
  display: block;
  font-size: 50px;
  color: #f9f9fc;
  position: absolute;
  top: 10%;
  right: -15%;
}
@media (max-width: 992px) {
  .cid-t3PbacZd8J .number-wrap::before {
    display: none;
  }
}
.cid-t3PbacZd8J .row .col-3:last-child .number-wrap::before {
  content: '';
}
.cid-t3PbacZd8J .number {
  color: #f9f9fc;
  white-space: nowrap;
  padding-bottom: 10px;
  display: block;
}
.cid-t3PbacZd8J .number::after {
  content: '';
  display: block;
  width: 31px;
  height: 2px;
  margin: 0 auto -12px;
  background: #f9f9fc;
  opacity: .3;
}
.cid-t3PbacZd8J .period {
  display: block;
  padding-top: 10px;
  font-weight: bold;
}
.cid-t3PbacZd8J .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-t3PbacZd8J .period {
    font-size: 0.8rem;
  }
}
.cid-t3PbacZd8J .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PbacZd8J .btn:hover {
  box-shadow: none;
}
.cid-t3PbacZd8J .mbr-section-btn {
  margin-top: 50px;
}
.cid-t3PbacZd8J .mbr-section-subtitle {
  margin-bottom: 12px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PbacZd8J .mbr-section-title {
  margin-bottom: 50px;
  color: #f9f9fc;
}
.cid-t3PbacZd8J .mbr-section-title,
.cid-t3PbacZd8J .mbr-section-btn {
  text-align: center;
}
.cid-t3Pbbrwn24 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f9f9fc;
}
.cid-t3Pbbrwn24 .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
  color: #84858a;
}
.cid-t3Pbbrwn24 .plan {
  word-break: break-word;
  background-color: #ffffff;
  padding: 60px 30px 70px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-t3Pbbrwn24 .plan {
    margin-bottom: 30px;
  }
}
@media (max-width: 425px) {
  .cid-t3Pbbrwn24 .plan {
    padding: 30px 15px 40px;
  }
}
.cid-t3Pbbrwn24 .plan .plan-header {
  margin-bottom: 39px;
}
.cid-t3Pbbrwn24 .plan .plan-header .plan-title {
  margin-bottom: 22px;
}
.cid-t3Pbbrwn24 .plan .plan-header .price {
  margin: 0;
  color: #20232a;
}
.cid-t3Pbbrwn24 .plan .plan-header .price-term {
  margin: 16px 0 0 0;
}
.cid-t3Pbbrwn24 .plan .plan-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-t3Pbbrwn24 .plan .list-group li {
  padding: 8px 0 0 0;
  border: none;
}
.cid-t3Pbbrwn24 .plan .list-group li:first-child {
  padding: 0;
}
.cid-t3Pbbrwn24 .plan .list-group li::after {
  transform: translateY(-50%);
  content: "✓";
  color: #ffa41d;
  font-size: 14px;
  margin-left: 12px;
}
.cid-t3Pbbrwn24 .plan:hover .price {
  color: #ffa41d;
}
.cid-t3Pbbrwn24 .plan:hover .btn {
  color: #ffffff !important;
  background: #ffa41d !important;
  border: none;
}
.cid-t3Pbbrwn24 .mbr-section-btn {
  margin-top: 29px;
}
.cid-t3Pbbrwn24 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  background: transparent !important;
  color: #20232a !important;
  border-color: #20232a !important;
}
.cid-t3Pbbrwn24 .btn:hover {
  box-shadow: none;
  color: #ffffff !important;
  background: #ffa41d !important;
  border: none;
}
.cid-t3Pbbrwn24 .mbr-section-subtitle {
  margin-bottom: 22px;
  color: #FF4712;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t3Pbbrwn24 .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-t3Pbbrwn24 .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
  text-align: center;
}
.cid-t3Pbbrwn24 .mbr-text {
  margin: 13.5px 0 0 0;
  color: #84858a;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t3Pbbrwn24 .mbr-text {
    margin-top: 10px;
  }
}
.cid-t3Pbbrwn24 .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-t3Pbbrwn24 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-t3Pbbrwn24 .plan-title {
  color: #20232a;
}
.cid-t3Pbbrwn24 .price-term {
  color: #adaeb1;
}
.cid-t3P5I8hcCu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #171a21;
}
.cid-t3P5I8hcCu .container-fluid {
  padding: 0;
}
.cid-t3P5I8hcCu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3P5I8hcCu .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-t3P5I8hcCu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3P5I8hcCu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-t3P5I8hcCu .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-t3P5I8hcCu .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-t3P5I8hcCu .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-t3P5I8hcCu .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-t3P5I8hcCu .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3P5I8hcCu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-t3P5I8hcCu .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #65676c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3P5I8hcCu .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-t3P5I8hcCu .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-t3P5I8hcCu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3P5I8hcCu .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-t3P5I8hcCu .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-t3P5I8hcCu .copyright {
  margin: 0 60px;
  border-top: 1px solid #65676c;
  padding: 26px 0;
}
.cid-t3P5I8hcCu .copyright .mbr-text {
  margin: 0;
}
.cid-t3P5I8hcCu .mbr-section-title,
.cid-t3P5I8hcCu .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3P5I8hcCu .mbr-text {
  color: #84858a;
  text-align: center;
}
