body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-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: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #4479d9 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4479d9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #4479d9 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1f4a98 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4479d9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4479d9;
  border-color: #4479d9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4479d9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: '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: #4479d9 !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: #4479d9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4479d9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4479d9;
}
.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: #4479d9;
  border-bottom-color: #4479d9;
}
.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: #4479d9 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%234479d9' %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-sGqJCkDPPL {
    background-image: url("../../../asset/images/numbers-and-finance-by-ken-teegardin-cc.-1024x683.jpg");
}
.cid-sGqJCkDPPL .mbr-section-title {
  color: #ffffff;
}
.cid-sGvr8DgJbl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGvr8DgJbl .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sGvr8DgJbl .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sGvr8DgJbl .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sGvr8DgJbl .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sGvr8DgJbl .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sGvr8DgJbl .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sGvr8DgJbl .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sGvr8DgJbl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sH5bbVKFTg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH5bbVKFTg .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sH5bbVKFTg .row {
    flex-direction: column-reverse;
  }
  .cid-sH5bbVKFTg .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sH5bbVKFTg .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sH5bbVKFTg .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sH5bbVKFTg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sGvzi2AOSP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sGvzi2AOSP .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-sGvzi2AOSP .container {
    max-width: 1400px;
  }
}
.cid-sGvzi2AOSP .card {
  margin: auto;
}
.cid-sGvzi2AOSP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-sGvzi2AOSP .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sGvzi2AOSP .row {
  justify-content: center;
}
.cid-sGqKq433Jj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGqKq433Jj .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sGqKq433Jj .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sGqKq433Jj .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-sGqKq433Jj .panel-body,
.cid-sGqKq433Jj .card-header {
  padding: 1rem 0;
}
.cid-sGqKq433Jj .panel-title-edit {
  color: #000000;
}
.cid-sGvw4lzDPl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGvw4lzDPl .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sGvw4lzDPl .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sGvw4lzDPl .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-sGvw4lzDPl .panel-body,
.cid-sGvw4lzDPl .card-header {
  padding: 1rem 0;
}
.cid-sGvw4lzDPl .panel-title-edit {
  color: #000000;
}
.cid-sGvHbkzZPX {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sGvHbkzZPX .carousel-item {
  justify-content: center;
}
.cid-sGvHbkzZPX .carousel-item.active,
.cid-sGvHbkzZPX .carousel-item-next,
.cid-sGvHbkzZPX .carousel-item-prev {
  display: flex;
}
.cid-sGvHbkzZPX .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sGvHbkzZPX .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sGvHbkzZPX .carousel-control-next span {
  padding-left: 5px;
}
.cid-sGvHbkzZPX .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sGvHbkzZPX .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sGvHbkzZPX .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sGvHbkzZPX .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sGwkGitE4K {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sGwkGitE4K .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sGwkGitE4K .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sGwkGitE4K .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sGwkGitE4K .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sGwkGitE4K .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sGwkGitE4K .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sGwkGitE4K .carousel-control,
.cid-sGwkGitE4K .close {
  background: #1b1b1b;
}
.cid-sGwkGitE4K .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sGwkGitE4K .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sGwkGitE4K .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sGwkGitE4K .carousel-control-next span {
  margin-left: 5px;
}
.cid-sGwkGitE4K .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sGwkGitE4K .close::before {
  content: '\e91a';
}
.cid-sGwkGitE4K .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sGwkGitE4K .carousel-control {
  display: flex;
  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-sGwkGitE4K .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGwkGitE4K .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sGwkGitE4K .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sGwkGitE4K .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sGwkGitE4K .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-sGwkGitE4K .carousel-indicators li.active,
.cid-sGwkGitE4K .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sGwkGitE4K .carousel-indicators li::after,
.cid-sGwkGitE4K .carousel-indicators li::before {
  content: none;
}
.cid-sGwkGitE4K .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sGwkGitE4K .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sGwkGitE4K .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sGwkGitE4K .carousel-indicators {
    display: none;
  }
}
.cid-sGwkGitE4K .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sGwkGitE4K .carousel-inner > .active {
  display: block;
}
.cid-sGwkGitE4K .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGwkGitE4K .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sGwkGitE4K .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sGwkGitE4K .carousel-control,
  .cid-sGwkGitE4K .carousel-indicators,
  .cid-sGwkGitE4K .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sGwkGitE4K .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sGwkGitE4K .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sGwkGitE4K .carousel-indicators .active,
.cid-sGwkGitE4K .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sGwkGitE4K .carousel-indicators .active {
  background: #fff;
}
.cid-sGwkGitE4K .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sGwkGitE4K .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sGwkGitE4K .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sGwkGitE4K .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sGwkGitE4K .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sGwkGitE4K .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sGwkGitE4K .carousel {
  width: 100%;
}
.cid-sGwkGitE4K .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sGwkGitE4K .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sGwkGitE4K .modal.fade .modal-dialog,
.cid-sGwkGitE4K .modal.in .modal-dialog {
  transform: none;
}
.cid-sGwkGitE4K .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sGwkGitE4K H6 {
  text-align: center;
}
.cid-sGqLXY8hg0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sGqLXY8hg0 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sGqLXY8hg0 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sGqLXY8hg0 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sGqLXY8hg0 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sGqLXY8hg0 .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sGqLXY8hg0 .bg-instagram:hover {
  background: #bd005c;
}
.cid-sGqLXY8hg0 .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-sGqLXY8hg0 .bg-linkedin:hover {
  background: #005582;
}
.cid-sGqLXY8hg0 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-sGqLXY8hg0 .bg-youtube:hover {
  background: #cc0000;
}
.cid-sGqLXY8hg0 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sGqLXY8hg0 [class^="socicon-"]:before,
.cid-sGqLXY8hg0 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sGqM5U88El {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGqM5U88El .row {
    flex-direction: column-reverse;
  }
  .cid-sGqM5U88El .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sGqM5U88El .google-map {
  height: 100%;
  position: relative;
}
.cid-sGqM5U88El .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sGqM5U88El .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sGqM5U88El .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sGqM5U88El .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sGqM5U88El .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sGqM5U88El .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-sGqM5U88El .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-sGqM5U88El .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sGqM5U88El .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sGqM5U88El .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #4479d9;
}
.cid-sGw0Fy67Da {
}
.cid-sGw0Fy67Da .mbr-section-title {
  color: #ffffff;
}
.cid-sGw0FyJaGd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGw0FyJaGd .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sGw0FyJaGd .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sGw0FyJaGd .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sGw0FyJaGd .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sGw0FyJaGd .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sGw0FyJaGd .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sGw0FyJaGd .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sGw0FyJaGd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sGw0FzhIlL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sGw0FzhIlL .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-sGw0FzhIlL .container {
    max-width: 1400px;
  }
}
.cid-sGw0FzhIlL .card {
  margin: auto;
}
.cid-sGw0FzhIlL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-sGw0FzhIlL .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sGw0FzhIlL .row {
  justify-content: center;
}
.cid-sGwBX0ZFjS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sGwBX0ZFjS img,
.cid-sGwBX0ZFjS .item-img {
  width: 100%;
}
.cid-sGwBX0ZFjS .item:focus,
.cid-sGwBX0ZFjS span:focus {
  outline: none;
}
.cid-sGwBX0ZFjS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sGwBX0ZFjS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sGwBX0ZFjS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sGwBX0ZFjS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sGwBX0ZFjS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sGwBX0ZFjS .mbr-section-title {
  color: #232323;
}
.cid-sGwBX0ZFjS .mbr-text,
.cid-sGwBX0ZFjS .mbr-section-btn {
  text-align: left;
}
.cid-sGwBX0ZFjS .item-title {
  text-align: center;
}
.cid-sGwBX0ZFjS .item-subtitle {
  text-align: left;
}
.cid-sGw0FA81bH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGw0FA81bH .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sGw0FA81bH .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sGw0FA81bH .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-sGw0FA81bH .panel-body,
.cid-sGw0FA81bH .card-header {
  padding: 1rem 0;
}
.cid-sGw0FA81bH .panel-title-edit {
  color: #000000;
}
.cid-sGw0FBLyGe {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sGw0FBLyGe .carousel-item {
  justify-content: center;
}
.cid-sGw0FBLyGe .carousel-item.active,
.cid-sGw0FBLyGe .carousel-item-next,
.cid-sGw0FBLyGe .carousel-item-prev {
  display: flex;
}
.cid-sGw0FBLyGe .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sGw0FBLyGe .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sGw0FBLyGe .carousel-control-next span {
  padding-left: 5px;
}
.cid-sGw0FBLyGe .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sGw0FBLyGe .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sGw0FBLyGe .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sGw0FBLyGe .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sGwj4GqzxG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sGwj4GqzxG .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sGwj4GqzxG .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sGwj4GqzxG .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sGwj4GqzxG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sGwj4GqzxG .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sGwj4GqzxG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sGwj4GqzxG .carousel-control,
.cid-sGwj4GqzxG .close {
  background: #1b1b1b;
}
.cid-sGwj4GqzxG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sGwj4GqzxG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sGwj4GqzxG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sGwj4GqzxG .carousel-control-next span {
  margin-left: 5px;
}
.cid-sGwj4GqzxG .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sGwj4GqzxG .close::before {
  content: '\e91a';
}
.cid-sGwj4GqzxG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sGwj4GqzxG .carousel-control {
  display: flex;
  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-sGwj4GqzxG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGwj4GqzxG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sGwj4GqzxG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sGwj4GqzxG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sGwj4GqzxG .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-sGwj4GqzxG .carousel-indicators li.active,
.cid-sGwj4GqzxG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sGwj4GqzxG .carousel-indicators li::after,
.cid-sGwj4GqzxG .carousel-indicators li::before {
  content: none;
}
.cid-sGwj4GqzxG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sGwj4GqzxG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sGwj4GqzxG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sGwj4GqzxG .carousel-indicators {
    display: none;
  }
}
.cid-sGwj4GqzxG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sGwj4GqzxG .carousel-inner > .active {
  display: block;
}
.cid-sGwj4GqzxG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGwj4GqzxG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sGwj4GqzxG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sGwj4GqzxG .carousel-control,
  .cid-sGwj4GqzxG .carousel-indicators,
  .cid-sGwj4GqzxG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sGwj4GqzxG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sGwj4GqzxG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sGwj4GqzxG .carousel-indicators .active,
.cid-sGwj4GqzxG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sGwj4GqzxG .carousel-indicators .active {
  background: #fff;
}
.cid-sGwj4GqzxG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sGwj4GqzxG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sGwj4GqzxG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sGwj4GqzxG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sGwj4GqzxG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sGwj4GqzxG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sGwj4GqzxG .carousel {
  width: 100%;
}
.cid-sGwj4GqzxG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sGwj4GqzxG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sGwj4GqzxG .modal.fade .modal-dialog,
.cid-sGwj4GqzxG .modal.in .modal-dialog {
  transform: none;
}
.cid-sGwj4GqzxG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sGwj4GqzxG H6 {
  text-align: center;
}
.cid-sGw0FD0Deb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sGw0FD0Deb .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sGw0FD0Deb .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sGw0FD0Deb .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sGw0FD0Deb .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sGw0FD0Deb .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sGw0FD0Deb .bg-instagram:hover {
  background: #bd005c;
}
.cid-sGw0FD0Deb .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-sGw0FD0Deb .bg-linkedin:hover {
  background: #005582;
}
.cid-sGw0FD0Deb .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-sGw0FD0Deb .bg-youtube:hover {
  background: #cc0000;
}
.cid-sGw0FD0Deb .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sGw0FD0Deb [class^="socicon-"]:before,
.cid-sGw0FD0Deb [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sGw0FDKf8S {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGw0FDKf8S .row {
    flex-direction: column-reverse;
  }
  .cid-sGw0FDKf8S .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sGw0FDKf8S .google-map {
  height: 100%;
  position: relative;
}
.cid-sGw0FDKf8S .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sGw0FDKf8S .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sGw0FDKf8S .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sGw0FDKf8S .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sGw0FDKf8S .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sGw0FDKf8S .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-sGw0FDKf8S .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-sGw0FDKf8S .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sGw0FDKf8S .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sGw0FDKf8S .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #4479d9;
}
.cid-sGHIC2WCeT {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-image: url("../../../asset/images/networking-940x350.jpg");
}
.cid-sGHRNoJeKj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sGHRNoJeKj img,
.cid-sGHRNoJeKj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sGHRNoJeKj .item:focus,
.cid-sGHRNoJeKj span:focus {
  outline: none;
}
.cid-sGHRNoJeKj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sGHRNoJeKj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sGHRNoJeKj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sGHRNoJeKj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sGHRNoJeKj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sGHRNoJeKj .mbr-section-title {
  color: #232323;
}
.cid-sGHRNoJeKj .mbr-text,
.cid-sGHRNoJeKj .mbr-section-btn {
  text-align: left;
}
.cid-sGHRNoJeKj .item-title {
  text-align: left;
}
.cid-sGHRNoJeKj .item-subtitle {
  text-align: left;
}
.cid-sGHVPsDtQ3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sGHVPsDtQ3 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sGHVPsDtQ3 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sGHVPsDtQ3 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sGHVPsDtQ3 .wrapper {
  padding: 30px 0;
}
.cid-sGHVPsDtQ3 .mbr-section-title {
  color: #fafafa;
}
.cid-sGHVPsDtQ3 .mbr-text,
.cid-sGHVPsDtQ3 .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-sGHVPsDtQ3 H3 {
  color: #000000;
}
.cid-sGHYpg1J8P {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sGHYpg1J8P .carousel-item {
  justify-content: center;
}
.cid-sGHYpg1J8P .carousel-item.active,
.cid-sGHYpg1J8P .carousel-item-next,
.cid-sGHYpg1J8P .carousel-item-prev {
  display: flex;
}
.cid-sGHYpg1J8P .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sGHYpg1J8P .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sGHYpg1J8P .carousel-control-next span {
  padding-left: 5px;
}
.cid-sGHYpg1J8P .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sGHYpg1J8P .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sGHYpg1J8P .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sGHYpg1J8P .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sGH94d72rJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../asset/images/pexels-photo-442150-1-1280x853.jpg");
}
.cid-sGHb5KvUpb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sGHb5KvUpb .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sGHb5KvUpb .card {
    margin-bottom: 2rem!important;
  }
  .cid-sGHb5KvUpb .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sGHb5KvUpb .link-wrap {
    align-items: center;
  }
}
.cid-sGHb5KvUpb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sGHjAx2IWk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sGHjAx2IWk img,
.cid-sGHjAx2IWk .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sGHjAx2IWk .item:focus,
.cid-sGHjAx2IWk span:focus {
  outline: none;
}
.cid-sGHjAx2IWk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sGHjAx2IWk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sGHjAx2IWk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sGHjAx2IWk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sGHjAx2IWk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sGHjAx2IWk .mbr-section-title {
  color: #232323;
}
.cid-sGHjAx2IWk .mbr-text,
.cid-sGHjAx2IWk .mbr-section-btn {
  text-align: center;
}
.cid-sGHjAx2IWk .item-title {
  text-align: center;
}
.cid-sGHjAx2IWk .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-sGHxtyQ6tu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sGHxtyQ6tu .carousel-item {
  justify-content: center;
}
.cid-sGHxtyQ6tu .carousel-item.active,
.cid-sGHxtyQ6tu .carousel-item-next,
.cid-sGHxtyQ6tu .carousel-item-prev {
  display: flex;
}
.cid-sGHxtyQ6tu .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sGHxtyQ6tu .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sGHxtyQ6tu .carousel-control-next span {
  padding-left: 5px;
}
.cid-sGHxtyQ6tu .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sGHxtyQ6tu .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sGHxtyQ6tu .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sGHxtyQ6tu .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sGHxRTw2N1 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sGHxRTw2N1 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sGHxRTw2N1 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sGHxRTw2N1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sGHxRTw2N1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sGHxRTw2N1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sGHxRTw2N1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sGHxRTw2N1 .carousel-control,
.cid-sGHxRTw2N1 .close {
  background: #1b1b1b;
}
.cid-sGHxRTw2N1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sGHxRTw2N1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sGHxRTw2N1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sGHxRTw2N1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sGHxRTw2N1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sGHxRTw2N1 .close::before {
  content: '\e91a';
}
.cid-sGHxRTw2N1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sGHxRTw2N1 .carousel-control {
  display: flex;
  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-sGHxRTw2N1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGHxRTw2N1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sGHxRTw2N1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sGHxRTw2N1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sGHxRTw2N1 .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-sGHxRTw2N1 .carousel-indicators li.active,
.cid-sGHxRTw2N1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sGHxRTw2N1 .carousel-indicators li::after,
.cid-sGHxRTw2N1 .carousel-indicators li::before {
  content: none;
}
.cid-sGHxRTw2N1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sGHxRTw2N1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sGHxRTw2N1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sGHxRTw2N1 .carousel-indicators {
    display: none;
  }
}
.cid-sGHxRTw2N1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sGHxRTw2N1 .carousel-inner > .active {
  display: block;
}
.cid-sGHxRTw2N1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGHxRTw2N1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sGHxRTw2N1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sGHxRTw2N1 .carousel-control,
  .cid-sGHxRTw2N1 .carousel-indicators,
  .cid-sGHxRTw2N1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sGHxRTw2N1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sGHxRTw2N1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sGHxRTw2N1 .carousel-indicators .active,
.cid-sGHxRTw2N1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sGHxRTw2N1 .carousel-indicators .active {
  background: #fff;
}
.cid-sGHxRTw2N1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sGHxRTw2N1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sGHxRTw2N1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sGHxRTw2N1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sGHxRTw2N1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sGHxRTw2N1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sGHxRTw2N1 .carousel {
  width: 100%;
}
.cid-sGHxRTw2N1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sGHxRTw2N1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sGHxRTw2N1 .modal.fade .modal-dialog,
.cid-sGHxRTw2N1 .modal.in .modal-dialog {
  transform: none;
}
.cid-sGHxRTw2N1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sGHxRTw2N1 H6 {
  text-align: center;
}
.cid-sGId5yWXJG {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../asset/images/windows-server-logo-1000x529.png");
}
.cid-sGId5zrThx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGId5zrThx img,
.cid-sGId5zrThx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sGId5zrThx .item:focus,
.cid-sGId5zrThx span:focus {
  outline: none;
}
.cid-sGId5zrThx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sGId5zrThx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sGId5zrThx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sGId5zrThx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sGId5zrThx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sGId5zrThx .mbr-section-title {
  color: #232323;
}
.cid-sGId5zrThx .mbr-text,
.cid-sGId5zrThx .mbr-section-btn {
  text-align: left;
}
.cid-sGId5zrThx .item-title {
  text-align: left;
}
.cid-sGId5zrThx .item-subtitle {
  text-align: left;
}
.cid-sGImTClSEg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sGImTClSEg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sGImTClSEg .row {
  flex-direction: row-reverse;
}
.cid-sGImTClSEg img {
  width: 100%;
}
.cid-sGIx1Tjd9r {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sGId5zTZ3Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sGId5zTZ3Y .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sGId5zTZ3Y .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sGId5zTZ3Y .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sGId5zTZ3Y .wrapper {
  padding: 30px 0;
}
.cid-sGId5zTZ3Y .mbr-section-title {
  color: #fafafa;
}
.cid-sGId5zTZ3Y .mbr-text,
.cid-sGId5zTZ3Y .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-sGId5zTZ3Y H3 {
  color: #000000;
}
.cid-sGId5Ah9kl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sGId5Ah9kl .carousel-item {
  justify-content: center;
}
.cid-sGId5Ah9kl .carousel-item.active,
.cid-sGId5Ah9kl .carousel-item-next,
.cid-sGId5Ah9kl .carousel-item-prev {
  display: flex;
}
.cid-sGId5Ah9kl .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sGId5Ah9kl .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sGId5Ah9kl .carousel-control-next span {
  padding-left: 5px;
}
.cid-sGId5Ah9kl .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sGId5Ah9kl .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sGId5Ah9kl .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sGId5Ah9kl .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sH4mSfxmPS {
  display: flex;
  background-image: url("../../../asset/images/web-design-development-blog-2-1920x1080.jpg");
}
.cid-sH4mSfxmPS .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sH4mSfxmPS .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sH4mSfxmPS {
    align-items: flex-end;
  }
  .cid-sH4mSfxmPS .row {
    justify-content: flex-start;
  }
  .cid-sH4mSfxmPS .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sH4mSfxmPS .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sH4mSfxmPS {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sH4mSfxmPS .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sH4mSfxmPS .content-wrap {
    width: 100%;
  }
}
.cid-sH4pEkm9FT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sH4pEkm9FT .container {
    max-width: 1400px;
  }
}
.cid-sH4pEkm9FT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sH4pEkm9FT .card-wrapper {
  margin-top: 3rem;
}
.cid-sH4pEkm9FT .row {
  justify-content: center;
}
.cid-sH4pqGznDv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH4pqGznDv .card-wrapper {
  padding: 4rem;
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-sH4pqGznDv .row {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .cid-sH4pqGznDv .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-sH4pqGznDv .card-wrapper {
    padding: 1rem;
  }
}
.cid-sH4pqGznDv ul {
  list-style: none;
}
.cid-sH4pqGznDv li {
  position: relative;
}
.cid-sH4pqGznDv li:before {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  content: "\e908";
  font-family: 'Moririse2' !important;
  color: #4479d9;
  font-size: 0.8rem;
}
.cid-sH4pqGznDv .mbr-section-btn {
  width: 100%;
}
.cid-sH4pqGznDv .btn {
  width: 100%;
}
.cid-sH4pa5oN49 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sH4pa5oN49 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sH4pa5oN49 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sH4pa5oN49 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-sH4pa5oN49 .panel-body,
.cid-sH4pa5oN49 .card-header {
  padding: 1rem 0;
}
.cid-sH4pa5oN49 .panel-title-edit {
  color: #000000;
}
.cid-sH4vjrJ7Bx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sH4vjrJ7Bx .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sH4vjrJ7Bx .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sH4vjrJ7Bx .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-sH4vjrJ7Bx .panel-body,
.cid-sH4vjrJ7Bx .card-header {
  padding: 1rem 0;
}
.cid-sH4vjrJ7Bx .panel-title-edit {
  color: #000000;
}
.cid-sHaethceLi {
  padding-top: 2rem;
  padding-bottom: 0rem;
}
.cid-sHaethceLi .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sHaethceLi .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sHaethceLi .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sHaethceLi .wrapper {
  padding: 30px 0;
}
.cid-sHaethceLi .mbr-section-title {
  color: #fafafa;
}
.cid-sHaethceLi .mbr-text,
.cid-sHaethceLi .mbr-section-btn {
  color: #ffffff;
}
.cid-sH4Lwkdy4f {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sH4Lwkdy4f .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sH4Lwkdy4f .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sH4Lwkdy4f .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sH4Lwkdy4f .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sH4Lwkdy4f .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sH4Lwkdy4f .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sH4Lwkdy4f .carousel-control,
.cid-sH4Lwkdy4f .close {
  background: #1b1b1b;
}
.cid-sH4Lwkdy4f .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sH4Lwkdy4f .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sH4Lwkdy4f .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sH4Lwkdy4f .carousel-control-next span {
  margin-left: 5px;
}
.cid-sH4Lwkdy4f .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sH4Lwkdy4f .close::before {
  content: '\e91a';
}
.cid-sH4Lwkdy4f .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sH4Lwkdy4f .carousel-control {
  display: flex;
  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-sH4Lwkdy4f .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sH4Lwkdy4f .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sH4Lwkdy4f .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sH4Lwkdy4f .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sH4Lwkdy4f .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-sH4Lwkdy4f .carousel-indicators li.active,
.cid-sH4Lwkdy4f .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sH4Lwkdy4f .carousel-indicators li::after,
.cid-sH4Lwkdy4f .carousel-indicators li::before {
  content: none;
}
.cid-sH4Lwkdy4f .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sH4Lwkdy4f .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sH4Lwkdy4f .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sH4Lwkdy4f .carousel-indicators {
    display: none;
  }
}
.cid-sH4Lwkdy4f .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sH4Lwkdy4f .carousel-inner > .active {
  display: block;
}
.cid-sH4Lwkdy4f .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sH4Lwkdy4f .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sH4Lwkdy4f .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sH4Lwkdy4f .carousel-control,
  .cid-sH4Lwkdy4f .carousel-indicators,
  .cid-sH4Lwkdy4f .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sH4Lwkdy4f .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sH4Lwkdy4f .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sH4Lwkdy4f .carousel-indicators .active,
.cid-sH4Lwkdy4f .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sH4Lwkdy4f .carousel-indicators .active {
  background: #fff;
}
.cid-sH4Lwkdy4f .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sH4Lwkdy4f .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sH4Lwkdy4f .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sH4Lwkdy4f .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sH4Lwkdy4f .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sH4Lwkdy4f .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sH4Lwkdy4f .carousel {
  width: 100%;
}
.cid-sH4Lwkdy4f .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sH4Lwkdy4f .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sH4Lwkdy4f .modal.fade .modal-dialog,
.cid-sH4Lwkdy4f .modal.in .modal-dialog {
  transform: none;
}
.cid-sH4Lwkdy4f .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sH4Lwkdy4f H6 {
  text-align: center;
}
.cid-sH4LFd6NLY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sH4LFd6NLY .carousel-item {
  justify-content: center;
}
.cid-sH4LFd6NLY .carousel-item.active,
.cid-sH4LFd6NLY .carousel-item-next,
.cid-sH4LFd6NLY .carousel-item-prev {
  display: flex;
}
.cid-sH4LFd6NLY .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sH4LFd6NLY .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sH4LFd6NLY .carousel-control-next span {
  padding-left: 5px;
}
.cid-sH4LFd6NLY .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sH4LFd6NLY .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sH4LFd6NLY .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sH4LFd6NLY .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sH4PtDD2Bt {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../asset/images/1569558767-1920x600.jpeg");
}
.cid-sH4RgylmxW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sH4RgylmxW .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sH4RgylmxW .card {
    margin-bottom: 2rem!important;
  }
  .cid-sH4RgylmxW .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sH4RgylmxW .link-wrap {
    align-items: center;
  }
}
.cid-sH4RgylmxW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sH4T5dxSTX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH4T5dxSTX img,
.cid-sH4T5dxSTX .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-sH4T5dxSTX .item:focus,
.cid-sH4T5dxSTX span:focus {
  outline: none;
}
.cid-sH4T5dxSTX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sH4T5dxSTX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sH4T5dxSTX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sH4T5dxSTX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sH4T5dxSTX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sH4T5dxSTX .mbr-section-title {
  color: #232323;
}
.cid-sH4T5dxSTX .mbr-text,
.cid-sH4T5dxSTX .mbr-section-btn {
  text-align: center;
}
.cid-sH4T5dxSTX .item-title {
  text-align: center;
}
.cid-sH4T5dxSTX .item-subtitle {
  text-align: left;
}
.cid-sH4X1UCgZg {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sH4X1UCgZg ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sH4X1UCgZg li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sH4X1UCgZg ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4479d9;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sHadOHM74I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sHadOHM74I .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sHadOHM74I .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sHadOHM74I .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sHadOHM74I .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sHadOHM74I .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sHadOHM74I .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sHadOHM74I .carousel-control,
.cid-sHadOHM74I .close {
  background: #1b1b1b;
}
.cid-sHadOHM74I .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sHadOHM74I .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sHadOHM74I .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sHadOHM74I .carousel-control-next span {
  margin-left: 5px;
}
.cid-sHadOHM74I .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sHadOHM74I .close::before {
  content: '\e91a';
}
.cid-sHadOHM74I .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sHadOHM74I .carousel-control {
  display: flex;
  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-sHadOHM74I .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sHadOHM74I .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sHadOHM74I .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sHadOHM74I .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sHadOHM74I .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-sHadOHM74I .carousel-indicators li.active,
.cid-sHadOHM74I .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sHadOHM74I .carousel-indicators li::after,
.cid-sHadOHM74I .carousel-indicators li::before {
  content: none;
}
.cid-sHadOHM74I .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sHadOHM74I .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sHadOHM74I .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sHadOHM74I .carousel-indicators {
    display: none;
  }
}
.cid-sHadOHM74I .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sHadOHM74I .carousel-inner > .active {
  display: block;
}
.cid-sHadOHM74I .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sHadOHM74I .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sHadOHM74I .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sHadOHM74I .carousel-control,
  .cid-sHadOHM74I .carousel-indicators,
  .cid-sHadOHM74I .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sHadOHM74I .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sHadOHM74I .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sHadOHM74I .carousel-indicators .active,
.cid-sHadOHM74I .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sHadOHM74I .carousel-indicators .active {
  background: #fff;
}
.cid-sHadOHM74I .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sHadOHM74I .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sHadOHM74I .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sHadOHM74I .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sHadOHM74I .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sHadOHM74I .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sHadOHM74I .carousel {
  width: 100%;
}
.cid-sHadOHM74I .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sHadOHM74I .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sHadOHM74I .modal.fade .modal-dialog,
.cid-sHadOHM74I .modal.in .modal-dialog {
  transform: none;
}
.cid-sHadOHM74I .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sHadOHM74I H6 {
  text-align: center;
}
.cid-sH4ZZZcRg8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sH4ZZZcRg8 .carousel-item {
  justify-content: center;
}
.cid-sH4ZZZcRg8 .carousel-item.active,
.cid-sH4ZZZcRg8 .carousel-item-next,
.cid-sH4ZZZcRg8 .carousel-item-prev {
  display: flex;
}
.cid-sH4ZZZcRg8 .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sH4ZZZcRg8 .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sH4ZZZcRg8 .carousel-control-next span {
  padding-left: 5px;
}
.cid-sH4ZZZcRg8 .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sH4ZZZcRg8 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sH4ZZZcRg8 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sH4ZZZcRg8 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sH51UcB4KK {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../asset/images/getty-1075599562-hpy86b-1920x1080.jpg");
}
.cid-sH53o60feG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH52pCb8sd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH52pCb8sd .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sH52pCb8sd .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sH52pCb8sd .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sH52pCb8sd .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sH52pCb8sd .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sH52pCb8sd .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sH52pCb8sd .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sH52pCb8sd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sH52q18cKE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH52q18cKE .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sH52q18cKE .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sH52q18cKE .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sH52q18cKE .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sH52q18cKE .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sH52q18cKE .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sH52q18cKE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sH52qpjXbV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH52qpjXbV .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sH52qpjXbV .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sH52qpjXbV .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sH52qpjXbV .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sH52qpjXbV .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sH52qpjXbV .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sH52qpjXbV .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sH52qpjXbV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sH52qNLMPc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH52qNLMPc .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sH52qNLMPc .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sH52qNLMPc .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sH52qNLMPc .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sH52qNLMPc .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sH52qNLMPc .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sH52qNLMPc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sH52rj1lwd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH52rj1lwd .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sH52rj1lwd .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sH52rj1lwd .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sH52rj1lwd .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sH52rj1lwd .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sH52rj1lwd .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sH52rj1lwd .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sH52rj1lwd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sH52rIemPK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sH52rIemPK .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sH52rIemPK .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sH52rIemPK .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sH52rIemPK .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sH52rIemPK .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sH52rIemPK .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sH52rIemPK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sH58vUQ8dC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sH58vUQ8dC .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sH58vUQ8dC .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sH58vUQ8dC .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sH58vUQ8dC .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sH58vUQ8dC .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sH58vUQ8dC .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sH58vUQ8dC .carousel-control,
.cid-sH58vUQ8dC .close {
  background: #1b1b1b;
}
.cid-sH58vUQ8dC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sH58vUQ8dC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sH58vUQ8dC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sH58vUQ8dC .carousel-control-next span {
  margin-left: 5px;
}
.cid-sH58vUQ8dC .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sH58vUQ8dC .close::before {
  content: '\e91a';
}
.cid-sH58vUQ8dC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sH58vUQ8dC .carousel-control {
  display: flex;
  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-sH58vUQ8dC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sH58vUQ8dC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sH58vUQ8dC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sH58vUQ8dC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sH58vUQ8dC .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-sH58vUQ8dC .carousel-indicators li.active,
.cid-sH58vUQ8dC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sH58vUQ8dC .carousel-indicators li::after,
.cid-sH58vUQ8dC .carousel-indicators li::before {
  content: none;
}
.cid-sH58vUQ8dC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sH58vUQ8dC .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sH58vUQ8dC .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sH58vUQ8dC .carousel-indicators {
    display: none;
  }
}
.cid-sH58vUQ8dC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sH58vUQ8dC .carousel-inner > .active {
  display: block;
}
.cid-sH58vUQ8dC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sH58vUQ8dC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sH58vUQ8dC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sH58vUQ8dC .carousel-control,
  .cid-sH58vUQ8dC .carousel-indicators,
  .cid-sH58vUQ8dC .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sH58vUQ8dC .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sH58vUQ8dC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sH58vUQ8dC .carousel-indicators .active,
.cid-sH58vUQ8dC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sH58vUQ8dC .carousel-indicators .active {
  background: #fff;
}
.cid-sH58vUQ8dC .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sH58vUQ8dC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sH58vUQ8dC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sH58vUQ8dC .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sH58vUQ8dC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sH58vUQ8dC .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sH58vUQ8dC .carousel {
  width: 100%;
}
.cid-sH58vUQ8dC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sH58vUQ8dC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sH58vUQ8dC .modal.fade .modal-dialog,
.cid-sH58vUQ8dC .modal.in .modal-dialog {
  transform: none;
}
.cid-sH58vUQ8dC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sH58vUQ8dC H6 {
  text-align: center;
}
.cid-sH58wEa7oD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sH58wEa7oD .carousel-item {
  justify-content: center;
}
.cid-sH58wEa7oD .carousel-item.active,
.cid-sH58wEa7oD .carousel-item-next,
.cid-sH58wEa7oD .carousel-item-prev {
  display: flex;
}
.cid-sH58wEa7oD .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sH58wEa7oD .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sH58wEa7oD .carousel-control-next span {
  padding-left: 5px;
}
.cid-sH58wEa7oD .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sH58wEa7oD .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sH58wEa7oD .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sH58wEa7oD .user_image {
    width: 100%;
    height: auto;
  }
}
