.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Merriweather', serif;
  font-size: 4.25rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-2 {
  font-family: 'Noto Serif', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'PT Serif', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.975rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #3233fd !important;
}
.bg-success {
  background-color: #6092d0 !important;
}
.bg-info {
  background-color: #71b6da !important;
}
.bg-warning {
  background-color: #cccccc !important;
}
.bg-danger {
  background-color: #2a4fad !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #3233fd !important;
  border-color: #3233fd !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: #0203d6 !important;
  border-color: #0203d6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0203d6 !important;
  border-color: #0203d6 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ede9e7 !important;
  border-color: #ede9e7 !important;
  color: #7a655b !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: #c8bcb5 !important;
  border-color: #c8bcb5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #7a655b !important;
  background-color: #c8bcb5 !important;
  border-color: #c8bcb5 !important;
}
.btn-info,
.btn-info:active {
  background-color: #71b6da !important;
  border-color: #71b6da !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #3291c2 !important;
  border-color: #3291c2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3291c2 !important;
  border-color: #3291c2 !important;
}
.btn-success,
.btn-success:active {
  background-color: #6092d0 !important;
  border-color: #6092d0 !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: #3266a8 !important;
  border-color: #3266a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3266a8 !important;
  border-color: #3266a8 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
  color: #4d4d4d !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: #a1a1a1 !important;
  border-color: #a1a1a1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #4d4d4d !important;
  background-color: #a1a1a1 !important;
  border-color: #a1a1a1 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #2a4fad !important;
  border-color: #2a4fad !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: #192f67 !important;
  border-color: #192f67 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #192f67 !important;
  border-color: #192f67 !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: #3233fd;
  color: #3233fd;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0203d6 !important;
  background-color: transparent!important;
  border-color: #0203d6 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #3233fd !important;
  border-color: #3233fd !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ede9e7;
  color: #ede9e7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c8bcb5 !important;
  background-color: transparent!important;
  border-color: #c8bcb5 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #7a655b !important;
  background-color: #ede9e7 !important;
  border-color: #ede9e7 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #71b6da;
  color: #71b6da;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3291c2 !important;
  background-color: transparent!important;
  border-color: #3291c2 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #71b6da !important;
  border-color: #71b6da !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #6092d0;
  color: #6092d0;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3266a8 !important;
  background-color: transparent!important;
  border-color: #3266a8 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #6092d0 !important;
  border-color: #6092d0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a1a1a1 !important;
  background-color: transparent!important;
  border-color: #a1a1a1 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #4d4d4d !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #2a4fad;
  color: #2a4fad;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #192f67 !important;
  background-color: transparent!important;
  border-color: #192f67 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #2a4fad !important;
  border-color: #2a4fad !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #3233fd !important;
}
.text-secondary {
  color: #ede9e7 !important;
}
.text-success {
  color: #6092d0 !important;
}
.text-info {
  color: #71b6da !important;
}
.text-warning {
  color: #cccccc !important;
}
.text-danger {
  color: #2a4fad !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0203c7 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c1b4ad !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2e5f9c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2f88b6 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #999999 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #162a5b !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #3233fd;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #71b6da;
}
.alert-warning {
  background-color: #cccccc;
}
.alert-danger {
  background-color: #2a4fad;
}
.mbr-gallery-filter li.active .btn {
  background-color: #3233fd;
  border-color: #3233fd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #3233fd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcfcff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fdfeff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #7895de;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #3233fd !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #3233fd;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3233fd;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #3233fd;
}
.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: #3233fd;
  border-bottom-color: #3233fd;
}
.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: #3233fd !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ede9e7 !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='%233233fd' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sgRuDe8sE4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sgRuDe8sE4 nav.navbar {
  position: fixed;
}
.cid-sgRuDe8sE4 .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-sgRuDe8sE4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sgRuDe8sE4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sgRuDe8sE4 .dropdown-item:hover,
.cid-sgRuDe8sE4 .dropdown-item:focus {
  background: #3233fd !important;
  color: white !important;
}
.cid-sgRuDe8sE4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sgRuDe8sE4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sgRuDe8sE4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sgRuDe8sE4 .nav-link {
  position: relative;
}
.cid-sgRuDe8sE4 .container {
  display: flex;
  margin: auto;
}
.cid-sgRuDe8sE4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgRuDe8sE4 .dropdown-menu,
.cid-sgRuDe8sE4 .navbar.opened {
  background: #ededed !important;
}
.cid-sgRuDe8sE4 .nav-item:focus,
.cid-sgRuDe8sE4 .nav-link:focus {
  outline: none;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sgRuDe8sE4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sgRuDe8sE4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sgRuDe8sE4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ededed;
}
.cid-sgRuDe8sE4 .navbar.opened {
  transition: all 0.3s;
}
.cid-sgRuDe8sE4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sgRuDe8sE4 .navbar .navbar-logo img {
  width: auto;
}
.cid-sgRuDe8sE4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgRuDe8sE4 .navbar.collapsed {
  justify-content: center;
}
.cid-sgRuDe8sE4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sgRuDe8sE4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sgRuDe8sE4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgRuDe8sE4 .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-sgRuDe8sE4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sgRuDe8sE4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sgRuDe8sE4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sgRuDe8sE4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgRuDe8sE4 .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-sgRuDe8sE4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sgRuDe8sE4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sgRuDe8sE4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sgRuDe8sE4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sgRuDe8sE4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sgRuDe8sE4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sgRuDe8sE4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sgRuDe8sE4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sgRuDe8sE4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sgRuDe8sE4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgRuDe8sE4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgRuDe8sE4 .dropdown-item.active,
.cid-sgRuDe8sE4 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgRuDe8sE4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgRuDe8sE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ededed;
}
.cid-sgRuDe8sE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgRuDe8sE4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgRuDe8sE4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sgRuDe8sE4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sgRuDe8sE4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3233fd;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sgRuDe8sE4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sgRuDe8sE4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgRuDe8sE4 .navbar {
    height: 70px;
  }
  .cid-sgRuDe8sE4 .navbar.opened {
    height: auto;
  }
  .cid-sgRuDe8sE4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sgRuJuz9gu {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/dscn5069-2000x1500.jpeg");
}
.cid-sgRuJuz9gu .mbr-section-title {
  color: #3233fd;
}
.cid-sgRuJuz9gu .mbr-section-subtitle {
  color: #353535;
}
.cid-sgRxTTAnR3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sgRy3qi57r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sgRy3qi57r .mbr-text {
  text-align: center;
}
.cid-sIYd2xj61f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f7ff;
}
.cid-sIYd2xj61f .line {
  background-color: #3233fd;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sIYd3wKU7R {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sgRyErU3Bm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sgRyErU3Bm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sgRyErU3Bm .row {
  flex-direction: row-reverse;
}
.cid-sgRyErU3Bm img {
  width: 100%;
}
.cid-sgRyRQjJw9 {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sgRyRQjJw9 .container {
    max-width: 1400px;
  }
}
.cid-sgRyRQjJw9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #3233fd;
  margin-bottom: 2rem;
}
.cid-sgRyRQjJw9 .card-wrapper {
  margin-top: 3rem;
}
.cid-sgRyRQjJw9 .row {
  justify-content: center;
}
.cid-sIY1D7rxZE {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-20210906-162740-2000x1500.jpeg");
}
.cid-sIY1D7rxZE .mbr-text,
.cid-sIY1D7rxZE .mbr-section-btn {
  color: #232323;
}
.cid-sIY1D7rxZE .card-title,
.cid-sIY1D7rxZE .card-box {
  color: #ffffff;
}
.cid-sIY1D7rxZE .mbr-text,
.cid-sIY1D7rxZE .link-wrap {
  color: #ffffff;
}
.cid-sIvF0JwC7D {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIvF0JwC7D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sIvF0JwC7D .row {
  flex-direction: row-reverse;
}
.cid-sIvF0JwC7D img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sIvF0JwC7D .text-wrapper {
    padding: 2rem;
  }
}
.cid-sgRzkPwgk2 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .content {
    text-align: center;
  }
  .cid-sgRzkPwgk2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sgRzkPwgk2 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sgRzkPwgk2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sgRzkPwgk2 .google-map {
  height: 25rem;
  position: relative;
}
.cid-sgRzkPwgk2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sgRzkPwgk2 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sgRzkPwgk2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sgRzkPwgk2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgRzkPwgk2 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgRzkPwgk2 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sgRzkPwgk2 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sgRzkPwgk2 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sgRzkPwgk2 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sgRzkPwgk2 .list {
  list-style-type: none;
  padding: 0;
}
.cid-sgRzkPwgk2 H5 {
  color: #000000;
}
.cid-sgRzkPwgk2 .mbr-text {
  color: #000000;
}
.cid-sgRuDe8sE4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sgRuDe8sE4 nav.navbar {
  position: fixed;
}
.cid-sgRuDe8sE4 .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-sgRuDe8sE4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sgRuDe8sE4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sgRuDe8sE4 .dropdown-item:hover,
.cid-sgRuDe8sE4 .dropdown-item:focus {
  background: #3233fd !important;
  color: white !important;
}
.cid-sgRuDe8sE4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sgRuDe8sE4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sgRuDe8sE4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sgRuDe8sE4 .nav-link {
  position: relative;
}
.cid-sgRuDe8sE4 .container {
  display: flex;
  margin: auto;
}
.cid-sgRuDe8sE4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgRuDe8sE4 .dropdown-menu,
.cid-sgRuDe8sE4 .navbar.opened {
  background: #ededed !important;
}
.cid-sgRuDe8sE4 .nav-item:focus,
.cid-sgRuDe8sE4 .nav-link:focus {
  outline: none;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sgRuDe8sE4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sgRuDe8sE4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sgRuDe8sE4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ededed;
}
.cid-sgRuDe8sE4 .navbar.opened {
  transition: all 0.3s;
}
.cid-sgRuDe8sE4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sgRuDe8sE4 .navbar .navbar-logo img {
  width: auto;
}
.cid-sgRuDe8sE4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgRuDe8sE4 .navbar.collapsed {
  justify-content: center;
}
.cid-sgRuDe8sE4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sgRuDe8sE4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sgRuDe8sE4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgRuDe8sE4 .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-sgRuDe8sE4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sgRuDe8sE4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sgRuDe8sE4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sgRuDe8sE4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgRuDe8sE4 .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-sgRuDe8sE4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sgRuDe8sE4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sgRuDe8sE4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sgRuDe8sE4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sgRuDe8sE4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sgRuDe8sE4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sgRuDe8sE4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sgRuDe8sE4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sgRuDe8sE4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sgRuDe8sE4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgRuDe8sE4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgRuDe8sE4 .dropdown-item.active,
.cid-sgRuDe8sE4 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgRuDe8sE4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgRuDe8sE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ededed;
}
.cid-sgRuDe8sE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgRuDe8sE4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgRuDe8sE4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sgRuDe8sE4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sgRuDe8sE4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3233fd;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sgRuDe8sE4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sgRuDe8sE4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgRuDe8sE4 .navbar {
    height: 70px;
  }
  .cid-sgRuDe8sE4 .navbar.opened {
    height: auto;
  }
  .cid-sgRuDe8sE4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIjFIwlgpP {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFIwlgpP P {
  color: #767676;
}
.cid-sIjFIwlgpP .mbr-text,
.cid-sIjFIwlgpP .mbr-section-btn {
  color: #3233fd;
}
.cid-sIjFIPo8jm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFIPo8jm .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFIPo8jm H2 {
  text-align: left;
}
.cid-sIjFJ40fQ2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFJ40fQ2 .mbr-text,
.cid-sIjFJ40fQ2 blockquote {
  color: #767676;
}
.cid-sIjFJ40fQ2 .mbr-text P {
  text-align: left;
}
.cid-sIjFJm3RzP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFJm3RzP .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFJm3RzP H2 {
  text-align: left;
}
.cid-sIjFJxef4q {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFJxef4q .mbr-text,
.cid-sIjFJxef4q blockquote {
  color: #767676;
}
.cid-sIjFJxef4q .mbr-text P {
  text-align: left;
}
.cid-sIjFJHbjTg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFJHbjTg .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFJHbjTg H2 {
  text-align: left;
}
.cid-sIjFK0nwfe {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sIjFK0nwfe .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-sIjFK0nwfe .container-table {
  margin: 0 auto;
}
.cid-sIjFK0nwfe .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sIjFK0nwfe .dataTables_wrapper {
  display: block;
}
.cid-sIjFK0nwfe .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sIjFK0nwfe .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sIjFK0nwfe table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #3d405b;
  margin-bottom: 0;
}
.cid-sIjFK0nwfe table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sIjFK0nwfe table th:hover {
  background: #3d405b;
  color: #ffffff;
}
.cid-sIjFK0nwfe table td {
  border-top: 1px solid #3d405b;
}
.cid-sIjFK0nwfe table.table {
  background: #cad9f2;
}
.cid-sIjFK0nwfe .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sIjFK0nwfe .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sIjFK0nwfe .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sIjFK0nwfe .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sIjFK0nwfe .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sIjFK0nwfe .dataTables_filter {
    text-align: center;
  }
  .cid-sIjFK0nwfe .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sIjFK0nwfe .mbr-section-title {
  text-align: center;
}
.cid-sIjFKGHx3j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFKGHx3j .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFKGHx3j H2 {
  text-align: left;
}
.cid-sIjFKQOiqk {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFKQOiqk .mbr-text,
.cid-sIjFKQOiqk blockquote {
  color: #767676;
}
.cid-sIjFKQOiqk .mbr-text P {
  text-align: left;
}
.cid-sIjFL1s8tl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFL1s8tl .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFL1s8tl H2 {
  text-align: left;
}
.cid-sIjFLhSSTd {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFLhSSTd .mbr-text,
.cid-sIjFLhSSTd blockquote {
  color: #767676;
}
.cid-sIjFLhSSTd .mbr-text P {
  text-align: left;
}
.cid-sIjFLwEmuD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFLwEmuD .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFLwEmuD H2 {
  text-align: left;
}
.cid-sIjFLGisV8 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFLGisV8 .mbr-text,
.cid-sIjFLGisV8 blockquote {
  color: #767676;
}
.cid-sIjFLGisV8 .mbr-text P {
  text-align: left;
}
.cid-sIvNm0SnBI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvNm0SnBI .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIvNm0SnBI .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sIvNm0SnBI .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #3233fd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sIvNm0SnBI .mbr-text {
  color: #767676;
}
.cid-sIjFLQuj3q {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFLQuj3q .mbr-text,
.cid-sIjFLQuj3q blockquote {
  color: #767676;
}
.cid-sIjFLQuj3q .mbr-text P {
  text-align: left;
}
.cid-sIvNn4Ybu7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvNn4Ybu7 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIvNn4Ybu7 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sIvNn4Ybu7 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #3233fd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sIvNn4Ybu7 .mbr-text {
  color: #767676;
}
.cid-sIjFMbIdRW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFMbIdRW .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFMbIdRW H2 {
  text-align: left;
}
.cid-sIjFMmjcw4 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFMmjcw4 .mbr-text,
.cid-sIjFMmjcw4 blockquote {
  color: #767676;
}
.cid-sIjFMmjcw4 .mbr-text P {
  text-align: left;
}
.cid-sIjFMzYhI9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFMzYhI9 .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFMzYhI9 H2 {
  text-align: left;
}
.cid-sIvNj6JIam {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvNj6JIam .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIvNj6JIam .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sIvNj6JIam .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #3233fd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sIvNj6JIam .mbr-text {
  color: #767676;
}
.cid-sIjFMZZ3bf {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFMZZ3bf .mbr-text,
.cid-sIjFMZZ3bf blockquote {
  color: #767676;
}
.cid-sIjFMZZ3bf .mbr-text P {
  text-align: left;
}
.cid-sIjS9Eguzh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjS9Eguzh .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjS9Eguzh H2 {
  text-align: left;
}
.cid-sIjFNeUcM1 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFNeUcM1 .mbr-text,
.cid-sIjFNeUcM1 blockquote {
  color: #767676;
}
.cid-sIjFNeUcM1 .mbr-text P {
  text-align: left;
}
.cid-sIjFNrVavv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFNrVavv .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFNrVavv H2 {
  text-align: left;
}
.cid-sIjFNIKSqV {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFNIKSqV .mbr-text,
.cid-sIjFNIKSqV blockquote {
  color: #767676;
}
.cid-sIjFNIKSqV .mbr-text P {
  text-align: left;
}
.cid-sIjFNU6AqC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFNU6AqC .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFNU6AqC H2 {
  text-align: left;
}
.cid-sIjO0OwQuW {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjO0OwQuW .mbr-text,
.cid-sIjO0OwQuW blockquote {
  color: #767676;
}
.cid-sIjO0OwQuW .mbr-text P {
  text-align: left;
}
.cid-sIjFO9Ew20 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFO9Ew20 .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFO9Ew20 H2 {
  text-align: left;
}
.cid-sIjFOkDzDU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFOkDzDU .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFOkDzDU H2 {
  text-align: left;
}
.cid-sIvNeEj9nZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvNeEj9nZ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIvNeEj9nZ .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sIvNeEj9nZ .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #3233fd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sIvNeEj9nZ .mbr-text {
  color: #767676;
}
.cid-sIjFPkwyVS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFPkwyVS .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFPkwyVS H2 {
  text-align: left;
}
.cid-sIjFPtkohP {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFPtkohP .mbr-text,
.cid-sIjFPtkohP blockquote {
  color: #767676;
}
.cid-sIjFPtkohP .mbr-text P {
  text-align: left;
}
.cid-sIjFPCMroA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFPCMroA .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFPCMroA H2 {
  text-align: left;
}
.cid-sIjO99Wkcm {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjO99Wkcm .mbr-text,
.cid-sIjO99Wkcm blockquote {
  color: #767676;
}
.cid-sIjO99Wkcm .mbr-text P {
  text-align: left;
}
.cid-sIjFPQpVLF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFPQpVLF .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFPQpVLF H2 {
  text-align: left;
}
.cid-sIjFPZUH03 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFPZUH03 .mbr-text,
.cid-sIjFPZUH03 blockquote {
  color: #767676;
}
.cid-sIjFPZUH03 .mbr-text P {
  text-align: left;
}
.cid-sIjFQc0eH3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFQc0eH3 .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFQc0eH3 H2 {
  text-align: left;
}
.cid-sIjFQm2w36 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFQm2w36 .mbr-text,
.cid-sIjFQm2w36 blockquote {
  color: #767676;
}
.cid-sIjFQm2w36 .mbr-text P {
  text-align: left;
}
.cid-sIjFQzrZwh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFQzrZwh .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFQzrZwh H2 {
  text-align: left;
}
.cid-sIjFQIOdv4 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFQIOdv4 .mbr-text,
.cid-sIjFQIOdv4 blockquote {
  color: #767676;
}
.cid-sIjFQIOdv4 .mbr-text P {
  text-align: left;
}
.cid-sIjFQSxNaB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFQSxNaB .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFQSxNaB H2 {
  text-align: left;
}
.cid-sIvN9SeRGC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvN9SeRGC .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIvN9SeRGC .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sIvN9SeRGC .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #3233fd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sIvN9SeRGC .mbr-text {
  color: #767676;
}
.cid-sIjFRePumo {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFRePumo .mbr-text,
.cid-sIjFRePumo blockquote {
  color: #767676;
}
.cid-sIjFRePumo .mbr-text P {
  text-align: left;
}
.cid-sIjSt1qu0Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjSt1qu0Z .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjSt1qu0Z H2 {
  text-align: left;
}
.cid-sIjFRBglHx {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFRBglHx .mbr-text,
.cid-sIjFRBglHx blockquote {
  color: #767676;
}
.cid-sIjFRBglHx .mbr-text P {
  text-align: left;
}
.cid-sIjFRMFVat {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFRMFVat .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFRMFVat H2 {
  text-align: left;
}
.cid-sIjUnA3uBY {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjUnA3uBY .mbr-text,
.cid-sIjUnA3uBY blockquote {
  color: #767676;
}
.cid-sIjUnA3uBY .mbr-text P {
  text-align: left;
}
.cid-sIvN4AY9tZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvN4AY9tZ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIvN4AY9tZ .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sIvN4AY9tZ .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #3233fd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sIvN4AY9tZ .mbr-text {
  color: #767676;
}
.cid-sIjFSex0XV {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFSex0XV .mbr-text,
.cid-sIjFSex0XV blockquote {
  color: #767676;
}
.cid-sIjFSex0XV .mbr-text P {
  text-align: left;
}
.cid-sIvMUMmmak {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvMUMmmak .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIvMUMmmak .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sIvMUMmmak .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #3233fd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sIvMUMmmak .mbr-text {
  color: #767676;
}
.cid-sIjFSp9CJb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFSp9CJb .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFSp9CJb H2 {
  text-align: left;
}
.cid-sIjFSzKP5n {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFSzKP5n .mbr-text,
.cid-sIjFSzKP5n blockquote {
  color: #767676;
}
.cid-sIjFSzKP5n .mbr-text P {
  text-align: left;
}
.cid-sIjFSzKP5n .mbr-text {
  color: #767676;
}
.cid-sIvMykviLa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvMykviLa .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIvMykviLa .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sIvMykviLa .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #3233fd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sIvMykviLa .mbr-text {
  color: #767676;
}
.cid-sIjFTkOIhF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFTkOIhF .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFTkOIhF H2 {
  text-align: left;
}
.cid-sIjFTul4Vw {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFTul4Vw .mbr-text,
.cid-sIjFTul4Vw blockquote {
  color: #767676;
}
.cid-sIjFTul4Vw .mbr-text P {
  text-align: left;
}
.cid-sIjTPzevJK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjTPzevJK .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjTPzevJK H2 {
  text-align: left;
}
.cid-sIjFTEBSfK {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFTEBSfK .mbr-text,
.cid-sIjFTEBSfK blockquote {
  color: #767676;
}
.cid-sIjFTEBSfK .mbr-text P {
  text-align: left;
}
.cid-sIjFTZjEeU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFTZjEeU .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFTZjEeU H2 {
  text-align: left;
}
.cid-sIjFU9oAOJ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFU9oAOJ .mbr-text,
.cid-sIjFU9oAOJ blockquote {
  color: #767676;
}
.cid-sIjFU9oAOJ .mbr-text P {
  text-align: left;
}
.cid-sIjFUiO3fR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFUiO3fR .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFUiO3fR H2 {
  text-align: left;
}
.cid-sIjOzRueWI {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjOzRueWI .mbr-text,
.cid-sIjOzRueWI blockquote {
  color: #767676;
}
.cid-sIjOzRueWI .mbr-text P {
  text-align: left;
}
.cid-sIjFUwDR46 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFUwDR46 .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFUwDR46 H2 {
  text-align: left;
}
.cid-sIjFUGuxQk {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFUGuxQk .mbr-text,
.cid-sIjFUGuxQk blockquote {
  color: #767676;
}
.cid-sIjFUGuxQk .mbr-text P {
  text-align: left;
}
.cid-sIjFUP0SVJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFUP0SVJ .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFUP0SVJ H2 {
  text-align: left;
}
.cid-sIjFUZqHZc {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFUZqHZc .mbr-text,
.cid-sIjFUZqHZc blockquote {
  color: #767676;
}
.cid-sIjFUZqHZc .mbr-text P {
  text-align: left;
}
.cid-sIjFVcd7FL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFVcd7FL .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-sIjFVcd7FL H2 {
  text-align: left;
}
.cid-sIjFVmGntT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sIjFVmGntT .mbr-text,
.cid-sIjFVmGntT blockquote {
  color: #767676;
}
.cid-sIjFVmGntT .mbr-text P {
  text-align: left;
}
.cid-sIjFWwjUyc {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIjFWwjUyc .mbr-text,
.cid-sIjFWwjUyc blockquote {
  color: #767676;
}
.cid-sgRzkPwgk2 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .content {
    text-align: center;
  }
  .cid-sgRzkPwgk2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sgRzkPwgk2 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sgRzkPwgk2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sgRzkPwgk2 .google-map {
  height: 25rem;
  position: relative;
}
.cid-sgRzkPwgk2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sgRzkPwgk2 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sgRzkPwgk2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sgRzkPwgk2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgRzkPwgk2 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgRzkPwgk2 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sgRzkPwgk2 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sgRzkPwgk2 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sgRzkPwgk2 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sgRzkPwgk2 .list {
  list-style-type: none;
  padding: 0;
}
.cid-sgRzkPwgk2 H5 {
  color: #000000;
}
.cid-sgRzkPwgk2 .mbr-text {
  color: #000000;
}
.cid-sIuxtbrmo7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sIuxtbrmo7 .carousel {
    min-height: 500px;
  }
  .cid-sIuxtbrmo7 .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sIuxtbrmo7 .carousel {
    min-height: 325px;
  }
  .cid-sIuxtbrmo7 .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sIuxtbrmo7 .carousel {
    min-height: 275px;
  }
  .cid-sIuxtbrmo7 .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-sIuxtbrmo7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sIuxtbrmo7 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sIuxtbrmo7 .carousel,
.cid-sIuxtbrmo7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sIuxtbrmo7 .item-wrapper {
  width: 100%;
}
.cid-sIuxtbrmo7 .carousel-caption {
  bottom: 40px;
}
.cid-sIuxtbrmo7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sIuxtbrmo7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sIuxtbrmo7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sIuxtbrmo7 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sIuxtbrmo7 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sIuxtbrmo7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sIuxtbrmo7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sIuxtbrmo7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sIuxtbrmo7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sIuxtbrmo7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sIuxtbrmo7 .carousel-indicators li.active,
.cid-sIuxtbrmo7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sIuxtbrmo7 .carousel-indicators li::after,
.cid-sIuxtbrmo7 .carousel-indicators li::before {
  content: none;
}
.cid-sIuxtbrmo7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sIuxtbrmo7 .carousel-indicators {
    display: none !important;
  }
}
.cid-sgRuDe8sE4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sgRuDe8sE4 nav.navbar {
  position: fixed;
}
.cid-sgRuDe8sE4 .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-sgRuDe8sE4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sgRuDe8sE4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sgRuDe8sE4 .dropdown-item:hover,
.cid-sgRuDe8sE4 .dropdown-item:focus {
  background: #3233fd !important;
  color: white !important;
}
.cid-sgRuDe8sE4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sgRuDe8sE4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sgRuDe8sE4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sgRuDe8sE4 .nav-link {
  position: relative;
}
.cid-sgRuDe8sE4 .container {
  display: flex;
  margin: auto;
}
.cid-sgRuDe8sE4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgRuDe8sE4 .dropdown-menu,
.cid-sgRuDe8sE4 .navbar.opened {
  background: #ededed !important;
}
.cid-sgRuDe8sE4 .nav-item:focus,
.cid-sgRuDe8sE4 .nav-link:focus {
  outline: none;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sgRuDe8sE4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sgRuDe8sE4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sgRuDe8sE4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ededed;
}
.cid-sgRuDe8sE4 .navbar.opened {
  transition: all 0.3s;
}
.cid-sgRuDe8sE4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sgRuDe8sE4 .navbar .navbar-logo img {
  width: auto;
}
.cid-sgRuDe8sE4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgRuDe8sE4 .navbar.collapsed {
  justify-content: center;
}
.cid-sgRuDe8sE4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sgRuDe8sE4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sgRuDe8sE4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgRuDe8sE4 .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-sgRuDe8sE4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sgRuDe8sE4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sgRuDe8sE4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sgRuDe8sE4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgRuDe8sE4 .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-sgRuDe8sE4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sgRuDe8sE4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sgRuDe8sE4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sgRuDe8sE4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sgRuDe8sE4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sgRuDe8sE4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sgRuDe8sE4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sgRuDe8sE4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sgRuDe8sE4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sgRuDe8sE4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgRuDe8sE4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgRuDe8sE4 .dropdown-item.active,
.cid-sgRuDe8sE4 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgRuDe8sE4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgRuDe8sE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ededed;
}
.cid-sgRuDe8sE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgRuDe8sE4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgRuDe8sE4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sgRuDe8sE4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sgRuDe8sE4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3233fd;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sgRuDe8sE4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sgRuDe8sE4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgRuDe8sE4 .navbar {
    height: 70px;
  }
  .cid-sgRuDe8sE4 .navbar.opened {
    height: auto;
  }
  .cid-sgRuDe8sE4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIoZSfM9rN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIp0qZ24eb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIp0qZ24eb .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIp0qZ24eb .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sIp0qZ24eb .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #3233fd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sIp0qZ24eb .mbr-section-title {
  text-align: center;
}
.cid-sIvvb8im6E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sIvvb8im6E .carousel {
    min-height: 500px;
  }
  .cid-sIvvb8im6E .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sIvvb8im6E .carousel {
    min-height: 325px;
  }
  .cid-sIvvb8im6E .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sIvvb8im6E .carousel {
    min-height: 275px;
  }
  .cid-sIvvb8im6E .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-sIvvb8im6E .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sIvvb8im6E .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sIvvb8im6E .carousel,
.cid-sIvvb8im6E .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sIvvb8im6E .item-wrapper {
  width: 100%;
}
.cid-sIvvb8im6E .carousel-caption {
  bottom: 40px;
}
.cid-sIvvb8im6E .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sIvvb8im6E .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sIvvb8im6E .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sIvvb8im6E .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sIvvb8im6E .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sIvvb8im6E .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sIvvb8im6E .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sIvvb8im6E .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sIvvb8im6E .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sIvvb8im6E .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sIvvb8im6E .carousel-indicators li.active,
.cid-sIvvb8im6E .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sIvvb8im6E .carousel-indicators li::after,
.cid-sIvvb8im6E .carousel-indicators li::before {
  content: none;
}
.cid-sIvvb8im6E .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sIvvb8im6E .carousel-indicators {
    display: none !important;
  }
}
.cid-sIvHCFbG6V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvHCFbG6V ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sIvHCFbG6V li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sIvHCFbG6V ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sIvHCFbG6V H3 {
  text-align: center;
}
.cid-sIvH5LnDjD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIvH5LnDjD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sIvH5LnDjD .row {
  flex-direction: row-reverse;
}
.cid-sIvH5LnDjD img {
  width: 100%;
}
.cid-sIvGk4Kd4y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIvGk4Kd4y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sIvGk4Kd4y .row {
  flex-direction: row-reverse;
}
.cid-sIvGk4Kd4y img {
  width: 100%;
}
.cid-sIvGicFybt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIvGicFybt .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #3233fd;
  margin-left: 1rem;
}
.cid-sIvGicFybt .panel-group {
  border: none;
}
.cid-sIvGicFybt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sIvGicFybt .panel-body,
.cid-sIvGicFybt .card-header {
  padding: 1rem 0;
}
.cid-sIvGicFybt .panel-title-edit {
  color: #000000;
}
.cid-sIvGicFybt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sgRzkPwgk2 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .content {
    text-align: center;
  }
  .cid-sgRzkPwgk2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sgRzkPwgk2 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sgRzkPwgk2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sgRzkPwgk2 .google-map {
  height: 25rem;
  position: relative;
}
.cid-sgRzkPwgk2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sgRzkPwgk2 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sgRzkPwgk2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sgRzkPwgk2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgRzkPwgk2 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgRzkPwgk2 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sgRzkPwgk2 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sgRzkPwgk2 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sgRzkPwgk2 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sgRzkPwgk2 .list {
  list-style-type: none;
  padding: 0;
}
.cid-sgRzkPwgk2 H5 {
  color: #000000;
}
.cid-sgRzkPwgk2 .mbr-text {
  color: #000000;
}
.cid-sgRuDe8sE4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sgRuDe8sE4 nav.navbar {
  position: fixed;
}
.cid-sgRuDe8sE4 .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-sgRuDe8sE4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sgRuDe8sE4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sgRuDe8sE4 .dropdown-item:hover,
.cid-sgRuDe8sE4 .dropdown-item:focus {
  background: #3233fd !important;
  color: white !important;
}
.cid-sgRuDe8sE4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sgRuDe8sE4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sgRuDe8sE4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sgRuDe8sE4 .nav-link {
  position: relative;
}
.cid-sgRuDe8sE4 .container {
  display: flex;
  margin: auto;
}
.cid-sgRuDe8sE4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgRuDe8sE4 .dropdown-menu,
.cid-sgRuDe8sE4 .navbar.opened {
  background: #ededed !important;
}
.cid-sgRuDe8sE4 .nav-item:focus,
.cid-sgRuDe8sE4 .nav-link:focus {
  outline: none;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sgRuDe8sE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sgRuDe8sE4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sgRuDe8sE4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sgRuDe8sE4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ededed;
}
.cid-sgRuDe8sE4 .navbar.opened {
  transition: all 0.3s;
}
.cid-sgRuDe8sE4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sgRuDe8sE4 .navbar .navbar-logo img {
  width: auto;
}
.cid-sgRuDe8sE4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgRuDe8sE4 .navbar.collapsed {
  justify-content: center;
}
.cid-sgRuDe8sE4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sgRuDe8sE4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sgRuDe8sE4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgRuDe8sE4 .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-sgRuDe8sE4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgRuDe8sE4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sgRuDe8sE4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sgRuDe8sE4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sgRuDe8sE4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgRuDe8sE4 .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-sgRuDe8sE4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sgRuDe8sE4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgRuDe8sE4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sgRuDe8sE4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sgRuDe8sE4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sgRuDe8sE4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sgRuDe8sE4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sgRuDe8sE4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sgRuDe8sE4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sgRuDe8sE4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sgRuDe8sE4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgRuDe8sE4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgRuDe8sE4 .dropdown-item.active,
.cid-sgRuDe8sE4 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgRuDe8sE4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgRuDe8sE4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgRuDe8sE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ededed;
}
.cid-sgRuDe8sE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgRuDe8sE4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgRuDe8sE4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sgRuDe8sE4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sgRuDe8sE4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3233fd;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgRuDe8sE4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgRuDe8sE4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgRuDe8sE4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sgRuDe8sE4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sgRuDe8sE4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgRuDe8sE4 .navbar {
    height: 70px;
  }
  .cid-sgRuDe8sE4 .navbar.opened {
    height: auto;
  }
  .cid-sgRuDe8sE4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIvwnR0RmD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sIvwnR0RmD .carousel {
    min-height: 500px;
  }
  .cid-sIvwnR0RmD .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sIvwnR0RmD .carousel {
    min-height: 325px;
  }
  .cid-sIvwnR0RmD .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sIvwnR0RmD .carousel {
    min-height: 275px;
  }
  .cid-sIvwnR0RmD .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-sIvwnR0RmD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sIvwnR0RmD .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sIvwnR0RmD .carousel,
.cid-sIvwnR0RmD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sIvwnR0RmD .item-wrapper {
  width: 100%;
}
.cid-sIvwnR0RmD .carousel-caption {
  bottom: 40px;
}
.cid-sIvwnR0RmD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sIvwnR0RmD .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sIvwnR0RmD .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sIvwnR0RmD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sIvwnR0RmD .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sIvwnR0RmD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sIvwnR0RmD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sIvwnR0RmD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sIvwnR0RmD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sIvwnR0RmD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sIvwnR0RmD .carousel-indicators li.active,
.cid-sIvwnR0RmD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sIvwnR0RmD .carousel-indicators li::after,
.cid-sIvwnR0RmD .carousel-indicators li::before {
  content: none;
}
.cid-sIvwnR0RmD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sIvwnR0RmD .carousel-indicators {
    display: none !important;
  }
}
.cid-sIvxawK2SG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIvxawK2SG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sIvxawK2SG .row {
  flex-direction: row-reverse;
}
.cid-sIvxawK2SG img {
  width: 100%;
}
.cid-sIvBZap56X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIvBZap56X .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sIvBZap56X .row {
  flex-direction: row-reverse;
}
.cid-sIvBZap56X img {
  width: 100%;
}
.cid-sIvyjslkmf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvDo3y8uZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIvyCPwUzp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIvyCPwUzp .counter-container ol {
  margin-bottom: 0;
}
.cid-sIvyCPwUzp .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sIvyWC4cIK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvz6q03pF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvz6q03pF .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sIvz6q03pF .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sIvz6q03pF .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #3233fd;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sIvCfayrRT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvCfayrRT .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sIvCfayrRT .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sIvCfayrRT .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sIvCfayrRT .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sIvCfayrRT .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIvCfayrRT .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sIvCfayrRT .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sIvCfayrRT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sIvzP9nY1N {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvA0mpxzN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvAcHQAEL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvAcHQAEL .counter-container ol {
  margin-bottom: 0;
}
.cid-sIvAcHQAEL .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sIvApyrn7u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sIvAzL1dCg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sIvAzL1dCg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sIvAzL1dCg .row {
  flex-direction: row-reverse;
}
.cid-sIvAzL1dCg img {
  width: 100%;
}
.cid-sgRzkPwgk2 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .content {
    text-align: center;
  }
  .cid-sgRzkPwgk2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sgRzkPwgk2 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sgRzkPwgk2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sgRzkPwgk2 .google-map {
  height: 25rem;
  position: relative;
}
.cid-sgRzkPwgk2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sgRzkPwgk2 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sgRzkPwgk2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sgRzkPwgk2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgRzkPwgk2 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgRzkPwgk2 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sgRzkPwgk2 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sgRzkPwgk2 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sgRzkPwgk2 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sgRzkPwgk2 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sgRzkPwgk2 .list {
  list-style-type: none;
  padding: 0;
}
.cid-sgRzkPwgk2 H5 {
  color: #000000;
}
.cid-sgRzkPwgk2 .mbr-text {
  color: #000000;
}
