.btn {
  border-radius: 50px;
}
body {
  font-family: Montagu Slab;
}
.display-1 {
  font-family: 'Montagu Slab', serif;
  font-size: 6.4375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.046875rem;
}
.display-2 {
  font-family: 'Montagu Slab', serif;
  font-size: 4.6875rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.859375rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Montagu Slab', serif;
  font-size: 2.6875rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.359375rem;
}
.display-7 {
  font-family: 'Montagu Slab', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 5.15rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.50625rem;
    font-size: calc( 2.9031249999999997rem + (6.4375 - 2.9031249999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.9031249999999997rem + (6.4375 - 2.9031249999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.75rem;
    font-size: calc( 2.290625rem + (4.6875 - 2.290625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.290625rem + (4.6875 - 2.290625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.15rem;
    font-size: calc( 1.590625rem + (2.6875 - 1.590625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.590625rem + (2.6875 - 1.590625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 3.5625rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #012b3a !important;
}
.bg-success {
  background-color: #e5be8a !important;
}
.bg-info {
  background-color: #fff8ef !important;
}
.bg-warning {
  background-color: #8e443d !important;
}
.bg-danger {
  background-color: #75dbcd !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #012b3a !important;
  border-color: #012b3a !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3d626c !important;
  border-color: #3d626c !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: #1e3035 !important;
  border-color: #1e3035 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1e3035 !important;
  border-color: #1e3035 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fff8ef !important;
  border-color: #fff8ef !important;
  color: #ef8600 !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: #985600 !important;
  background-color: #ffd298 !important;
  border-color: #ffd298 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ef8600 !important;
  background-color: #ffd298 !important;
  border-color: #ffd298 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e5be8a !important;
  border-color: #e5be8a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #d59743 !important;
  border-color: #d59743 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #d59743 !important;
  border-color: #d59743 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #512723 !important;
  border-color: #512723 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #512723 !important;
  border-color: #512723 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #75dbcd !important;
  border-color: #75dbcd !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: #34c6b2 !important;
  border-color: #34c6b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #34c6b2 !important;
  border-color: #34c6b2 !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: #012b3a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #012b3a !important;
  border-color: #012b3a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3d626c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1e3035 !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: #3d626c !important;
  border-color: #3d626c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fff8ef;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffd298 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ef8600 !important;
  background-color: #fff8ef !important;
  border-color: #fff8ef !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e5be8a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d59743 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #e5be8a !important;
  border-color: #e5be8a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8e443d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #512723 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #75dbcd;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #34c6b2 !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: #75dbcd !important;
  border-color: #75dbcd !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: #012b3a !important;
}
.text-secondary {
  color: #3d626c !important;
}
.text-success {
  color: #e5be8a !important;
}
.text-info {
  color: #fff8ef !important;
}
.text-warning {
  color: #8e443d !important;
}
.text-danger {
  color: #75dbcd !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #012b3a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3d626c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #e5be8a !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #fff8ef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8e443d !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #75dbcd !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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 0.3s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  /*  background-position: 0px 1.2em; */
}
.nav-tabs .nav-link.active {
  color: #012b3a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fff8ef;
}
.alert-warning {
  background-color: #8e443d;
}
.alert-danger {
  background-color: #75dbcd;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #012b3a;
  border-color: #012b3a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #25c3fb;
}
.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: #c98881;
}
.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: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.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: #012b3a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #012b3a;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #012b3a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #012b3a;
}
.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: #012b3a;
  border-bottom-color: #012b3a;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #012b3a !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: #3d626c !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='%23012b3a' %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;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1440px;
}
a {
  transition: color 300ms ease !important;
}
a.btn {
  transition: color 300ms ease !important;
  box-shadow: none !important;
}
a.btn.btn-warning:hover {
  background-color: #e5bc8a !important;
  border-color: #e5bc8a !important;
}
.card-title {
  margin-bottom: 0;
}
button:focus {
  box-shadow: none !important;
}
.cid-sVfwdTqnqZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfwdTqnqZ nav.navbar {
  position: fixed;
}
.cid-sVfwdTqnqZ .navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #012b3a;
}
.cid-sVfwdTqnqZ .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfwdTqnqZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfwdTqnqZ .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfwdTqnqZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfwdTqnqZ .navbar.collapsed {
  justify-content: center;
}
.cid-sVfwdTqnqZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfwdTqnqZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfwdTqnqZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfwdTqnqZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfwdTqnqZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfwdTqnqZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sVfwdTqnqZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfwdTqnqZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfwdTqnqZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-sVfwdTqnqZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfwdTqnqZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfwdTqnqZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfwdTqnqZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfwdTqnqZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sVfwdTqnqZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfwdTqnqZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfwdTqnqZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfwdTqnqZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfwdTqnqZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfwdTqnqZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfwdTqnqZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfwdTqnqZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfwdTqnqZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfwdTqnqZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfwdTqnqZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sVfwdTqnqZ .dropdown-item:hover,
.cid-sVfwdTqnqZ .dropdown-item:focus {
  color: #012b3a !important;
}
.cid-sVfwdTqnqZ .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-sVfwdTqnqZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfwdTqnqZ .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-sVfwdTqnqZ .container {
  display: flex;
  margin: auto;
}
.cid-sVfwdTqnqZ .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfwdTqnqZ .dropdown-menu,
.cid-sVfwdTqnqZ .navbar.opened {
  background: #012b3a !important;
}
.cid-sVfwdTqnqZ .nav-item:focus,
.cid-sVfwdTqnqZ .nav-link:focus {
  outline: none;
}
.cid-sVfwdTqnqZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfwdTqnqZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfwdTqnqZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfwdTqnqZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfwdTqnqZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfwdTqnqZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfwdTqnqZ .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-sVfwdTqnqZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfwdTqnqZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfwdTqnqZ .dropdown-item.active,
.cid-sVfwdTqnqZ .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfwdTqnqZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfwdTqnqZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfwdTqnqZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfwdTqnqZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #012b3a;
}
.cid-sVfwdTqnqZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfwdTqnqZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfwdTqnqZ ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-sVfwdTqnqZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfwdTqnqZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfwdTqnqZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfwdTqnqZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfwdTqnqZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfwdTqnqZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfwdTqnqZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfwdTqnqZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfwdTqnqZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfwdTqnqZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfwdTqnqZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfwdTqnqZ .navbar-dropdown {
  position: fixed;
}
.cid-sVfwdTqnqZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfwdTqnqZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sVfwdTqnqZ .navbar {
    height: 70px;
  }
  .cid-sVfwdTqnqZ .navbar.opened {
    height: auto;
  }
  .cid-sVfwdTqnqZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sVfwdTqnqZ a {
  display: inline;
}
.cid-sVfwdTqnqZ img {
  display: inline;
  padding-right: 10px;
}
.cid-sVfwdTqnqZ .dropdown-toggle:after {
  display: none;
}
.cid-sVfwdTqnqZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-sVfwdTqnqZ .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-sVfwdTqnqZ .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sVfwdTqnqZ .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sVfwdTqnqZ .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sVfwdTqnqZ .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-sVfwdTqnqZ ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-sVfwdTqnqZ .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-sVfwdTqnqZ .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-sVfwdTqnqZ .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-sVfwdTqnqZ .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-sVfwdTqnqZ .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
}
.cid-sVfwdTqnqZ .btn {
  border-radius: 1000px !important;
}
.cid-sVfwdTqnqZ .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-sVfwdTqnqZ .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-sVfwdTqnqZ .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sVfwdTqnqZ .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sVfwdTqnqZ .dropdown-item:focus {
  color: #75dbcd !important;
}
@media (max-width: 945px) {
  .cid-sVfwdTqnqZ .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sVfwdTqnqZ .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-sVfwdTqnqZ .container,
  .cid-sVfwdTqnqZ .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sVfwdTqnqZ li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-sVfwdTqnqZ ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-sVfwdTqnqZ .icons-menu {
    min-width: initial !important;
  }
  .cid-sVfwdTqnqZ a.btn {
    margin-top: 10px;
  }
}
.cid-sVfwdTqnqZ a.btn > span {
  margin-left: 0.5rem;
}
.cid-sVfwdTqnqZ .nav-item {
  position: relative;
}
.cid-sVfwdTqnqZ .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sVfwdTqnqZ .nav-item:hover .line-animation {
  opacity: 1;
  background-color: #75dbcd !important;
}
.cid-sVfwdTqnqZ .nav-item:hover .nav-link {
  color: #75dbcd !important;
}
.cid-sVfwdTqnqZ a.btn {
  padding: 15px 30px !important;
  letter-spacing: 5.4px;
}
.cid-sVfwdTqnqZ li.nav-item {
  padding: 13px 20px !important;
}
.cid-sVfwdTqnqZ a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-sVfwjh4Q3p {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #012b3a;
}
.cid-sVfwjh4Q3p .mbr-section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  letter-spacing: 5.2px;
}
.cid-sVfwjh4Q3p .mbr-text {
  color: #8c8c95;
  text-align: center;
}
.cid-sVfwjh4Q3p .button-align {
  text-align: center;
}
.cid-sVfwjh4Q3p .mbr-section-btn {
  display: block;
}
.cid-sVfwjh4Q3p .btn {
  margin-top: 20px;
  transition: all .3s !important;
}
.cid-sVfwjh4Q3p a.btn > span {
  margin-left: 0.5rem;
}
.cid-sVfwjh4Q3p .mbr-text,
.cid-sVfwjh4Q3p .button-align {
  color: #ffffff;
  text-align: center;
}
.cid-sVfwjh4Q3p a.btn {
  letter-spacing: 5.4px;
}
.cid-sVfwjh4Q3p .mbr-text1 {
  padding-top: 20px;
}
.cid-sVfwjh4Q3p .mbr-text1,
.cid-sVfwjh4Q3p .button-align {
  text-align: center;
  color: #ffffff;
}
.cid-sVfwv0j2GL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d626c;
}
.cid-sVfwv0j2GL img {
  border-radius: 0px;
}
.cid-sVfwv0j2GL .row {
  justify-content: center;
}
.cid-sVfwv0j2GL .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-sVfwxJSXhn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ba8e8a;
}
.cid-sVfwxJSXhn .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sVfwxJSXhn .team-card:hover {
  transform: translateY(-10px);
}
.cid-sVfwxJSXhn .card-wrap {
  background: transparent;
}
.cid-sVfwxJSXhn .card-wrap .image-wrap img {
  width: 100%;
}
.cid-sVfwxJSXhn .social-row {
  padding-top: 20px;
  text-align: center;
}
.cid-sVfwxJSXhn .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #9a0712;
  transition: all 0.3s;
}
.cid-sVfwxJSXhn .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #9a0712;
  font-size: 1.5rem;
}
.cid-sVfwxJSXhn .social-row .soc-item:hover {
  background-color: #9a0712;
}
.cid-sVfwxJSXhn .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sVfwxJSXhn img {
  border-radius: 0px;
}
.cid-sVfwxJSXhn .header {
  margin-bottom: 50px;
  align-items: center;
}
.cid-sVfwxJSXhn .content-wrap {
  padding: 0;
}
.cid-sVfwxJSXhn .mbr-role {
  color: #a3a6b2;
  margin: 0;
  padding-top: 20px;
}
.cid-sVfwxJSXhn .card-title {
  margin: 0;
  padding-top: 20px;
}
.cid-sVfwxJSXhn .card-text {
  margin: 0;
  padding-top: 20px;
}
@media (max-width: 1000px) {
  .cid-sVfwxJSXhn .social-row {
    margin-bottom: 25px;
  }
}
.cid-sVfwxJSXhn .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sVfwxJSXhn .card-title,
.cid-sVfwxJSXhn .social-row {
  color: #ffffff;
}
.cid-sVfwxZTqQT {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #3d626c;
}
.cid-sVfwxZTqQT .video-wrapper iframe {
  width: 100%;
}
.cid-sVfwxZTqQT .mbr-section-title,
.cid-sVfwxZTqQT .mbr-section-subtitle,
.cid-sVfwxZTqQT .mbr-text {
  text-align: center;
}
.cid-sVfwxZTqQT .mbr-section-title {
  margin-bottom: 30px;
  margin-top: 30px;
  color: #ffffff;
}
.cid-sVr5ZW47e5 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ba8e8a;
}
.cid-sVr5ZW47e5 .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #b18161;
  font-family: 'Open Sans';
  text-transform: uppercase;
}
.cid-sVr5ZW47e5 .mbr-section-title {
  margin-bottom: 50px;
  line-height: 0.8;
  text-align: left;
}
.cid-sVr5ZW47e5 .video-wrapper {
  margin-top: 135px;
}
.cid-sVr5ZW47e5 .video-wrapper iframe {
  width: 100%;
}
.cid-sVr5ZW47e5 .app-video-wrapper:before {
  font-size: 16px;
  padding: 28px 28px 28px 30px;
  background-color: #FFFFFF;
  color: #4D2E12;
  line-height: 15px;
  text-shadow: none;
}
.cid-sVr5ZW47e5 .right {
  margin-left: 14%;
}
.cid-sVr5ZW47e5 .mbr-text {
  color: #52586a;
  font-family: 'Open Sans';
}
@media (max-width: 768px) {
  .cid-sVr5ZW47e5 .right {
    margin-left: 0;
    margin-right: 0 !important;
    margin-top: 50px;
  }
  .cid-sVr5ZW47e5 .video-wrapper {
    margin-top: 30px;
  }
}
.cid-sVr5ZW47e5 .row {
  align-items: center;
}
.cid-sVfwBIzy10 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #012b3a;
}
.cid-sVfwBIzy10 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sVfwBIzy10 a {
  font-weight: 400 !important;
  transition-duration: all .3s;
}
.cid-sVfwBIzy10 a.text-danger:hover {
  color: #EABB80 !important;
}
.cid-sVfBktaeAq {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #34a0a4;
}
.cid-sVfBktaeAq .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfBktaeAq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sVfBv3WPaf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e443d;
}
.cid-sVfBv3WPaf .ico {
  margin: 0 auto;
  text-align: center;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -10%;
  left: 10%;
  z-index: 5;
  filter: url("https://mobirise.com/extensions/socialm5/#goo");
}
.cid-sVfBv3WPaf .ico .circle {
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  height: 150px;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 0%;
}
.cid-sVfBv3WPaf .ico .st-arrow {
  fill: #8e443d;
  animation: scrolly 3s cubic-bezier(0.77, 0, 0.175, 1) forwards infinite;
  perspective: 9000px;
  transform: translateZ(0);
  transform-origin: bottom;
}
.cid-sVfBv3WPaf .svg {
  z-index: 9;
  position: relative;
}
@keyframes scrolly {
  0% {
    transform: translate3d(0, -150%, 0) rotateX(90deg) scale(0.5) skewX(3deg);
  }
  20% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  70% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  100% {
    transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
  }
}
.cid-sVfBv3WPaf .mbr-iconfont {
  font-size: 4rem;
  transition: all 0.2s;
  color: #e5be8a;
  background: #ffffff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sVfBv3WPaf .play-button-container {
  position: absolute;
  right: 0;
  top: 65%;
  z-index: 5;
  transform: translate(50%, -50%);
  width: 150px;
  height: 150px;
}
.cid-sVfBv3WPaf .mbr-iconfont:before {
  padding-left: 12px;
}
.cid-sVfBv3WPaf .img-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
}
.cid-sVfBv3WPaf .container {
  position: relative;
}
.cid-sVfBv3WPaf .big-img {
  border-radius: 25px;
  box-shadow: 34px 21px 51px 5px rgba(0, 0, 0, 0.71);
}
.cid-sVfBv3WPaf .text-circle {
  height: 210px;
  width: auto;
  position: absolute;
  animation: 15s linear infinite running rotate360;
  top: -30px;
  left: -30px;
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1150px) {
  .cid-sVfBv3WPaf .img-wrapper {
    max-width: 700px;
  }
}
@media (max-width: 950px) {
  .cid-sVfBv3WPaf .play-button-container {
    display: none;
  }
}
@media (max-width: 640px) {
  .cid-sVfBv3WPaf .ico {
    display: none;
  }
}
.cid-sVfBvIE51N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e443d;
}
.cid-sVfBvIE51N .card1 {
  width: 100%;
  display: flex;
  align-items: center;
}
.cid-sVfBvIE51N img {
  display: block;
  width: 100%;
  -webkit-mask-image: url("https://mobirise.com/extensions/socialm5/assets/images/group1.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.cid-sVfBvIE51N .svg1 {
  position: absolute;
  width: 20%;
  top: 60%;
  right: 35%;
}
.cid-sVfBvIE51N span {
  color: currentColor !important;
}
.cid-sVfBvIE51N .svg2 {
  position: absolute;
  top: 59%;
  width: 24%;
  right: 1.2%;
}
.cid-sVfBvIE51N .mbr-section-subtitle {
  color: #111213;
  text-align: center;
}
.cid-sVfBvIE51N .mbr-section-title {
  text-align: left;
  color: #ffffff;
  margin: auto;
}
.cid-sVfBvIE51N .mbr-iconfont::before {
  font-size: 14px;
}
.cid-sVfBvIE51N .b {
  display: inline-flex;
  padding-left: 30px;
}
.cid-sVfBvIE51N .main {
  align-items: center;
  justify-content: space-between;
}
.cid-sVfBvIE51N .card-header {
  padding: 15px;
  background-color: transparent;
  border: none;
}
.cid-sVfBvIE51N .card {
  border-bottom: 1px solid #ffffff;
}
.cid-sVfBvIE51N .panel-text {
  color: #f2f2f2;
}
.cid-sVfBvIE51N .panel-title-edit {
  color: #ffffff;
  padding-left: 15px;
}
.cid-sVfBvIE51N .mbr-text {
  margin-bottom: 48px;
}
.cid-sVfBvIE51N .panel-body {
  padding: 15px 15px 33px;
}
.cid-sVfBvIE51N .t1 {
  display: flex;
  align-items: center;
}
.cid-sVfBvIE51N .button-align {
  margin-top: 40px;
}
.cid-sVfBvIE51N .mbr-iconfont {
  color: #ffffff;
  top: 1px;
  position: absolute;
  left: 2px;
}
.cid-sVfBvIE51N .btn {
  padding: 15px 30px !important;
  letter-spacing: 5.4px;
  transition: all .3s !important;
}
.cid-sVfBvIE51N .mbr-text,
.cid-sVfBvIE51N .button-align {
  color: #75dbcd;
}
.cid-sVfBvIE51N a.btn:hover {
  background-color: #75dbcd !important;
  border-color: #75dbcd !important;
}
.cid-sVfBvIE51N .st0 {
  fill: #012b3a;
}
.cid-sVfBvIE51N .st1 {
  fill: #5f0e38;
}
.cid-sVfBvIE51N .cls-1 {
  fill: #a13935;
}
.cid-sVfBvIE51N .cls-2 {
  fill: #e5be8a;
}
.cid-sVfBvIE51N .card .collapsing .panel-body {
  border-top: transparent !important;
  border-bottom: 1px solid #ffffff;
}
.cid-sVfBvIE51N .card .show .panel-body {
  border-bottom: 1px solid #ffffff;
  border-top: transparent !important;
}
.cid-sVfBvIE51N svg {
  z-index: 12;
}
@media (max-width: 992px) {
  .cid-sVfBvIE51N .b {
    padding-top: 30px;
    padding-left: 15px;
  }
  .cid-sVfBvIE51N .svg1,
  .cid-sVfBvIE51N .svg2 {
    display: none;
  }
}
.cid-sVfBw7v96o {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #012b3a;
}
.cid-sVfBw7v96o .row {
  padding: 0px;
  margin: 0;
  align-items: center;
}
.cid-sVfBw7v96o .container-fluid {
  padding: 0;
}
.cid-sVfBw7v96o .right-side {
  padding: 0;
}
.cid-sVfBw7v96o .mbr-section-title {
  padding-bottom: 35px;
}
.cid-sVfBw7v96o .l1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 1.1;
}
.cid-sVfBw7v96o .l2,
.cid-sVfBw7v96o .lin {
  color: #ffffff;
}
.cid-sVfBw7v96o a {
  transition: color .3s;
  font-weight: 400;
}
.cid-sVfBw7v96o a.text-success:hover {
  color: #237FFB !important;
}
.cid-sVfBw7v96o .left-side {
  padding-left: 84px;
}
.cid-sVfBw7v96o .l2 {
  margin-top: 20px;
}
.cid-sVfBw7v96o .line {
  height: 2px;
  width: 166px;
  background-color: #75dbcd;
  margin-left: -70px;
  margin-top: -2px;
}
.cid-sVfBw7v96o .l2,
.cid-sVfBw7v96o .iconfont-wrapper {
  color: #ffffff;
}
.cid-sVfBw7v96o img {
  max-height: 255px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-sVfBw7v96o img {
    max-height: 400px;
  }
  .cid-sVfBw7v96o .left-side {
    padding-left: 15px;
  }
  .cid-sVfBw7v96o .line {
    display: none;
  }
}
.cid-sVfBwFP1Rd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #3d626c;
  background-color: #3d626c;
}
.cid-sVfBwFP1Rd .image-wrapper {
  position: relative;
}
.cid-sVfBwFP1Rd .svg1 {
  width: 240px;
  position: absolute;
  z-index: 10;
  right: 15%;
  bottom: -40px;
}
.cid-sVfBwFP1Rd .main {
  align-items: center;
}
.cid-sVfBwFP1Rd .mbr-section-subtitle {
  margin-bottom: 20px;
  letter-spacing: 5.4px;
  color: #ffffff;
}
.cid-sVfBwFP1Rd .mbr-section-title {
  margin-bottom: 28px;
  color: #ffffff;
}
.cid-sVfBwFP1Rd .mbr-text,
.cid-sVfBwFP1Rd .button-align {
  color: #ffffff;
}
.cid-sVfBwFP1Rd .st1 {
  fill: #012b3a;
}
.cid-sVfBwFP1Rd .st0 {
  fill: #5f0e38;
}
.cid-sVfBwFP1Rd a {
  font-weight: 400;
}
@media (max-width: 768px) {
  .cid-sVfBwFP1Rd .b {
    padding-top: 30px;
  }
}
@media (max-width: 950px) {
  .cid-sVfBwFP1Rd .svg1 {
    display: none;
  }
}
.cid-sVfBwFP1Rd .card1 {
  width: 100%;
  max-height: 400px;
}
.cid-sVfBwFP1Rd img {
  display: block;
  width: 100%;
  -webkit-mask-image: url("https://mobirise.com/extensions/socialm5/assets/images/group2.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.cid-sVfBxb9aHg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #012b3a;
}
.cid-sVfBxb9aHg .mbr-section-title {
  padding-bottom: 36px;
}
.cid-sVfBxb9aHg .mbr-section-subtitle {
  letter-spacing: 5.4px;
}
.cid-sVfBxb9aHg .right-side {
  max-width: 450px;
}
.cid-sVfBxb9aHg .left-side {
  max-width: 550px;
}
.cid-sVfBxb9aHg .l1 {
  font-size: 60px;
  line-height: 1.1;
}
.cid-sVfBxb9aHg .l2 {
  margin-bottom: 38px;
}
.cid-sVfBxb9aHg .l3,
.cid-sVfBxb9aHg .l4,
.cid-sVfBxb9aHg .l5,
.cid-sVfBxb9aHg .l6 {
  display: inline;
}
.cid-sVfBxb9aHg .l5 {
  max-width: 121px;
}
.cid-sVfBxb9aHg .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
}
.cid-sVfBxb9aHg a {
  font-weight: 400;
  letter-spacing: 5.4px;
}
.cid-sVfBxb9aHg .container {
  max-width: 1140px;
}
.cid-sVfBxb9aHg .button-align {
  margin-top: 40px;
}
.cid-sVfBxb9aHg .l1,
.cid-sVfBxb9aHg .iconfont-wrapper {
  color: #ffffff;
}
.cid-sVfBxb9aHg .mbr-text,
.cid-sVfBxb9aHg .link {
  color: #ffffff;
}
.cid-sVfBxb9aHg .l2,
.cid-sVfBxb9aHg .iconfont-wrapper {
  color: #e5be8a;
}
.cid-sVfBxb9aHg .title {
  color: #75dbcd;
}
.cid-sVfBxb9aHg a.btn:hover {
  color: #8E443D;
}
.cid-sVfBxb9aHg .col-sm-auto {
  padding-right: 20px;
}
.cid-sVfBxTryg8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #012b3a;
}
.cid-sVfBxTryg8 .mbr-section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  letter-spacing: 5.2px;
}
.cid-sVfBxTryg8 .mbr-text {
  color: #8c8c95;
  text-align: center;
}
.cid-sVfBxTryg8 .button-align {
  text-align: center;
}
.cid-sVfBxTryg8 .mbr-section-btn {
  display: block;
}
.cid-sVfBxTryg8 .btn {
  margin-top: 20px;
  transition: all .3s !important;
}
.cid-sVfBxTryg8 a.btn > span {
  margin-left: 0.5rem;
}
.cid-sVfBxTryg8 .mbr-text,
.cid-sVfBxTryg8 .button-align {
  color: #ffffff;
}
.cid-sVfBxTryg8 a.btn {
  letter-spacing: 5.4px;
}
.cid-sVfwdTqnqZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVfwdTqnqZ nav.navbar {
  position: fixed;
}
.cid-sVfwdTqnqZ .navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #012b3a;
}
.cid-sVfwdTqnqZ .navbar.opened {
  transition: all 0.3s;
}
.cid-sVfwdTqnqZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVfwdTqnqZ .navbar .navbar-logo img {
  width: auto;
}
.cid-sVfwdTqnqZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVfwdTqnqZ .navbar.collapsed {
  justify-content: center;
}
.cid-sVfwdTqnqZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVfwdTqnqZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVfwdTqnqZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVfwdTqnqZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVfwdTqnqZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVfwdTqnqZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sVfwdTqnqZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVfwdTqnqZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVfwdTqnqZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-sVfwdTqnqZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVfwdTqnqZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVfwdTqnqZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVfwdTqnqZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVfwdTqnqZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sVfwdTqnqZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVfwdTqnqZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVfwdTqnqZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVfwdTqnqZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVfwdTqnqZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVfwdTqnqZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVfwdTqnqZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVfwdTqnqZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVfwdTqnqZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVfwdTqnqZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfwdTqnqZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sVfwdTqnqZ .dropdown-item:hover,
.cid-sVfwdTqnqZ .dropdown-item:focus {
  color: #012b3a !important;
}
.cid-sVfwdTqnqZ .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-sVfwdTqnqZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVfwdTqnqZ .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-sVfwdTqnqZ .container {
  display: flex;
  margin: auto;
}
.cid-sVfwdTqnqZ .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sVfwdTqnqZ .dropdown-menu,
.cid-sVfwdTqnqZ .navbar.opened {
  background: #012b3a !important;
}
.cid-sVfwdTqnqZ .nav-item:focus,
.cid-sVfwdTqnqZ .nav-link:focus {
  outline: none;
}
.cid-sVfwdTqnqZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVfwdTqnqZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVfwdTqnqZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVfwdTqnqZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVfwdTqnqZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVfwdTqnqZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVfwdTqnqZ .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-sVfwdTqnqZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVfwdTqnqZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVfwdTqnqZ .dropdown-item.active,
.cid-sVfwdTqnqZ .dropdown-item:active {
  background-color: transparent;
}
.cid-sVfwdTqnqZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVfwdTqnqZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVfwdTqnqZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVfwdTqnqZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #012b3a;
}
.cid-sVfwdTqnqZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVfwdTqnqZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVfwdTqnqZ ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-sVfwdTqnqZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVfwdTqnqZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVfwdTqnqZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sVfwdTqnqZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVfwdTqnqZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfwdTqnqZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVfwdTqnqZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVfwdTqnqZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfwdTqnqZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVfwdTqnqZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVfwdTqnqZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVfwdTqnqZ .navbar-dropdown {
  position: fixed;
}
.cid-sVfwdTqnqZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVfwdTqnqZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sVfwdTqnqZ .navbar {
    height: 70px;
  }
  .cid-sVfwdTqnqZ .navbar.opened {
    height: auto;
  }
  .cid-sVfwdTqnqZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sVfwdTqnqZ a {
  display: inline;
}
.cid-sVfwdTqnqZ img {
  display: inline;
  padding-right: 10px;
}
.cid-sVfwdTqnqZ .dropdown-toggle:after {
  display: none;
}
.cid-sVfwdTqnqZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-sVfwdTqnqZ .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-sVfwdTqnqZ .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sVfwdTqnqZ .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sVfwdTqnqZ .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sVfwdTqnqZ .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-sVfwdTqnqZ ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-sVfwdTqnqZ .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-sVfwdTqnqZ .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-sVfwdTqnqZ .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-sVfwdTqnqZ .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-sVfwdTqnqZ .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
}
.cid-sVfwdTqnqZ .btn {
  border-radius: 1000px !important;
}
.cid-sVfwdTqnqZ .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-sVfwdTqnqZ .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-sVfwdTqnqZ .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sVfwdTqnqZ .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sVfwdTqnqZ .dropdown-item:focus {
  color: #75dbcd !important;
}
@media (max-width: 945px) {
  .cid-sVfwdTqnqZ .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sVfwdTqnqZ .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-sVfwdTqnqZ .container,
  .cid-sVfwdTqnqZ .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sVfwdTqnqZ li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-sVfwdTqnqZ ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-sVfwdTqnqZ .icons-menu {
    min-width: initial !important;
  }
  .cid-sVfwdTqnqZ a.btn {
    margin-top: 10px;
  }
}
.cid-sVfwdTqnqZ a.btn > span {
  margin-left: 0.5rem;
}
.cid-sVfwdTqnqZ .nav-item {
  position: relative;
}
.cid-sVfwdTqnqZ .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sVfwdTqnqZ .nav-item:hover .line-animation {
  opacity: 1;
  background-color: #75dbcd !important;
}
.cid-sVfwdTqnqZ .nav-item:hover .nav-link {
  color: #75dbcd !important;
}
.cid-sVfwdTqnqZ a.btn {
  padding: 15px 30px !important;
  letter-spacing: 5.4px;
}
.cid-sVfwdTqnqZ li.nav-item {
  padding: 13px 20px !important;
}
.cid-sVfwdTqnqZ a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-sVfBGwiOJn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #34a0a4;
}
.cid-sVfBGwiOJn .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfBGwiOJn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sVfBHXJWTw {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #3d626c;
}
.cid-sVfBHXJWTw .item-wrapper {
  width: 100%;
}
.cid-sVfBHXJWTw .left-side {
  text-align: left;
}
.cid-sVfBHXJWTw .row {
  align-items: center;
  justify-content: center;
}
.cid-sVfBHXJWTw .card-box {
  background-color: #012B3A5E;
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.cid-sVfBHXJWTw .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.cid-sVfBHXJWTw .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-sVfBHXJWTw .row-center {
  height: 100%;
}
.cid-sVfBHXJWTw svg {
  z-index: 10;
  width: 200px;
  height: auto;
  position: absolute;
  padding-left: 15px;
  bottom: -7%;
  transform: rotate(6deg);
}
.cid-sVfBHXJWTw .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  overflow: inherit;
  transition: all 1s;
}
.cid-sVfBHXJWTw .card-wrapper:hover .card-box,
.cid-sVfBHXJWTw .card-wrapper:focus-within .card-box {
  opacity: 1;
}
.cid-sVfBHXJWTw .card-wrapper:hover:before,
.cid-sVfBHXJWTw .card-wrapper:focus-within:before {
  opacity: 0.6;
}
.cid-sVfBHXJWTw .card-title {
  color: #ffffff;
  text-align: left;
  width: 100%;
  font-family: 'Montagu Slab';
}
.cid-sVfBHXJWTw .g {
  grid-row-gap: 32px;
}
.cid-sVfBHXJWTw .mbr-section-subtitle {
  letter-spacing: 5.4px;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: left;
}
.cid-sVfBHXJWTw .mbr-section-title {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: left;
}
.cid-sVfBHXJWTw a {
  font-weight: 400;
}
.cid-sVfBHXJWTw .columns {
  grid-template-columns: 50% 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 467px;
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: stretch;
  display: grid;
}
.cid-sVfBHXJWTw .big {
  grid-row-start: 1;
  grid-row-end: 3;
  height: 467px;
}
.cid-sVfBHXJWTw .sm,
.cid-sVfBHXJWTw .card-box {
  height: 225px;
}
.cid-sVfBHXJWTw .card11 {
  height: 467px;
}
.cid-sVfBHXJWTw .big .card-box {
  height: 467px;
}
.cid-sVfBHXJWTw .card1 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image2.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBHXJWTw .card2 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image3.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBHXJWTw .card3 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image6.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBHXJWTw .card4 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image7.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBHXJWTw .card5 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image4.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBHXJWTw section {
  position: relative;
}
@media (max-width: 650px) {
  .cid-sVfBHXJWTw .columns {
    display: initial;
  }
  .cid-sVfBHXJWTw .big.card-box,
  .cid-sVfBHXJWTw .sm.card,
  .cid-sVfBHXJWTw .card-box,
  .cid-sVfBHXJWTw img {
    height: 300px;
  }
  .cid-sVfBHXJWTw .card {
    margin-top: 20px;
  }
  .cid-sVfBHXJWTw .big {
    margin-top: 0;
  }
}
.cid-sVfBHXJWTw .cls-1 {
  fill: #a13935;
}
.cid-sVfBHXJWTw .cls-2 {
  fill: #e5be8a;
}
@media (max-width: 1000px) {
  .cid-sVfBHXJWTw svg {
    bottom: -55px;
    width: 200px;
  }
}
.cid-sVfBIWtjwl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d626c;
}
.cid-sVfBIWtjwl .panel-title-edit {
  color: #ffffff;
}
.cid-sVfBIWtjwl .panel-text {
  color: #f2f2f2;
  padding-bottom: 16px;
}
.cid-sVfBIWtjwl .card-header {
  padding-left: 0;
  border: none;
}
.cid-sVfBIWtjwl .card {
  border: none;
  border-bottom: 2px solid #dcdce0;
  border-radius: 0;
}
.cid-sVfBIWtjwl .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  padding: 15px;
}
.cid-sVfBIWtjwl .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sVfBIWtjwl .mbr-iconfont {
  font-family: 'Moririse2' !important;
  font-size: 80px;
  color: #dcdce0;
}
.cid-sVfBIWtjwl .mbr-text {
  color: #ffffff;
  margin-bottom: 48px;
}
.cid-sVfBIWtjwl .iconfont-wrapper {
  margin-bottom: 20px;
}
.cid-sVfBIWtjwl .panel-body {
  padding: 15px;
}
.cid-sVfBIWtjwl .t1 {
  display: flex;
  align-items: center;
}
.cid-sVfBIWtjwl .card .collapsing .panel-body {
  border-top: transparent !important;
  border-bottom: 1px solid #ffffff;
}
.cid-sVfBIWtjwl .card .show .panel-body {
  border-bottom: 1px solid #ffffff;
  border-top: transparent !important;
}
.cid-sVfBIWtjwl .panel-title-edit .mbr-iconfont {
  font-size: 14px;
  padding-right: 5px;
}
.cid-sVfBIWtjwl H3 {
  color: #ffffff;
}
.cid-sVfBIWtjwl ul {
  padding-left: 40px;
  margin-bottom: 0;
  padding-bottom: 16px;
}
.cid-sVfBIWtjwl .panel-text P {
  color: #ffffff;
  text-align: left;
}
.cid-sVfBIWtjwl .icon1 {
  color: #012b3a;
}
.cid-sVfBIWtjwl .icon2 {
  color: #34a0a4;
}
.cid-sVfBIWtjwl .icon3 {
  color: #75dbcd;
}
.cid-sVfBIWtjwl .icon4 {
  color: #ba8e8a;
}
@media (max-width: 992px) {
  .cid-sVfBIWtjwl .section-head {
    margin-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .cid-sVfBIWtjwl .section-head {
    margin-bottom: 40px;
  }
  .cid-sVfBIWtjwl .padd {
    margin-bottom: 40px;
  }
}
.cid-sVfBIWtjwl li p {
  line-height: 23.4px;
}
.cid-sVfBJIjhyT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d626c;
}
.cid-sVfBJIjhyT .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfBJIjhyT .mbr-section-title {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}
.cid-sVfBJIjhyT .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
}
.cid-sVfBJIjhyT a {
  font-weight: 400;
  letter-spacing: 5.2px;
  transition: all .3s;
}
.cid-sVfBJIjhyT .mbr-text {
  padding-bottom: 30px;
  max-width: 1100px;
  margin: auto;
}
.cid-sVfBJIjhyT .mbr-text,
.cid-sVfBJIjhyT .button-align {
  text-align: center;
  color: #ffffff;
}
.cid-sVfBJIjhyT a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-sVfBKpXnOw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d626c;
}
.cid-sVfBKpXnOw .mbr-iconfont {
  display: block;
  font-size: 110px;
  color: #012b3a;
  margin-bottom: 20px;
  height: 100%;
}
.cid-sVfBKpXnOw .item-wrapper {
  overflow: visible;
}
.cid-sVfBKpXnOw .row {
  justify-content: center;
}
.cid-sVfBKpXnOw .card-title {
  letter-spacing: 5.4px;
}
.cid-sVfBKpXnOw .col {
  padding: 0;
}
.cid-sVfBKpXnOw .card-title,
.cid-sVfBKpXnOw .iconfont-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-sVfBKpXnOw .card-wrapper {
  overflow: visible;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sVfBKpXnOw .card:nth-child(1) {
    margin-bottom: 50px;
  }
  .cid-sVfBKpXnOw .card:nth-child(2) {
    margin-bottom: 50px;
  }
  .cid-sVfBKpXnOw .card:nth-child(3) {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-sVfBKpXnOw .card:nth-child(3) {
    margin-bottom: 50px;
  }
  .cid-sVfBKpXnOw .card:nth-child(4) {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .cid-sVfBKpXnOw .card:nth-child(5) {
    margin-bottom: 50px;
  }
}
.cid-sVfBLg4ZxL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-sVfBLg4ZxL .item:focus,
.cid-sVfBLg4ZxL span:focus {
  outline: none;
}
.cid-sVfBLg4ZxL .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 30px;
}
.cid-sVfBLg4ZxL .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sVfBLg4ZxL .mbr-text,
.cid-sVfBLg4ZxL .mbr-section-btn {
  text-align: center;
}
.cid-sVfBLg4ZxL .mbr-text {
  margin-bottom: 0;
  color: #75dbcd;
  text-align: left;
}
.cid-sVfBLg4ZxL .item-title {
  text-align: left;
  margin: 0;
  color: #012b3a;
  margin-bottom: 20px;
}
.cid-sVfBLg4ZxL .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-sVfBLg4ZxL .name {
  color: #111213;
  font-size: 24px;
}
.cid-sVfBLg4ZxL .item-content {
  padding: 50px 30px 0px;
}
.cid-sVfBLg4ZxL .names {
  margin-bottom: 10px;
}
.cid-sVfBLg4ZxL a {
  font-weight: 400 !important;
  display: flex;
  align-items: center;
}
.cid-sVfBLg4ZxL .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-sVfBLg4ZxL .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-sVfBLg4ZxL .name2 {
  margin-bottom: 20px;
}
.cid-sVfBLg4ZxL .mbr-textt:hover {
  color: #EABB80 !important;
}
.cid-sVfBLg4ZxL .namee {
  margin-bottom: 10px;
}
.cid-sVfBLg4ZxL .namee:hover {
  color: #7eccc4 !important;
}
.cid-sVfBLg4ZxL img {
  height: 290px;
  object-fit: cover;
}
.cid-sVfBLg4ZxL .item {
  margin-top: 30px;
}
.cid-sVfBLg4ZxL .item:nth-child(1) {
  margin-top: 0px;
}
.cid-sVfBLg4ZxL .item:nth-child(2) {
  margin-top: 0px;
}
.cid-sVfBLg4ZxL .item:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-sVfBLg4ZxL .item:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .cid-sVfBLg4ZxL .item:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-sVfBLXMdh1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-sVfBLXMdh1 img,
.cid-sVfBLXMdh1 .item-img {
  width: 100%;
}
.cid-sVfBLXMdh1 .card-img {
  border-radius: 0;
}
.cid-sVfBLXMdh1 .item:focus,
.cid-sVfBLXMdh1 span:focus {
  outline: none;
}
.cid-sVfBLXMdh1 .item {
  cursor: pointer;
  margin-top: 30px;
}
.cid-sVfBLXMdh1 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 30px;
}
.cid-sVfBLXMdh1 .mbr-section-title {
  color: #012b3a;
  text-align: left;
  margin-bottom: 15px;
}
.cid-sVfBLXMdh1 .mbr-text {
  margin-bottom: 0;
  color: #012b3a;
  text-align: left;
}
.cid-sVfBLXMdh1 .item-title {
  text-align: left;
  margin: 0;
  color: #3d626c;
  margin-bottom: 20px;
}
.cid-sVfBLXMdh1 .button-align {
  margin-bottom: 35px;
}
.cid-sVfBLXMdh1 .mbr-section-subtitle {
  color: #012b3a;
  text-align: left;
  letter-spacing: 5.2px;
  margin-bottom: 20px;
}
.cid-sVfBLXMdh1 .name {
  color: #111213;
}
.cid-sVfBLXMdh1 .name,
.cid-sVfBLXMdh1 .name2 {
  width: auto;
  display: inline;
  font-size: 16px;
}
.cid-sVfBLXMdh1 .item-content {
  padding: 45px 50px;
}
.cid-sVfBLXMdh1 .names {
  margin-bottom: 10px;
}
.cid-sVfBLXMdh1 a {
  font-weight: 400;
  transition: all .3s;
}
.cid-sVfBLXMdh1 .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-sVfBLXMdh1 .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  transform: scale(1);
}
.cid-sVfBLXMdh1 .item-img:hover .inner {
  transform: scale(1.15);
}
.cid-sVfBLXMdh1 .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
  letter-spacing: 5.2px;
}
.cid-sVfBLXMdh1 .item:nth-child(1) {
  margin-top: 0px;
}
.cid-sVfBLXMdh1 .item:nth-child(2) {
  margin-top: 0px;
}
.cid-sVfBLXMdh1 .item:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-sVfBLXMdh1 .item:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .cid-sVfBLXMdh1 .item:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-sVfBMH7GbJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVfBMH7GbJ .item-wrapper {
  width: 100%;
}
.cid-sVfBMH7GbJ .card-img {
  border-radius: 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  transition: all 0.3s;
}
.cid-sVfBMH7GbJ .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-sVfBMH7GbJ .left-side {
  text-align: left;
}
.cid-sVfBMH7GbJ .row {
  align-items: center;
  justify-content: center;
}
.cid-sVfBMH7GbJ .card-box {
  background-color: #012B3A5E;
  z-index: 3;
  position: absolute;
  margin: auto;
  opacity: 0;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-sVfBMH7GbJ .card-wrapper:hover .card-box {
  transform: translate(15px, 15px);
  opacity: 1;
}
.cid-sVfBMH7GbJ .row-center {
  height: 100%;
}
.cid-sVfBMH7GbJ .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 400px;
  overflow: inherit;
  transition: all 1s;
}
.cid-sVfBMH7GbJ .card-wrapper:hover .card-box,
.cid-sVfBMH7GbJ .card-wrapper:focus-within .card-box {
  opacity: 1;
}
.cid-sVfBMH7GbJ .card-wrapper:hover:before,
.cid-sVfBMH7GbJ .card-wrapper:focus-within:before {
  opacity: 0.6;
}
.cid-sVfBMH7GbJ .card-title {
  color: #fafafa;
  width: 100%;
}
.cid-sVfBMH7GbJ .g {
  grid-row-gap: 32px;
}
@media (max-width: 1100px) {
  .cid-sVfBMH7GbJ .carousel-control {
    display: none;
  }
}
.cid-sVfBMH7GbJ .mbr-section-subtitle {
  letter-spacing: 5.2px;
  margin-bottom: 20px;
  color: #012b3a;
  text-align: left;
}
.cid-sVfBMH7GbJ .mbr-section-title {
  margin-bottom: 15px;
  color: #012b3a;
  text-align: left;
}
.cid-sVfBMH7GbJ .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
}
.cid-sVfBMH7GbJ .button-align {
  margin-bottom: 25px;
}
.cid-sVfBMH7GbJ a.btn {
  transition: all .3s !important;
  letter-spacing: 5.2px;
}
.cid-sVfBMH7GbJ a {
  font-weight: 400;
}
@media (max-width: 630px) {
  .cid-sVfBMH7GbJ .g {
    grid-gap: 25px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.cid-sVfBNfLsO4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVfBNfLsO4 .item-wrapper {
  width: 100%;
}
.cid-sVfBNfLsO4 .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 400px;
}
.cid-sVfBNfLsO4 .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-sVfBNfLsO4 .left-side {
  text-align: left;
}
.cid-sVfBNfLsO4 .row {
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
}
.cid-sVfBNfLsO4 .carousel-control-next,
.cid-sVfBNfLsO4 .carousel-control-prev {
  opacity: 1;
}
.cid-sVfBNfLsO4 .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.cid-sVfBNfLsO4 .card-box:focus-within {
  opacity: 1;
}
.cid-sVfBNfLsO4 .row-center {
  height: 100%;
}
.cid-sVfBNfLsO4 .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 400px;
  padding: 20px;
}
.cid-sVfBNfLsO4 .card-wrapper:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: black;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.cid-sVfBNfLsO4 .card-wrapper:hover .card-box,
.cid-sVfBNfLsO4 .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-sVfBNfLsO4 .card-wrapper:hover:before,
.cid-sVfBNfLsO4 .card-wrapper:focus-within:before {
  opacity: 0.5;
}
.cid-sVfBNfLsO4 .card-title {
  color: #fafafa;
  text-align: left;
}
.cid-sVfBNfLsO4 .carousel-item {
  justify-content: center;
}
.cid-sVfBNfLsO4 .g {
  grid-row-gap: 24px;
  padding: 0;
}
.cid-sVfBNfLsO4 .mobi-mbri {
  font-size: 25px;
  color: #012B3A !important;
}
.cid-sVfBNfLsO4 .container {
  width: 100%;
  margin: auto;
  padding: 0;
}
.cid-sVfBNfLsO4 .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: center;
  letter-spacing: 5.2px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sVfBNfLsO4 .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sVfBNfLsO4 a {
  font-weight: 400;
}
.cid-sVfBNfLsO4 .card1 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image2.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBNfLsO4 .card2 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image3.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBNfLsO4 .card3 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image6.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBNfLsO4 .card4 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image7.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBNfLsO4 .card5 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image4.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBOzRGiX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dde0cb;
}
.cid-sVfBOzRGiX img,
.cid-sVfBOzRGiX .item-img {
  width: 100%;
}
.cid-sVfBOzRGiX .item:focus,
.cid-sVfBOzRGiX span:focus {
  outline: none;
}
.cid-sVfBOzRGiX .item {
  cursor: pointer;
  margin-top: 30px;
}
.cid-sVfBOzRGiX .item-wrapper {
  position: relative;
  background: #cbdac3;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sVfBOzRGiX .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sVfBOzRGiX .mbr-text,
.cid-sVfBOzRGiX .mbr-section-btn {
  text-align: center;
}
.cid-sVfBOzRGiX .mbr-text {
  margin-bottom: 0;
  color: #012b3a;
  text-align: left;
}
.cid-sVfBOzRGiX .item-title {
  text-align: left;
  margin: 0;
  color: #3d626c;
  margin-bottom: 20px;
}
.cid-sVfBOzRGiX .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-sVfBOzRGiX .name {
  color: #111213;
}
.cid-sVfBOzRGiX .name,
.cid-sVfBOzRGiX .name2 {
  width: auto;
  display: inline;
  font-size: 16px;
}
.cid-sVfBOzRGiX .item-content {
  padding: 45px 50px;
}
.cid-sVfBOzRGiX .container {
  max-width: 1170px;
}
.cid-sVfBOzRGiX .names {
  margin-bottom: 10px;
}
.cid-sVfBOzRGiX a {
  font-weight: 400 !important;
}
.cid-sVfBOzRGiX .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  max-height: 444px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-sVfBOzRGiX .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  transform: scale(1.15);
}
.cid-sVfBOzRGiX .item-img:hover .inner {
  transform: scale(1);
}
.cid-sVfBOzRGiX .item-title:hover {
  color: #FEDC31;
}
.cid-sVfBOzRGiX .item:nth-child(1) {
  margin-top: 0px;
}
.cid-sVfBOzRGiX .item:nth-child(2) {
  margin-top: 0px;
}
@media (max-width: 576px) {
  .cid-sVfBOzRGiX .item:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-sVfBP5YiU2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-sVfBP5YiU2 .item:focus,
.cid-sVfBP5YiU2 span:focus {
  outline: none;
}
.cid-sVfBP5YiU2 .item-wrapper {
  position: relative;
}
.cid-sVfBP5YiU2 .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-sVfBP5YiU2 .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-sVfBP5YiU2 .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 24px;
}
.cid-sVfBP5YiU2 .mbr-text,
.cid-sVfBP5YiU2 .mbr-section-btn {
  text-align: left;
}
.cid-sVfBP5YiU2 .item-title {
  text-align: left;
}
.cid-sVfBP5YiU2 .item-subtitle {
  text-align: left;
}
.cid-sVfBP5YiU2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 37%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-sVfBP5YiU2 .embla__slide {
    max-width: initial;
  }
}
@media (max-width: 900px) {
  .cid-sVfBP5YiU2 .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-sVfBP5YiU2 .embla__slide {
    min-width: 375px;
  }
}
.cid-sVfBP5YiU2 .embla__button--next,
.cid-sVfBP5YiU2 .embla__button--prev {
  display: flex;
}
.cid-sVfBP5YiU2 .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  width: 74px;
  height: 74px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sVfBP5YiU2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-sVfBP5YiU2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sVfBP5YiU2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sVfBP5YiU2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sVfBP5YiU2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sVfBP5YiU2 .embla {
  position: relative;
  width: 100%;
}
.cid-sVfBP5YiU2 .embla__viewport {
  overflow: hidden;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.cid-sVfBP5YiU2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-sVfBP5YiU2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-sVfBP5YiU2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sVfBP5YiU2 .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-sVfBP5YiU2 .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-sVfBP5YiU2 .wrap-img {
  overflow: hidden;
  padding: 0px 20px 20px;
  display: flex;
  justify-content: center;
}
.cid-sVfBP5YiU2 img {
  width: 100%;
  object-fit: cover;
}
.cid-sVfBP5YiU2 .card-title {
  margin-bottom: 16px;
  color: #ffffff;
  transition: 0.35s;
  text-align: left !important;
  padding: 124px 0 0;
}
.cid-sVfBP5YiU2 .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-sVfBP5YiU2 H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-sVfBP5YiU2 .card-wrapper {
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 280px;
  transition: all 1s;
}
.cid-sVfBP5YiU2 .card-wrapper:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: black;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s;
}
.cid-sVfBP5YiU2 .card-wrapper:hover .card-box,
.cid-sVfBP5YiU2 .card-wrapper:focus-within .card-box {
  opacity: 1;
}
.cid-sVfBP5YiU2 .card-wrapper:hover:before,
.cid-sVfBP5YiU2 .card-wrapper:focus-within:before {
  opacity: 0.6;
}
.cid-sVfBP5YiU2 .date {
  margin-bottom: 24px;
  color: #8c8c95;
}
.cid-sVfBP5YiU2 .link-title {
  display: inline-block;
}
.cid-sVfBP5YiU2 .margin {
  margin-right: 14px;
}
.cid-sVfBP5YiU2 .article {
  display: contents;
}
.cid-sVfBP5YiU2 .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
}
.cid-sVfBP5YiU2 .link-row {
  align-items: center;
}
.cid-sVfBP5YiU2 .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
}
.cid-sVfBP5YiU2 .iconfont-wrapper .mbr-iconfont::before {
  font-size: 50px;
  padding: 25px;
  border-radius: 50%;
}
.cid-sVfBP5YiU2 .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-sVfBP5YiU2 .btn {
  margin-top: 20px;
}
.cid-sVfBP5YiU2 .card-title,
.cid-sVfBP5YiU2 .iconfont-wrapper {
  text-align: center;
}
.cid-sVfBP5YiU2 a.btn > span {
  margin-left: 0.5rem;
}
.cid-sVfBP5YiU2 .card-box {
  position: absolute;
  padding-right: 30px;
  margin: auto;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: flex-start;
  transform: translate3d(100%, 0, 0);
}
.cid-sVfBP5YiU2 .card-box:focus-within {
  opacity: 1;
}
.cid-sVfBP5YiU2 .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 280px;
}
.cid-sVfBP5YiU2 .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-sVfBP5YiU2 .card-box1 {
  opacity: 1;
  position: absolute;
  z-index: 3;
  left: 32px;
  right: 32px;
}
.cid-sVfBP5YiU2 .card-title1 {
  padding: 21px 0;
  z-index: 3;
  width: 100%;
  color: #ffffff;
  text-align: left;
}
.cid-sVfBP5YiU2 .card-wrapper:hover .card-box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}
.cid-sVfBP5YiU2 .card-wrapper:hover .card-title1:after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  content: '';
  transition: transform 0.35s, -webkit-transform 0.35s;
}
.cid-sVfBP5YiU2 .card-title1:after {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.35s, -webkit-transform 0.35s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  content: '';
}
.cid-sVfBP5YiU2 .card1 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/background1.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBP5YiU2 .card2 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/background2.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBP5YiU2 .card3 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image1.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBP5YiU2 .card4 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/background1.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfBP5YiU2 .card5 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/background1.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 576px) {
  .cid-sVfBP5YiU2 .embla__slide {
    min-width: initial;
    width: 100%;
    margin-bottom: 30px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-sVfBP5YiU2 .embla__slide:last-child {
    margin-bottom: 0px;
  }
  .cid-sVfBP5YiU2 .embla__container {
    flex-direction: column;
    transform: initial !important;
  }
  .cid-sVfBP5YiU2 .embla__button {
    display: none;
  }
}
.cid-sVfBPOwgGr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ba8e8a;
}
.cid-sVfBPOwgGr .mbr-iconfont {
  font-size: 80px;
  margin-bottom: 20px;
}
.cid-sVfBPOwgGr .card-text {
  color: #ffffff;
}
.cid-sVfBPOwgGr .card-title {
  margin-bottom: 20px;
}
.cid-sVfBPOwgGr .card {
  padding-right: 100px;
}
.cid-sVfBPOwgGr .b {
  padding-top: 40px;
}
.cid-sVfBPOwgGr .mbr-section-subtitle {
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: 5.4px;
  color: #ffffff;
}
.cid-sVfBPOwgGr .mbr-section-title {
  margin-bottom: 70px;
  color: #ffffff;
  text-align: left;
}
.cid-sVfBPOwgGr a {
  font-weight: 400;
}
.cid-sVfBPOwgGr .card-title,
.cid-sVfBPOwgGr .iconfont-wrapper {
  color: #ffffff;
}
.cid-sVfBPOwgGr .icon1 {
  color: #511730;
}
.cid-sVfBPOwgGr .icon2 {
  color: #e5be8a;
}
.cid-sVfBPOwgGr .icon3 {
  color: #3d626c;
}
.cid-sVfBPOwgGr .icon4 {
  color: #012b3a;
}
@media (max-width: 768px) {
  .cid-sVfBPOwgGr .card {
    padding-top: 30px;
    padding-right: 15px;
  }
  .cid-sVfBPOwgGr .card:nth-child(1) {
    padding-top: 0px;
  }
  .cid-sVfBPOwgGr .mbr-section-title {
    margin-bottom: 0;
  }
}
.cid-sVfBQrv8ac {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ba8e8a;
}
.cid-sVfBQrv8ac .iconfont-wrapper > .mbr-iconfont {
  font-size: 80px;
}
.cid-sVfBQrv8ac .iconfont-wrapper {
  margin-bottom: 20px;
}
.cid-sVfBQrv8ac .card {
  padding-right: 48px;
  margin-top: 60px;
}
.cid-sVfBQrv8ac .card-text {
  margin-bottom: 36px;
  color: #ffffff;
}
.cid-sVfBQrv8ac .card-title {
  margin-bottom: 20px;
}
.cid-sVfBQrv8ac a .mbr-iconfont {
  font-size: 14px !important;
}
.cid-sVfBQrv8ac .item .link {
  width: 100%;
  text-align: right;
}
.cid-sVfBQrv8ac .link {
  margin-bottom: 10px;
}
.cid-sVfBQrv8ac a {
  transition: color 300ms ease !important;
  font-weight: 400;
}
.cid-sVfBQrv8ac .custom-link::after {
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
}
.cid-sVfBQrv8ac .link:hover .custom-link {
  color: #75dbcd !important;
}
.cid-sVfBQrv8ac .card-title,
.cid-sVfBQrv8ac .iconfont-wrapper {
  color: #ffffff;
}
.cid-sVfBQrv8ac .icon1 {
  color: #511730;
}
.cid-sVfBQrv8ac .icon2 {
  color: #e5be8a;
}
.cid-sVfBQrv8ac .icon3 {
  color: #3d626c;
}
.cid-sVfBQrv8ac .icon4 {
  color: #012b3a;
}
.cid-sVfBQrv8ac .icon5 {
  color: #3d626c;
}
.cid-sVfBQrv8ac .icon6 {
  color: #8e443d;
}
.cid-sVfBQrv8ac .card:nth-child(1) {
  margin-top: 0px;
}
.cid-sVfBQrv8ac .card:nth-child(2) {
  margin-top: 0px;
}
.cid-sVfBQrv8ac .card:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-sVfBQrv8ac .card:nth-child(3) {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .cid-sVfBQrv8ac .card:nth-child(2) {
    margin-top: 60px;
  }
  .cid-sVfBQrv8ac .card {
    padding-right: 15px;
  }
}
.cid-sVfBQXeVS5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-sVfBQXeVS5 .mbr-section-subtitle {
  color: #3d626c;
  display: inline;
  width: auto;
  transition: all .3s;
}
.cid-sVfBQXeVS5 .brand {
  border: 1px solid #3D626C4A;
  border-radius: 80px;
  padding: 10px 30px;
  display: inline;
  width: auto;
  margin: 7px 20px;
  background-color: #ffffff;
  transition: all .3s;
}
@media (max-width: 460px) {
  .cid-sVfBQXeVS5 .row-main {
    flex-direction: column;
  }
  .cid-sVfBQXeVS5 .col-auto {
    margin-bottom: 20px;
  }
  .cid-sVfBQXeVS5 .mbr-section-subtitle {
    margin-right: 0;
  }
}
.cid-sVfBQXeVS5 .container {
  display: flex;
  justify-content: center;
}
.cid-sVfBQXeVS5 .brand:hover {
  border-color: #7eccc4;
}
.cid-sVfBQXeVS5 .brand:hover .mbr-section-subtitle {
  color: #7eccc4;
}
.cid-sVfBQXeVS5 .container,
.cid-sVfBQXeVS5 .container-fluid {
  display: flex;
  flex-wrap: wrap;
}
.cid-sVfC53VIbB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #34a0a4;
}
.cid-sVfC53VIbB .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfC53VIbB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sVfC8mAWtp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff8ef;
}
.cid-sVfC8mAWtp .card-heading {
  color: #012b3a;
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 15px;
}
.cid-sVfC8mAWtp .p {
  color: #012b3a;
  padding-bottom: 16px;
}
.cid-sVfC8mAWtp .row {
  justify-content: center;
}
.cid-sVfC8mAWtp a {
  font-weight: 400 !important;
}
.cid-sVfC8mAWtp a.text-danger:hover {
  color: #E5BE8A !important;
}
.cid-sVfC8VoqQu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff8ef;
}
.cid-sVfC8VoqQu .card-heading {
  padding-top: 16px;
  color: #012b3a;
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 15px;
}
.cid-sVfC8VoqQu .p {
  color: #012b3a;
}
.cid-sVfC8VoqQu .row {
  justify-content: center;
}
.cid-sVfC8VoqQu .b {
  padding-top: 0px;
}
.cid-sVfC8VoqQu a {
  font-weight: 400 !important;
}
.cid-sVfC8VoqQu a.text-danger:hover {
  color: #E5BE8A !important;
}
.cid-sVfC9ErypG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff8ef;
}
.cid-sVfC9ErypG .card-heading {
  padding-top: 16px;
  padding-bottom: 8px;
  color: #012b3a;
}
.cid-sVfC9ErypG .p,
.cid-sVfC9ErypG .mbr-text {
  color: #012b3a;
}
.cid-sVfC9ErypG .row {
  justify-content: center;
}
.cid-sVfC9ErypG a {
  font-weight: 400 !important;
}
.cid-sVfC9ErypG a.text-danger:hover {
  color: #E5BE8A !important;
}
.cid-sVfCadA320 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff8ef;
}
.cid-sVfCadA320 .card-heading {
  color: #012b3a;
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 15px;
}
.cid-sVfCadA320 .p {
  color: #012b3a;
  padding-bottom: 0 !important;
}
.cid-sVfCadA320 .mbr-text {
  color: #012b3a;
  padding-bottom: 16px !important;
}
.cid-sVfCadA320 .row {
  justify-content: center;
}
.cid-sVfCadA320 ul {
  padding-left: 40px !important;
  margin-bottom: 0 !important;
}
.cid-sVfCadA320 a {
  font-weight: 400 !important;
}
.cid-sVfCadA320 a.text-danger:hover {
  color: #E5BE8A !important;
}
.cid-sVfCaSy9bv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff8ef;
}
.cid-sVfCaSy9bv img {
  height: 100px;
  width: auto;
  margin: auto;
  display: inline;
}
.cid-sVfCaSy9bv .iconfont-wrapper {
  text-align: center;
  margin-bottom: 20px;
}
.cid-sVfCaSy9bv .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #012b3a;
  margin: 0;
}
.cid-sVfCaSy9bv .star {
  font-size: 25px;
  color: #ffd800;
}
.cid-sVfCbukUzu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff8ef;
}
.cid-sVfCbukUzu .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #012b3a;
  text-align: left;
  letter-spacing: 5.4px;
}
.cid-sVfCbukUzu .mbr-section-title {
  margin-bottom: 10px;
  color: #012b3a;
  text-align: left;
}
.cid-sVfCbukUzu .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
  letter-spacing: 5.4px;
}
.cid-sVfCbukUzu a {
  font-weight: 400;
}
.cid-sVfCceYsMo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-sVfCceYsMo .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: center;
  letter-spacing: 5.4px;
}
.cid-sVfCceYsMo .mbr-section-title {
  color: #3d626c;
  text-align: center;
}
.cid-sVfCd5VCnu {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/back.jpg");
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cid-sVfCd5VCnu .mbr-section-subtitle {
  color: #012b3a;
  font-size: 60px;
}
.cid-sVfCdW7kBS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d626c;
}
.cid-sVfCdW7kBS .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}
.cid-sVfCdW7kBS .mbr-section-title {
  color: #ffffff;
  text-align: center;
  line-height: 38.4px;
}
.cid-sVfCdW7kBS .container {
  max-width: 1240px;
}
.cid-sVfCez62jS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ba8e8a;
}
.cid-sVfCez62jS .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 5.2px;
}
.cid-sVfCez62jS .mbr-section-title {
  color: #ffffff;
}
.cid-sVfCez62jS .mbr-text,
.cid-sVfCez62jS .button-align {
  color: #75dbcd;
}
.cid-sVfCfZUtpe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #012b3a;
}
.cid-sVfCfZUtpe .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfCfZUtpe section {
  position: relative;
}
.cid-sVfCfZUtpe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sVfCfZUtpe .svg1 {
  width: 220px;
  position: absolute;
  z-index: 10;
  right: 10%;
  bottom: -45%;
}
@media (max-width: 600px) {
  .cid-sVfCfZUtpe .svg1 {
    width: 150px;
  }
}
.cid-sVfCfZUtpe .st1 {
  fill: #a13935;
}
.cid-sVfCfZUtpe .st0 {
  fill: #e5be8a;
}
.cid-sVfCfkGXr7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #012b3a;
}
.cid-sVfCfkGXr7 .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfCfkGXr7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sVfCiA6PCu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #34a0a4;
}
.cid-sVfCiA6PCu .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfCiA6PCu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sVfCjUnn0v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVfCjUnn0v img {
  border-radius: 0px;
}
.cid-sVfCjUnn0v .row {
  justify-content: center;
}
.cid-sVfCjUnn0v .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-sVfCkQ5guN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVfCkQ5guN .item-wrapper {
  width: 100%;
}
.cid-sVfCkQ5guN .left-side {
  text-align: left;
}
.cid-sVfCkQ5guN .row {
  align-items: center;
  justify-content: center;
}
.cid-sVfCkQ5guN .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.cid-sVfCkQ5guN .card-box:focus-within {
  opacity: 1;
}
.cid-sVfCkQ5guN .row-center {
  height: 100%;
}
.cid-sVfCkQ5guN .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 300px;
}
.cid-sVfCkQ5guN .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-sVfCkQ5guN .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 300px;
  padding: 20px;
  overflow: hidden;
  transition: all 1s;
}
.cid-sVfCkQ5guN .card-wrapper:hover .card-box,
.cid-sVfCkQ5guN .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-sVfCkQ5guN .card-wrapper:hover .card-img,
.cid-sVfCkQ5guN .card-wrapper:focus-within .card-img {
  transform: scale(1.1);
}
.cid-sVfCkQ5guN .card-wrapper:hover:before,
.cid-sVfCkQ5guN .card-wrapper:focus-within:before {
  opacity: 0.6;
}
.cid-sVfCkQ5guN .card-title {
  color: #fafafa;
  width: 100%;
  text-align: center;
}
.cid-sVfCkQ5guN .g {
  grid-row-gap: 24px;
}
.cid-sVfCkQ5guN .mobi-mbri {
  font-size: 50px;
  color: #3D626C;
}
.cid-sVfCkQ5guN .container {
  width: 95%;
}
@media (max-width: 1100px) {
  .cid-sVfCkQ5guN .carousel-control {
    display: none;
  }
}
.cid-sVfCkQ5guN .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: left;
}
.cid-sVfCkQ5guN .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: left;
}
.cid-sVfCkQ5guN .card1 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image2.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCkQ5guN .card2 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image3.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCkQ5guN .card3 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image6.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCkQ5guN .card4 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image7.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCkQ5guN .card5 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image4.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCkQ5guN .card6 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image5.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfClHymlu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff8ef;
}
.cid-sVfClHymlu .it {
  margin-top: 30px;
}
.cid-sVfClHymlu .it:nth-child(1) {
  margin-top: 0px;
}
.cid-sVfClHymlu .it:nth-child(2) {
  margin-top: 0px;
}
.cid-sVfClHymlu .it:nth-child(3) {
  margin-top: 0px;
}
.cid-sVfClHymlu .it:nth-child(4) {
  margin-top: 0px;
}
@media (max-width: 576px) {
  .cid-sVfClHymlu .it {
    margin-top: 15px;
  }
  .cid-sVfClHymlu .it:nth-child(2) {
    margin-top: 15px;
  }
  .cid-sVfClHymlu .it:nth-child(3) {
    margin-top: 15px;
  }
  .cid-sVfClHymlu .it:nth-child(4) {
    margin-top: 15px;
  }
}
.cid-sVfCmHtmsG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #34a0a4;
}
.cid-sVfCmHtmsG .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfCmHtmsG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sVfCo1qqQy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff8ef;
}
.cid-sVfCo1qqQy .item-wrapper {
  width: 100%;
}
.cid-sVfCo1qqQy .card {
  display: initial;
}
.cid-sVfCo1qqQy .card-box {
  width: 390px;
  height: 390px;
  z-index: 3;
  position: relative;
  opacity: 0;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: red;
  border-radius: 50%;
}
.cid-sVfCo1qqQy .card-box:focus-within {
  opacity: 1;
}
.cid-sVfCo1qqQy .row-center {
  height: 100%;
}
.cid-sVfCo1qqQy .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 390px;
  border-radius: 50%;
}
.cid-sVfCo1qqQy .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-sVfCo1qqQy .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  cursor: pointer;
  height: 390px;
  width: 390px;
  transition: all 1s;
}
.cid-sVfCo1qqQy .card-wrapper:hover .card-box,
.cid-sVfCo1qqQy .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-sVfCo1qqQy .card-wrapper:hover:before,
.cid-sVfCo1qqQy .card-wrapper:focus-within:before {
  opacity: 1;
}
.cid-sVfCo1qqQy .card-title {
  color: #fafafa;
  padding: 20px 30px;
  transition: all .3s;
}
.cid-sVfCo1qqQy .mobi-mbri {
  font-size: 50px;
  color: #3D626C;
}
.cid-sVfCo1qqQy .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: left;
}
.cid-sVfCo1qqQy .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: left;
}
.cid-sVfCo1qqQy .card1 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/team1.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCo1qqQy .card2 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/team4.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCo1qqQy .card3 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/team5.png");
  background-size: cover;
  background-position: center;
}
.cid-sVfCo1qqQy .card4 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/team3.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCo1qqQy .card5 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/team2.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCo1qqQy .card6 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/team6.png");
  background-size: cover;
  background-position: center;
}
.cid-sVfCo1qqQy .card11 {
  background-color: #3D626C;
}
.cid-sVfCo1qqQy .card12 {
  background-color: #511730;
}
.cid-sVfCo1qqQy .card13 {
  background-color: #8E443D;
}
.cid-sVfCo1qqQy .card14 {
  background-color: #E5BE8A;
}
.cid-sVfCo1qqQy .card15 {
  background-color: #b18161;
}
.cid-sVfCo1qqQy .card16 {
  background-color: #012B3A;
}
.cid-sVfCo1qqQy .title {
  padding-top: 40px;
  letter-spacing: 5.4px;
  text-align: center;
  color: #75dbcd;
  text-transform: uppercase;
}
.cid-sVfCo1qqQy .subtitle {
  padding-top: 10px;
  text-align: center;
  color: #012b3a;
  text-transform: uppercase;
}
.cid-sVfCo1qqQy .card:nth-child(1) {
  margin-bottom: 50px;
}
.cid-sVfCo1qqQy .card:nth-child(2) {
  margin-bottom: 50px;
}
.cid-sVfCo1qqQy .card:nth-child(3) {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .cid-sVfCo1qqQy .card:nth-child(4) {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .cid-sVfCo1qqQy .card:nth-child(5) {
    margin-bottom: 50px;
  }
}
@media (max-width: 1300px) {
  .cid-sVfCo1qqQy .card-box {
    width: 350px;
    height: 350px;
  }
  .cid-sVfCo1qqQy .card-wrapper {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .cid-sVfCo1qqQy .card-box {
    width: 300px;
    height: 300px;
  }
  .cid-sVfCo1qqQy .card-wrapper {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 700px) {
  .cid-sVfCo1qqQy .card-box {
    width: 270px;
    height: 270px;
  }
  .cid-sVfCo1qqQy .card-wrapper {
    width: 270px;
    height: 270px;
  }
}
.cid-sVfCoVcaHD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fff8ef;
}
.cid-sVfCoVcaHD .item:focus,
.cid-sVfCoVcaHD span:focus {
  outline: none;
}
.cid-sVfCoVcaHD .item-wrapper {
  position: relative;
}
.cid-sVfCoVcaHD .mbr-section-title {
  margin-bottom: 24px;
  color: #012b3a;
  text-align: center;
}
.cid-sVfCoVcaHD .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-sVfCoVcaHD .mbr-text,
.cid-sVfCoVcaHD .mbr-section-btn {
  text-align: left;
}
.cid-sVfCoVcaHD .item-title {
  text-align: left;
}
.cid-sVfCoVcaHD .item-subtitle {
  text-align: left;
}
.cid-sVfCoVcaHD .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 23%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-sVfCoVcaHD .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-sVfCoVcaHD .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-sVfCoVcaHD .embla__slide {
    min-width: 375px;
  }
}
.cid-sVfCoVcaHD .embla__button--next,
.cid-sVfCoVcaHD .embla__button--prev {
  display: flex;
}
.cid-sVfCoVcaHD .embla__button {
  background-color: rgba(17, 17, 17, 0.5);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px 0px;
  transition: all .3s;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sVfCoVcaHD .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-sVfCoVcaHD .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sVfCoVcaHD .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sVfCoVcaHD .embla__button:hover {
  background-color: #14142b;
}
.cid-sVfCoVcaHD .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sVfCoVcaHD .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sVfCoVcaHD .embla {
  position: relative;
  width: 100%;
}
.cid-sVfCoVcaHD .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-sVfCoVcaHD .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-sVfCoVcaHD .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-sVfCoVcaHD .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sVfCoVcaHD .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-sVfCoVcaHD .shadow {
  border-radius: 8px;
  box-shadow: none !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  padding: 24px;
  background-color: #ffffff;
}
.cid-sVfCoVcaHD .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: inline;
  padding-right: 10px;
  padding-bottom: 15px;
}
.cid-sVfCoVcaHD .card-title {
  color: #000000;
  transition: 0.35s;
  text-align: left;
  font-size: 14px;
}
.cid-sVfCoVcaHD .card-text {
  color: #000000;
  text-align: left;
  font-size: 18px;
  margin-bottom: 15px;
}
.cid-sVfCoVcaHD .margin {
  margin-right: 14px;
}
.cid-sVfCoVcaHD .article {
  display: contents;
}
.cid-sVfCoVcaHD .link-row {
  align-items: center;
}
.cid-sVfCoVcaHD .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
  display: inline;
}
.cid-sVfCoVcaHD .iconfont-wrapper .mbr-iconfont:before {
  font-size: 16px;
}
.cid-sVfCoVcaHD .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-sVfCoVcaHD .btn {
  margin-top: 20px;
}
.cid-sVfCoVcaHD a.btn > span {
  margin-left: 0.5rem;
}
.cid-sVfCoVcaHD img {
  border-radius: 50%;
  width: 44px;
  height: auto;
}
.cid-sVfCoVcaHD .card-title1 {
  display: inline;
  font-size: 12px;
  color: #8b8d8d;
}
.cid-sVfCoVcaHD .top {
  display: flex;
  align-items: center;
}
.cid-sVfCoVcaHD .mbr-iconfont:before {
  font-size: 34px;
}
.cid-sVfCoVcaHD .mbr-iconfont {
  width: auto;
  display: inline-flex;
  padding: 0;
  padding-right: 10px;
}
.cid-sVfCoVcaHD .small-header {
  font-size: 12px;
  color: #8b8d8d;
}
.cid-sVfCoVcaHD .mbr-text {
  font-size: 14px;
}
.cid-sVfCoVcaHD .fl {
  display: flex;
  align-items: flex-start;
}
.cid-sVfCoVcaHD .iconfont-wrapper .mbr-iconfont {
  padding-right: 0px;
}
.cid-sVfCoVcaHD button .mbr-iconfont:before {
  font-size: 16px;
}
.cid-sVfCoVcaHD button .mbr-iconfont {
  padding-right: 2px;
}
.cid-sVfCoVcaHD a:hover {
  text-decoration: underline;
}
.cid-sVfCoVcaHD .mbr-text a {
  color: #1c91ff !important;
}
.cid-sVfCoVcaHD a {
  transition: all .3s;
}
.cid-sVfCoVcaHD .mbr-text a:hover {
  color: #1c91ff !important;
}
@media (max-width: 576px) {
  .cid-sVfCoVcaHD .embla__slide {
    min-width: 100%;
  }
}
.cid-sVfCpAWvxs {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-sVfCpAWvxs .img-wrapper {
  text-align: center;
}
.cid-sVfCpAWvxs img {
  margin: auto;
  max-width: 150px;
}
.cid-sVfCpAWvxs .row {
  align-items: flex-start;
}
.cid-sVfCpAWvxs .card-title {
  color: #666666;
}
.cid-sVfCpAWvxs .text {
  color: #666666;
}
.cid-sVfCpAWvxs .card-wrapper {
  margin: 0 32px;
}
.cid-sVfCpAWvxs .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sVfCpAWvxs .carousel-item.active,
.cid-sVfCpAWvxs .carousel-item-next,
.cid-sVfCpAWvxs .carousel-item-prev {
  display: flex;
}
.cid-sVfCpAWvxs .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  bottom: -25px;
}
.cid-sVfCpAWvxs .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #012b3a;
}
.cid-sVfCpAWvxs .carousel-indicators li {
  margin: 0 10px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 1px solid #75dbcd;
  transition: opacity .5s;
  background-color: #75dbcd;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-sVfCpAWvxs .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sVfCpAWvxs .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-sVfCpAWvxs .carousel-controls {
    display: none;
  }
  .cid-sVfCpAWvxs .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-sVfCpAWvxs .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-sVfCpAWvxs .carousel-controls a:hover span {
    opacity: 1;
  }
}
@media (max-width: 540px) {
  .cid-sVfCpAWvxs .text-element {
    padding: 1rem;
  }
  .cid-sVfCpAWvxs .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sVfCpAWvxs .image-element {
    min-width: 50%;
  }
  .cid-sVfCpAWvxs .media-container-row {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .cid-sVfCpAWvxs .card-wrapper {
    margin: 0 15px;
  }
}
@media (max-width: 576px) {
  .cid-sVfCpAWvxs .card {
    display: none;
  }
  .cid-sVfCpAWvxs .card:nth-child(1) {
    display: block;
  }
}
.cid-sVfCpAWvxs .card {
  margin-bottom: 30px;
}
.cid-sVfCpAWvxs .card:last-child {
  margin-bottom: 0;
}
.cid-sVfCqpPNJW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #511730;
}
.cid-sVfCqpPNJW .item-wrapper {
  position: relative;
}
.cid-sVfCqpPNJW .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-sVfCqpPNJW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-sVfCqpPNJW .embla__button--next,
.cid-sVfCqpPNJW .embla__button--prev {
  display: flex;
}
.cid-sVfCqpPNJW .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sVfCqpPNJW .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-sVfCqpPNJW .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-sVfCqpPNJW .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-sVfCqpPNJW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sVfCqpPNJW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sVfCqpPNJW .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-sVfCqpPNJW .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-sVfCqpPNJW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-sVfCqpPNJW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-sVfCqpPNJW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sVfCqpPNJW .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-sVfCqpPNJW img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-sVfCqpPNJW .container {
  max-width: 1100px;
}
.cid-sVfCqpPNJW .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-sVfCqpPNJW .embla {
    width: 70%;
  }
  .cid-sVfCqpPNJW .embla__slide {
    min-width: 150%;
  }
}
.cid-sVfCrM1HLS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #34a0a4;
}
.cid-sVfCrM1HLS .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfCrM1HLS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sVfCwRnuav {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-sVfCwRnuav .mbr-section-title {
  margin-bottom: 58px;
  color: #012b3a;
  text-align: center;
}
.cid-sVfCwRnuav .mbr-form-container {
  width: 100%;
  margin-top: 12px;
}
.cid-sVfCwRnuav .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 25px;
}
.cid-sVfCwRnuav .form-message-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding: 0;
}
.cid-sVfCwRnuav form .row {
  margin: 0;
  border: none !important;
}
.cid-sVfCwRnuav form .form-group {
  flex-grow: 1;
}
.cid-sVfCwRnuav form .form-group input,
.cid-sVfCwRnuav form .form-group textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.24);
  border: 1px solid #3d626c !important;
}
.cid-sVfCwRnuav form .form-group input:hover,
.cid-sVfCwRnuav form .form-group textarea:hover,
.cid-sVfCwRnuav form .form-group input :focus,
.cid-sVfCwRnuav form .form-group textarea :focus,
.cid-sVfCwRnuav form .form-group input :active,
.cid-sVfCwRnuav form .form-group textarea :active {
  box-shadow: none !important;
}
.cid-sVfCwRnuav .form-group input {
  height: 59px;
  padding: 7px 20px !important;
  color: #012b3a;
  font-size: 18px !important;
}
.cid-sVfCwRnuav .form-group textarea {
  padding: 7px 20px !important;
  height: 95px;
  font-size: 18px !important;
}
.cid-sVfCwRnuav .form-group {
  margin-bottom: 11px !important;
}
.cid-sVfCwRnuav .form-group input:focus {
  height: 59px;
  border: 1px solid #818a91;
  background-color: rgba(255, 255, 255, 0.24);
}
.cid-sVfCwRnuav .form-group textarea:focus {
  border: 1px solid #818a91;
  background-color: rgba(255, 255, 255, 0.24);
}
.cid-sVfCwRnuav .form-group input:hover {
  height: 59px;
  border: 1px solid #818a91;
  background-color: rgba(255, 255, 255, 0.24);
}
.cid-sVfCwRnuav .form-group textarea:hover {
  border: 1px solid #818a91;
  background-color: rgba(255, 255, 255, 0.24);
}
.cid-sVfCwRnuav .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
  margin: 5px;
}
.cid-sVfCwRnuav a {
  font-weight: 400;
  letter-spacing: 5.4px;
  display: inline-block;
  width: auto;
}
.cid-sVfCwRnuav .mbr-section-btn {
  margin-top: 11px;
  text-align: center;
}
.cid-sVfCwRnuav .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #012b3a;
  text-align: center;
  letter-spacing: 5.4px;
}
.cid-sVfCwRnuav textarea::placeholder {
  color: #6c757d;
  font-size: 18px;
}
.cid-sVfCwRnuav input::placeholder {
  color: #6c757d;
  font-size: 18px;
}
.cid-sVfCwRnuav .container {
  max-width: 1140px;
}
.cid-sVfCwRnuav label {
  color: #6c757d;
  font-size: 18px;
  font-family: 'Outfit';
}
.cid-sVfCwRnuav .form-check .form-check-input {
  float: initial;
  height: 20px;
  padding: initial !important;
  border: none !important;
}
.cid-sVfCwRnuav .form-check .form-check-input:focus {
  float: initial;
  height: 20px;
  padding: initial !important;
  border: none !important;
}
.cid-sVfCxwN7uD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff8ef;
}
.cid-sVfCxwN7uD .item-text {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #000000;
  padding: 35px 0px 15px;
}
@media (min-width: 576px) {
  .cid-sVfCxwN7uD .item-text {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-sVfCxwN7uD .text-left {
  padding-right: 32px;
  margin-right: auto;
}
.cid-sVfCxwN7uD img {
  max-height: 70px;
  width: 100px;
  display: inline-block;
}
.cid-sVfCxwN7uD .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: left;
  letter-spacing: 5.4px;
}
.cid-sVfCxwN7uD .mbr-section-title {
  margin-bottom: 13px;
  color: #012b3a;
  text-align: left;
}
.cid-sVfCxwN7uD a {
  font-weight: 400;
}
.cid-sVfCxwN7uD .item-text:last-child {
  border-bottom: none;
}
.cid-sVfCxwN7uD .mbr-iconfont {
  font-size: 14px !important;
}
.cid-sVfCxwN7uD .title-link {
  color: #012b3a;
}
.cid-sVfCxwN7uD .link {
  transition-duration: all .3s;
}
.cid-sVfCxwN7uD .link:hover .custom-link,
.cid-sVfCxwN7uD .link:hover .mbr-iconfont {
  color: #3d626c !important;
}
.cid-sVfCyLlT9u {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #3d626c;
}
.cid-sVfCyLlT9u .panel-title-edit {
  color: #ffffff;
  width: 100%;
  display: block;
  padding-left: 15px;
}
.cid-sVfCyLlT9u .mbr-iconfont {
  color: #dcdce0;
  top: 33px;
  position: absolute;
  left: 2px;
  font-family: 'Moririse2' !important;
  font-size: 80px;
}
.cid-sVfCyLlT9u span {
  color: currentColor !important;
}
.cid-sVfCyLlT9u .panel-text {
  color: #f2f2f2;
  padding-bottom: 16px;
}
.cid-sVfCyLlT9u .card-header {
  padding-left: 0;
  border: none;
}
.cid-sVfCyLlT9u .card {
  border: none;
  border-bottom: 2px solid #dcdce0;
  border-radius: 0;
}
.cid-sVfCyLlT9u .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  padding: 15px;
}
.cid-sVfCyLlT9u .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sVfCyLlT9u .mbr-text {
  color: #ffffff;
  margin-bottom: 48px;
}
.cid-sVfCyLlT9u .iconfont-wrapper {
  margin-bottom: 20px;
}
.cid-sVfCyLlT9u .panel-body {
  padding: 15px;
}
.cid-sVfCyLlT9u .t1 {
  display: flex;
  align-items: center;
}
.cid-sVfCyLlT9u .card .collapsing .panel-body {
  border-top: transparent !important;
  border-bottom: 1px solid #ffffff;
}
.cid-sVfCyLlT9u .card .show .panel-body {
  border-bottom: 1px solid #ffffff;
  border-top: transparent !important;
}
.cid-sVfCyLlT9u .panel-title-edit .mbr-iconfont {
  font-size: 14px;
  padding-right: 5px;
}
.cid-sVfCyLlT9u H3 {
  color: #ffffff;
}
.cid-sVfCyLlT9u ul {
  padding-left: 40px;
  margin-bottom: 0;
  padding-bottom: 16px;
}
.cid-sVfCyLlT9u .panel-text P {
  color: #ffffff;
  text-align: left;
}
.cid-sVfCyLlT9u .container {
  max-width: 1180px;
}
.cid-sVfCyLlT9u .mbr-section-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}
.cid-sVfCyLlT9u .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
  margin-bottom: 20px;
  font-weight: 500;
}
.cid-sVfCyLlT9u a {
  font-weight: 400;
}
.cid-sVfCA2nQda {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #3d626c;
}
.cid-sVfCA2nQda .plan {
  overflow: visible;
  word-break: break-word;
  background-color: #FFFFFF33;
  border-radius: 25px;
  box-shadow: 15px 17px 32px -2px rgba(0, 0, 0, 0.5);
  padding: 30px 30px 45px;
  transition-duration: all .3s;
}
.cid-sVfCA2nQda .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-sVfCA2nQda .align-center {
    margin-top: 2rem;
  }
  .cid-sVfCA2nQda .align-center:first-child {
    margin-top: 0rem;
  }
  .cid-sVfCA2nQda .align-center:nth-child(2) {
    margin-top: 0rem;
  }
}
.cid-sVfCA2nQda .list {
  text-align: left;
}
.cid-sVfCA2nQda .category {
  text-align: left;
  margin-bottom: 24px;
}
.cid-sVfCA2nQda .link {
  text-align: left;
}
.cid-sVfCA2nQda li {
  display: flex;
  align-items: center;
}
.cid-sVfCA2nQda li:last-child {
  margin-bottom: 0;
}
.cid-sVfCA2nQda ul {
  padding-inline-start: 0px;
  margin-bottom: 0rem;
}
.cid-sVfCA2nQda .card {
  border: 1px solid #eff0f6;
}
.cid-sVfCA2nQda .text {
  margin-bottom: 34px;
  text-align: left;
  color: #5f5d68;
}
.cid-sVfCA2nQda .text2 {
  margin-bottom: 34px;
  text-align: left;
  color: #14142b;
}
.cid-sVfCA2nQda .align {
  margin-bottom: 31px;
}
.cid-sVfCA2nQda .name {
  margin-bottom: 16px;
  text-align: center;
  color: #ffffff;
}
.cid-sVfCA2nQda .price,
.cid-sVfCA2nQda .montn,
.cid-sVfCA2nQda .month2 {
  display: inline !important;
}
.cid-sVfCA2nQda .mbr-text {
  display: inline;
  width: 100%;
}
.cid-sVfCA2nQda .month {
  width: auto;
  display: inline;
  color: #ffffff;
}
.cid-sVfCA2nQda .month2 {
  width: auto;
  display: inline;
  color: #14142b;
}
.cid-sVfCA2nQda span {
  color: #e5be8a;
  font-size: 0.6rem;
  margin-right: 6px;
  font-weight: 800;
}
.cid-sVfCA2nQda .mbr-section-title {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.cid-sVfCA2nQda .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 5.2px;
}
.cid-sVfCA2nQda .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-sVfCA2nQda .card1:hover,
.cid-sVfCA2nQda .card2:hover,
.cid-sVfCA2nQda .card3:hover {
  transform: translate(0px, -6px);
}
@media (max-width: 768px) {
  .cid-sVfCA2nQda .align-center:nth-child(2) {
    margin-top: 2rem;
  }
}
.cid-sVfCA2nQda a.btn > span {
  margin-left: 0.5rem;
  background-color: transparent;
}
.cid-sVfCA2nQda .list,
.cid-sVfCA2nQda .link {
  color: #ffffff;
}
.cid-sVfCA2nQda .price {
  color: #75dbcd;
}
.cid-sVfCA2nQda .plan:hover {
  background-color: #FFFFFF4D;
}
.cid-sVfCA2nQda .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
  width: auto;
}
.cid-sVfCA2nQda a {
  font-weight: 400;
  letter-spacing: 5.2px;
  transition: all .3s;
}
.cid-sVfCA2nQda a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-sVfCA2nQda .button-align {
  margin-bottom: 25px;
  text-align: center;
}
.cid-sVfCA2nQda .btn span {
  color: currentColor;
}
.cid-sVfCAL4aMQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ba8e8a;
}
.cid-sVfCAL4aMQ .plan {
  height: 100%;
  overflow: visible;
  word-break: break-word;
  background-color: #8E443D3D;
  border-radius: 25px;
  box-shadow: 15px 17px 32px -2px rgba(0, 0, 0, 0.62);
  transition-duration: all .3s;
  padding: 40px;
}
.cid-sVfCAL4aMQ .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sVfCAL4aMQ .plan:hover {
  background-color: #8E443D69;
}
@media (max-width: 991px) {
  .cid-sVfCAL4aMQ .align-center {
    margin-top: 2rem;
  }
  .cid-sVfCAL4aMQ .align-center:first-child {
    margin-top: 0rem;
  }
  .cid-sVfCAL4aMQ .align-center:nth-child(2) {
    margin-top: 0rem;
  }
}
.cid-sVfCAL4aMQ .list {
  text-align: left;
}
.cid-sVfCAL4aMQ .category {
  text-align: left;
  margin-bottom: 24px;
}
.cid-sVfCAL4aMQ .link {
  text-align: left;
}
.cid-sVfCAL4aMQ li {
  display: flex;
  align-items: center;
}
.cid-sVfCAL4aMQ li:last-child {
  margin-bottom: 0;
}
.cid-sVfCAL4aMQ ul {
  padding-inline-start: 0px;
  margin-bottom: 0rem;
}
.cid-sVfCAL4aMQ a.btn {
  width: 100% !important;
  margin: auto;
}
.cid-sVfCAL4aMQ .card {
  border: 1px solid #eff0f6;
}
.cid-sVfCAL4aMQ .text {
  margin-bottom: 34px;
  text-align: left;
  color: #5f5d68;
}
.cid-sVfCAL4aMQ .text2 {
  margin-bottom: 34px;
  text-align: left;
  color: #14142b;
}
.cid-sVfCAL4aMQ .align {
  margin-bottom: 10px;
}
.cid-sVfCAL4aMQ .name {
  margin-bottom: 2ul0px;
  text-align: center;
  color: #ffffff;
}
.cid-sVfCAL4aMQ .mbr-text {
  display: inline;
  width: 100%;
}
.cid-sVfCAL4aMQ .month {
  width: auto;
  display: inline;
  color: #ffffff;
}
.cid-sVfCAL4aMQ .month2 {
  width: auto;
  display: inline;
  color: #14142b;
}
.cid-sVfCAL4aMQ span {
  color: #e5be8a;
  font-size: 0.6rem;
  margin-right: 6px;
  font-weight: 800;
}
.cid-sVfCAL4aMQ .mbr-section-title {
  text-align: center;
  margin-bottom: 24px;
  color: #14142b;
}
.cid-sVfCAL4aMQ .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-sVfCAL4aMQ .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-sVfCAL4aMQ .card1:hover,
.cid-sVfCAL4aMQ .card2:hover,
.cid-sVfCAL4aMQ .card3:hover {
  transform: translate(0px, -6px);
}
@media (max-width: 768px) {
  .cid-sVfCAL4aMQ .align-center:nth-child(2) {
    margin-top: 2rem;
  }
}
.cid-sVfCAL4aMQ a.btn > span {
  margin-left: 0.5rem;
  background-color: transparent;
}
.cid-sVfCAL4aMQ .list,
.cid-sVfCAL4aMQ .link {
  color: #ffffff;
}
.cid-sVfCAL4aMQ .price {
  color: #e5be8a;
}
.cid-sVfCC9NkI5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #34a0a4;
}
.cid-sVfCC9NkI5 .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfCC9NkI5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sVfCDo3rk5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-sVfCDo3rk5 .item-wrapper {
  width: 100%;
}
.cid-sVfCDo3rk5 .carousel-caption {
  bottom: 40px;
}
.cid-sVfCDo3rk5 .carousel-control {
  top: 59%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  transition: all 0.3s;
  color: #000000;
}
.cid-sVfCDo3rk5 .carousel-control.carousel-control-prev {
  left: -100px;
  margin-left: 4.5rem;
}
.cid-sVfCDo3rk5 .carousel-control.carousel-control-next {
  right: -100px;
  margin-right: 4.5rem;
}
.cid-sVfCDo3rk5 .left-side {
  text-align: left;
}
.cid-sVfCDo3rk5 .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 400px;
}
.cid-sVfCDo3rk5 .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-sVfCDo3rk5 .row {
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
}
.cid-sVfCDo3rk5 .carousel-fade .active.carousel-item-left,
.cid-sVfCDo3rk5 .carousel-fade .active.carousel-item-right {
  transition: opacity 0.5s 0s;
}
.cid-sVfCDo3rk5 .carousel-fade .carousel-item-left.carousel-item-next,
.cid-sVfCDo3rk5 .carousel-fade .carousel-item-right.carousel-item-prev {
  transition: opacity 0.5s 0.5s;
}
.cid-sVfCDo3rk5 .carousel-control-next,
.cid-sVfCDo3rk5 .carousel-control-prev {
  opacity: 1;
}
.cid-sVfCDo3rk5 .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.cid-sVfCDo3rk5 .card-box:focus-within {
  opacity: 1;
}
.cid-sVfCDo3rk5 .row-center {
  height: 100%;
}
.cid-sVfCDo3rk5 .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 400px;
  padding: 20px;
}
.cid-sVfCDo3rk5 .card-wrapper:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: black;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.cid-sVfCDo3rk5 .card-wrapper:hover .card-box,
.cid-sVfCDo3rk5 .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-sVfCDo3rk5 .card-wrapper:hover:before,
.cid-sVfCDo3rk5 .card-wrapper:focus-within:before {
  opacity: 0.5;
}
.cid-sVfCDo3rk5 .card-title {
  color: #fafafa;
  text-align: left;
}
.cid-sVfCDo3rk5 .carousel-item {
  justify-content: center;
}
.cid-sVfCDo3rk5 .g {
  grid-row-gap: 24px;
}
.cid-sVfCDo3rk5 .mobi-mbri {
  font-size: 25px;
  color: #012B3A !important;
}
.cid-sVfCDo3rk5 .container {
  width: 95%;
  margin: auto;
}
@media (max-width: 1000px) {
  .cid-sVfCDo3rk5 .carousel-control {
    display: none;
  }
  .cid-sVfCDo3rk5 .container {
    width: 100%;
    padding: 0;
  }
}
.cid-sVfCDo3rk5 .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sVfCDo3rk5 .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: center;
}
.cid-sVfCDo3rk5 a {
  font-weight: 400;
}
.cid-sVfCDo3rk5 .card1 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image2.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCDo3rk5 .card2 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image3.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCDo3rk5 .card3 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image5.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCDo3rk5 .card4 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image6.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCDo3rk5 .card5 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image4.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCDo3rk5 .card6 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image2.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCDo3rk5 .card7 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image3.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCDo3rk5 .card8 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image5.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCDo3rk5 .card9 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image6.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sVfCDo3rk5 .card10 {
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/image4.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 576px) {
  .cid-sVfCDo3rk5 .g {
    grid-row-gap: 15px;
  }
}
.cid-sVfCDo3rk5 .carousel.slide {
  padding: 0;
}
.cid-sVfCE9syAa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("https://mobirise.com/extensions/socialm5/assets/images/background3.jpg");
}
.cid-sVfCE9syAa .mbr-overlay {
  background: #012b3a;
  opacity: 0.4;
}
.cid-sVfCE9syAa .item:focus,
.cid-sVfCE9syAa span:focus {
  outline: none;
}
.cid-sVfCE9syAa .item-wrapper {
  position: relative;
  padding: 50px;
  background-color: #012B3A;
}
.cid-sVfCE9syAa .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-sVfCE9syAa .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-sVfCE9syAa .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 5.2px;
}
.cid-sVfCE9syAa .mbr-text,
.cid-sVfCE9syAa .mbr-section-btn {
  text-align: left;
}
.cid-sVfCE9syAa .item-title {
  text-align: left;
}
.cid-sVfCE9syAa .item-subtitle {
  text-align: left;
}
.cid-sVfCE9syAa .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 33%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-sVfCE9syAa .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-sVfCE9syAa .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-sVfCE9syAa .embla__slide {
    min-width: 375px;
  }
}
.cid-sVfCE9syAa .embla__button--next,
.cid-sVfCE9syAa .embla__button--prev {
  display: flex;
}
.cid-sVfCE9syAa .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: 2px solid #ffffff;
  width: 50px;
  height: 50px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sVfCE9syAa .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-sVfCE9syAa .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sVfCE9syAa .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sVfCE9syAa .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sVfCE9syAa .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sVfCE9syAa .embla {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-sVfCE9syAa .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-sVfCE9syAa .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-sVfCE9syAa .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-sVfCE9syAa .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sVfCE9syAa .mbr-section-subtitle {
  text-align: center;
  color: #fff8ef;
}
.cid-sVfCE9syAa .title-block {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin: auto;
}
.cid-sVfCE9syAa .card-title {
  color: #4c4c4c;
  text-align: left;
  font-size: 24px;
}
.cid-sVfCE9syAa .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-sVfCE9syAa H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-sVfCE9syAa .button-align {
  margin-top: 25px;
  text-align: center;
}
.cid-sVfCE9syAa .btn {
  margin-top: 5px;
  padding: 15px 30px !important;
  letter-spacing: 5.2px;
  text-transform: uppercase;
  transition: all .3s !important;
}
.cid-sVfCE9syAa a.btn > span {
  margin-left: 0.5rem;
}
.cid-sVfCE9syAa .card-title,
.cid-sVfCE9syAa .iconfont-wrapper {
  color: #75dbcd;
}
.cid-sVfCE9syAa .mbr-section-title,
.cid-sVfCE9syAa .button-align {
  color: #75dbcd;
}
.cid-sVfCE9syAa a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
@media (max-width: 576px) {
  .cid-sVfCE9syAa .embla__slide {
    min-width: 100%;
  }
}
.cid-sVfCFe39gz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e443d;
}
.cid-sVfCFe39gz img,
.cid-sVfCFe39gz .item-img {
  width: 100%;
}
.cid-sVfCFe39gz .item:focus,
.cid-sVfCFe39gz span:focus {
  outline: none;
}
.cid-sVfCFe39gz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sVfCFe39gz .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 30px;
  width: 100%;
}
.cid-sVfCFe39gz .mbr-text {
  margin-bottom: 0;
  color: #fff8ef;
  text-align: left;
}
.cid-sVfCFe39gz .item-title {
  color: #fff8ef;
  margin-bottom: 28px;
  text-align: left;
}
.cid-sVfCFe39gz .carousel-inner {
  margin: auto;
  width: 87%;
}
.cid-sVfCFe39gz .carousel,
.cid-sVfCFe39gz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sVfCFe39gz .carousel-caption {
  bottom: 40px;
}
.cid-sVfCFe39gz .mobi-mbri {
  font-size: 25px;
  opacity: 1;
  color: #fff8ef;
}
.cid-sVfCFe39gz .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sVfCFe39gz .carousel-control {
  opacity: 1;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sVfCFe39gz .carousel-control.carousel-control-prev {
  left: 1%;
}
@media (max-width: 992px) {
  .cid-sVfCFe39gz .carousel-control.carousel-control-prev {
    left: 5%;
  }
}
.cid-sVfCFe39gz .carousel-control.carousel-control-next {
  right: 51%;
}
@media (max-width: 992px) {
  .cid-sVfCFe39gz .carousel-control.carousel-control-next {
    right: 45%;
  }
}
.cid-sVfCFe39gz .carousel-indicators {
  position: absolute;
  bottom: 0;
}
.cid-sVfCFe39gz .carousel-indicators li {
  max-width: 6px;
  height: 6px;
  width: 6px;
  max-height: 6px;
  margin: 5px;
  background-color: #181818;
  opacity: 0.2;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sVfCFe39gz .carousel-indicators li.active,
.cid-sVfCFe39gz .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sVfCFe39gz .carousel-indicators li::after,
.cid-sVfCFe39gz .carousel-indicators li::before {
  content: none;
}
.cid-sVfCFe39gz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-sVfCFe39gz .row {
  align-items: center;
}
.cid-sVfCFe39gz a {
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-sVfCFe39gz .carousel-control {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sVfCFe39gz .carousel-inner {
    width: 100%;
  }
  .cid-sVfCFe39gz .item-content {
    padding-top: 20px;
  }
}
.cid-sVfwBIzy10 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #012b3a;
}
.cid-sVfwBIzy10 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sVfwBIzy10 a {
  font-weight: 400 !important;
  transition-duration: all .3s;
}
.cid-sVfwBIzy10 a.text-danger:hover {
  color: #EABB80 !important;
}
