body {
  font-family: Syne;
}
.display-1 {
  font-family: 'Syne', sans-serif;
  font-size: 6.25rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.8125rem;
}
.display-2 {
  font-family: 'Syne', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  line-height: 1.14;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  line-height: 1.41;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.375rem;
    font-size: calc( 2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.14 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.41 * (1.04375rem + (1.125 - 1.04375) * ((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: #5d61ee !important;
}
.bg-success {
  background-color: #c298d3 !important;
}
.bg-info {
  background-color: #85c0d9 !important;
}
.bg-warning {
  background-color: #ffe885 !important;
}
.bg-danger {
  background-color: #e6c63b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5d61ee !important;
  border-color: #5d61ee !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: #171ddd !important;
  border-color: #171ddd !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #171ddd !important;
  border-color: #171ddd !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #57b8e0 !important;
  border-color: #57b8e0 !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: #2390bd !important;
  border-color: #2390bd !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2390bd !important;
  border-color: #2390bd !important;
}
.btn-info,
.btn-info:active {
  background-color: #85c0d9 !important;
  border-color: #85c0d9 !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: #439ec4 !important;
  border-color: #439ec4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #439ec4 !important;
  border-color: #439ec4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #c298d3 !important;
  border-color: #c298d3 !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: #9e5bb9 !important;
  border-color: #9e5bb9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #9e5bb9 !important;
  border-color: #9e5bb9 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
  color: #856c00 !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: #2e2600 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #856c00 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !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: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !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: #000000 !important;
  border-color: #000000 !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: #5d61ee;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #171ddd !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: #5d61ee !important;
  border-color: #5d61ee !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #57b8e0;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2390bd !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: #57b8e0 !important;
  border-color: #57b8e0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #85c0d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #439ec4 !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: #85c0d9 !important;
  border-color: #85c0d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c298d3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #9e5bb9 !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: #c298d3 !important;
  border-color: #c298d3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe885;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd82e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #856c00 !important;
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b39617 !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: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.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: #000000 !important;
  border-color: #000000 !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: #5d61ee !important;
}
.text-secondary {
  color: #57b8e0 !important;
}
.text-success {
  color: #c298d3 !important;
}
.text-info {
  color: #85c0d9 !important;
}
.text-warning {
  color: #ffe885 !important;
}
.text-danger {
  color: #e6c63b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #161bcf !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #2186b0 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #9851b4 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3b96bd !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffd51f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a68b15 !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: #5d61ee;
}
.nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #85c0d9;
}
.alert-warning {
  background-color: #ffe885;
}
.alert-danger {
  background-color: #e6c63b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5d61ee;
  border-color: #5d61ee;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #5d61ee;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdfbf0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #5d61ee !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #5d61ee;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5d61ee;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #5d61ee;
}
.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: #5d61ee;
  border-bottom-color: #5d61ee;
}
.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: #5d61ee !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: #57b8e0 !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='%235d61ee' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 100%;
  width: 86%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 801px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1025px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1201px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1441px) {
  .container {
    max-width: 1300px;
  }
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 190px;
  border-radius: 0;
  padding: 17px 48px 15px 50px;
  line-height: 1.33;
  font-weight: 500 !important;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
.mbr-section-btn .btn-primary {
  color: #ffffff !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary:hover {
  color: #000 !important;
  background: 0 0 !important;
}
.mbr-section-btn .btn-primary-outline {
  color: #000000 !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: 0 0;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary-outline:hover {
  color: #fff !important;
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
b {
  font-weight: 600 !important;
}
.cid-t0wqmA6MyP .navbar-dropdown {
  position: relative !important;
}
.cid-t0wqmA6MyP .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-t0wqmA6MyP .dropdown-menu {
  background: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-t0wqmA6MyP .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-t0wqmA6MyP .dropdown-item:hover {
  background-position: right !important;
}
.cid-t0wqmA6MyP .dropdown-item:hover:after {
  color: #5d61ee;
}
.cid-t0wqmA6MyP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0wqmA6MyP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0wqmA6MyP .nav-link {
  position: relative;
}
.cid-t0wqmA6MyP .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-t0wqmA6MyP .dropdown-menu,
.cid-t0wqmA6MyP .navbar.opened {
  background: #ffffff !important;
}
.cid-t0wqmA6MyP .nav-item:focus,
.cid-t0wqmA6MyP .nav-link:focus {
  outline: none;
}
.cid-t0wqmA6MyP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0wqmA6MyP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0wqmA6MyP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0wqmA6MyP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0wqmA6MyP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0wqmA6MyP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0wqmA6MyP .navbar {
  transition: all 0.4s ease-out;
  box-sizing: content-box;
  min-height: 60px;
  position: static !important;
  background-color: #ffffff;
}
.cid-t0wqmA6MyP .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-t0wqmA6MyP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0wqmA6MyP .navbar .navbar-logo img {
  width: auto;
}
.cid-t0wqmA6MyP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0wqmA6MyP .navbar.collapsed {
  justify-content: center;
}
.cid-t0wqmA6MyP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0wqmA6MyP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0wqmA6MyP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0wqmA6MyP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0wqmA6MyP .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-t0wqmA6MyP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0wqmA6MyP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0wqmA6MyP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0wqmA6MyP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0wqmA6MyP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0wqmA6MyP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0wqmA6MyP .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-t0wqmA6MyP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0wqmA6MyP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0wqmA6MyP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0wqmA6MyP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0wqmA6MyP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0wqmA6MyP .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0wqmA6MyP .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0wqmA6MyP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0wqmA6MyP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-t0wqmA6MyP .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-t0wqmA6MyP .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP .navbar {
    padding: 5px 73px !important;
  }
}
.cid-t0wqmA6MyP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0wqmA6MyP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0wqmA6MyP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0wqmA6MyP .dropdown-item.active,
.cid-t0wqmA6MyP .dropdown-item:active {
  background-color: transparent;
}
.cid-t0wqmA6MyP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0wqmA6MyP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0wqmA6MyP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0wqmA6MyP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0wqmA6MyP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0wqmA6MyP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0wqmA6MyP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0wqmA6MyP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0wqmA6MyP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0wqmA6MyP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0wqmA6MyP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0wqmA6MyP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0wqmA6MyP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0wqmA6MyP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0wqmA6MyP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0wqmA6MyP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0wqmA6MyP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0wqmA6MyP .navbar-dropdown {
  padding: 0;
}
.cid-t0wqmA6MyP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0wqmA6MyP .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-t0wqmA6MyP .navbar {
    height: 70px;
  }
  .cid-t0wqmA6MyP .navbar.opened {
    height: auto;
  }
  .cid-t0wqmA6MyP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0wqmA6MyP .navbar-short {
  background-color: #ffffff !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-t0wqmA6MyP .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-t0wqmA6MyP .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-t0wqmA6MyP .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-t0wqmA6MyP .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .navbar-nav {
    padding-top: 18px;
  }
}
.cid-t0wqmA6MyP .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-t0wqmA6MyP .nav-item .nav-link:hover {
  background-position: right;
}
.cid-t0wqmA6MyP .nav-item .nav-link:hover:after {
  color: #5d61ee;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-t0wqmA6MyP .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .nav-item {
    width: 100%;
  }
  .cid-t0wqmA6MyP .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-t0wqmA6MyP .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-t0wqmA6MyP .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-t0wqmA6MyP .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-t0wqmA6MyP .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #57b8e0 !important;
  }
}
.cid-t0wqmA6MyP .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-t0wqmA6MyP .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-t0wqmA6MyP .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-t0wqmA6MyP .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-t0wqmA6MyP .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-t0wqmA6MyP .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-t0wqmA6MyP .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-t0wqmA6MyP .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-t0wqmA6MyP .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-t0wqmA6MyP .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-t0wqmA6MyP .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #ffffff;
  }
  .cid-t0wqmA6MyP .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #000000 0, #000000 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #000000 66.66666667%, #000000 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-t0wqmA6MyP .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-t0wqmA6MyP .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-t0wqmA6MyP .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-t0wqmA6MyP .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .offcanvas_box {
    display: none;
  }
}
.cid-t0wqmA6MyP .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-t0wqmA6MyP .list li {
  display: flex;
  align-items: center;
}
.cid-t0wqmA6MyP .list a {
  display: flex;
  align-items: center;
}
.cid-t0wqmA6MyP .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-t0wqmA6MyP .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-t0wqmA6MyP .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-t0wqoprohH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1c7eb;
}
.cid-t0wqoprohH .row {
  flex-direction: row-reverse;
}
.cid-t0wqoprohH .container-fluid {
  padding: 0;
}
.cid-t0wqoprohH .row {
  align-items: stretch;
  width: 100%;
}
.cid-t0wqoprohH .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wqoprohH .col-text {
    width: 50%;
  }
}
.cid-t0wqoprohH .text-container {
  padding: 30% 4% 33% 8%;
}
@media (min-width: 768px) {
  .cid-t0wqoprohH .text-container {
    padding: 18% 35% 20% 7%;
  }
}
@media (min-width: 881px) {
  .cid-t0wqoprohH .text-container {
    padding: 14% 35% 15.3% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-t0wqoprohH .text-container {
    padding: 15% 15% 17% 20%;
    padding: 15% 20% 17% 15%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wqoprohH .text-container {
    padding: 15.3% 35% 17.3% 20%;
    padding: 15.3% 20% 17.3% 35%;
  }
}
.cid-t0wqoprohH .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-t0wqoprohH .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-t0wqoprohH .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-t0wqoprohH .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wqoprohH .btn-container {
  width: 100%;
}
.cid-t0wqoprohH .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0wqoprohH .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-t0wqoprohH .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-t0wqoprohH .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-t0wqoprohH .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-t0wqoprohH .img-container img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-t0wresclGx {
  background-image: url("https://mobirise.com/extensions/networkm5/assets/images/frame-1.jpg");
}
.cid-t0wresclGx .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-t0wresclGx .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-t0wresclGx .mbr-section-btn {
  margin-top: 30px;
}
.cid-t0wqCAHc8a {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e1c7eb;
}
.cid-t0wqCAHc8a .container-fluid {
  padding: 0 !important;
}
.cid-t0wqCAHc8a .row {
  width: 100%!important;
  max-width: 100%!important;
  padding-left: calc((100% - 1300px)/ 2) !important;
}
@media (max-width: 1440px) {
  .cid-t0wqCAHc8a .row {
    padding-left: calc((100% - 1100px)/ 2) !important;
  }
}
@media (max-width: 1200px) {
  .cid-t0wqCAHc8a .row {
    padding-left: calc((100% - 960px)/ 2) !important;
  }
}
@media (max-width: 1024px) {
  .cid-t0wqCAHc8a .row {
    padding-left: calc((100% - 768px)/ 2) !important;
  }
}
@media (max-width: 800px) {
  .cid-t0wqCAHc8a .row {
    padding-left: calc((100% - 86%)/ 2) !important;
  }
}
@media (max-width: 880px) and (min-width: 768px) {
  .cid-t0wqCAHc8a .row {
    padding-right: 25px !important;
  }
}
.cid-t0wqCAHc8a img,
.cid-t0wqCAHc8a .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0wqCAHc8a .item:focus,
.cid-t0wqCAHc8a span:focus {
  outline: none;
}
.cid-t0wqCAHc8a .item {
  cursor: pointer;
}
.cid-t0wqCAHc8a .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  overflow: hidden;
}
.cid-t0wqCAHc8a .item-wrapper:hover img {
  transform: scale(1);
}
.cid-t0wqCAHc8a .item-wrapper:hover .img-overlay {
  opacity: 0.7;
}
.cid-t0wqCAHc8a .item-wrapper:hover .item-title,
.cid-t0wqCAHc8a .item-wrapper:hover .mbr-text {
  background-position: right;
}
.cid-t0wqCAHc8a .item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-t0wqCAHc8a .item-img img {
  width: 100%;
  transform: scale(1.05);
  transition: transform .6s ease;
  transform-style: preserve-3d;
}
.cid-t0wqCAHc8a .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-out;
}
.cid-t0wqCAHc8a .mbr-text {
  color: #000000;
  margin-top: 24px;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-t0wqCAHc8a .item-title {
  color: #000000;
  text-align: left;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-t0wqCAHc8a .item-content {
  position: absolute;
  width: 100%;
  max-width: 100%;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 20px 40px 23px;
}
@media (max-width: 1440px) {
  .cid-t0wqCAHc8a .item-content {
    padding: 20px 20px 23px;
  }
}
.cid-t0wqCAHc8a .item-content a {
  color: inherit;
  -webkit-text-fill-color: currentColor;
}
.cid-t0wqCAHc8a .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0wqCAHc8a .item-title,
.cid-t0wqCAHc8a .mbr-section-btn {
  text-align: center;
}
.cid-t0wsgZJPQ9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e1c7eb;
}
.cid-t0wsgZJPQ9 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-t0wsgZJPQ9 .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-t0wsgZJPQ9 .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0wqEkT2xT {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #e1c7eb;
}
.cid-t0wqEkT2xT .box {
  margin-bottom: 15px;
}
.cid-t0wqEkT2xT .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-t0wqEkT2xT .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-t0wqEkT2xT .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-t0wqEkT2xT .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-t0wqEkT2xT .mbr-media {
    max-height: 432px;
  }
}
.cid-t0wqEkT2xT .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t0wqEkT2xT .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-t0wqEkT2xT .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-t0wqEkT2xT .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-t0wqEkT2xT .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t0wqEkT2xT .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t0wqEkT2xT .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t0wqEkT2xT .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;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t0wqEkT2xT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t0wqEkT2xT .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-t0wqEkT2xT .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0wqEkT2xT .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-t0wqEkT2xT .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-t0wqEkT2xT .item-img {
  overflow: hidden;
}
.cid-t0wqEkT2xT .item-img img {
  width: 100%;
}
.cid-t0wqEkT2xT .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-t0wqEkT2xT .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}
.cid-t0wqGxnN3f {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #e1c7eb;
}
.cid-t0wqGxnN3f .row {
  flex-direction: row-reverse;
}
.cid-t0wqGxnN3f .container-fluid {
  padding: 0;
}
.cid-t0wqGxnN3f .row {
  align-items: stretch;
  width: 100%;
}
.cid-t0wqGxnN3f .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wqGxnN3f .col-text {
    width: 50%;
  }
}
.cid-t0wqGxnN3f .text-container {
  padding: 30% 4% 33% 8%;
}
@media (min-width: 768px) {
  .cid-t0wqGxnN3f .text-container {
    padding: 18% 35% 20% 7%;
  }
}
@media (min-width: 881px) {
  .cid-t0wqGxnN3f .text-container {
    padding: 14% 35% 15.3% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-t0wqGxnN3f .text-container {
    padding: 15% 15% 17% 20%;
    padding: 15% 20% 17% 15%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wqGxnN3f .text-container {
    padding: 15.3% 35% 17.3% 20%;
    padding: 15.3% 20% 17.3% 35%;
  }
}
.cid-t0wqGxnN3f .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-t0wqGxnN3f .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-t0wqGxnN3f .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-t0wqGxnN3f .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wqGxnN3f .btn-container {
  width: 100%;
}
.cid-t0wqGxnN3f .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0wqGxnN3f .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-t0wqGxnN3f .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-t0wqGxnN3f .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-t0wqGxnN3f .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-t0wqGxnN3f .img-container img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-t0wqIF4o9U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-t0wqIF4o9U .mbr-text {
  color: #ffffff;
}
.cid-t0wqIF4o9U .media-container-row .mbr-text {
  color: #000000;
}
.cid-t0wqmA6MyP .navbar-dropdown {
  position: relative !important;
}
.cid-t0wqmA6MyP .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-t0wqmA6MyP .dropdown-menu {
  background: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .dropdown-menu {
    padding: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP .dropdown-menu {
    padding: 23px 0;
    box-shadow: -0.968px 3.881px 24.94px 4.06px rgba(195, 196, 249, 0.28);
  }
}
.cid-t0wqmA6MyP .dropdown-item {
  padding: 0 28px 0 38px !important;
  min-width: 240px;
  color: transparent;
  background: transparent !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 200% 100% !important;
  background-position: left !important;
  transition: background-position 0.4s ease;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .dropdown-item {
    padding: 4px 0 4px 15px !important;
    text-align: left !important;
  }
}
.cid-t0wqmA6MyP .dropdown-item:hover {
  background-position: right !important;
}
.cid-t0wqmA6MyP .dropdown-item:hover:after {
  color: #5d61ee;
}
.cid-t0wqmA6MyP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0wqmA6MyP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0wqmA6MyP .nav-link {
  position: relative;
}
.cid-t0wqmA6MyP .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-t0wqmA6MyP .dropdown-menu,
.cid-t0wqmA6MyP .navbar.opened {
  background: #ffffff !important;
}
.cid-t0wqmA6MyP .nav-item:focus,
.cid-t0wqmA6MyP .nav-link:focus {
  outline: none;
}
.cid-t0wqmA6MyP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0wqmA6MyP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0wqmA6MyP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0wqmA6MyP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0wqmA6MyP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0wqmA6MyP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0wqmA6MyP .navbar {
  transition: all 0.4s ease-out;
  box-sizing: content-box;
  min-height: 60px;
  position: static !important;
  background-color: #ffffff;
}
.cid-t0wqmA6MyP .navbar.opened {
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .navbar.opened {
    border-bottom: 1px solid #F3F3F3;
  }
}
.cid-t0wqmA6MyP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0wqmA6MyP .navbar .navbar-logo img {
  width: auto;
}
.cid-t0wqmA6MyP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0wqmA6MyP .navbar.collapsed {
  justify-content: center;
}
.cid-t0wqmA6MyP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0wqmA6MyP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t0wqmA6MyP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0wqmA6MyP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0wqmA6MyP .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-t0wqmA6MyP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0wqmA6MyP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0wqmA6MyP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0wqmA6MyP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0wqmA6MyP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0wqmA6MyP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0wqmA6MyP .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-t0wqmA6MyP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0wqmA6MyP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0wqmA6MyP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0wqmA6MyP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0wqmA6MyP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0wqmA6MyP .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0wqmA6MyP .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0wqmA6MyP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0wqmA6MyP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0 2rem 0 0;
}
@media (max-width: 480px) {
  .cid-t0wqmA6MyP .navbar {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-t0wqmA6MyP .navbar {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP .navbar {
    padding: 5px 73px !important;
  }
}
.cid-t0wqmA6MyP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 2rem 0 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0wqmA6MyP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0wqmA6MyP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0wqmA6MyP .dropdown-item.active,
.cid-t0wqmA6MyP .dropdown-item:active {
  background-color: transparent;
}
.cid-t0wqmA6MyP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0wqmA6MyP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0wqmA6MyP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0wqmA6MyP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0wqmA6MyP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0wqmA6MyP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0wqmA6MyP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0wqmA6MyP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0wqmA6MyP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0wqmA6MyP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0wqmA6MyP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0wqmA6MyP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0wqmA6MyP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0wqmA6MyP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0wqmA6MyP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0wqmA6MyP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0wqmA6MyP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0wqmA6MyP .navbar-dropdown {
  padding: 0;
}
.cid-t0wqmA6MyP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0wqmA6MyP .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-t0wqmA6MyP .navbar {
    height: 70px;
  }
  .cid-t0wqmA6MyP .navbar.opened {
    height: auto;
  }
  .cid-t0wqmA6MyP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0wqmA6MyP .navbar-short {
  background-color: #ffffff !important;
  min-height: 60px;
}
@media (max-width: 480px) {
  .cid-t0wqmA6MyP .navbar-short {
    padding: 5px 7% !important;
  }
}
@media (min-width: 481px) {
  .cid-t0wqmA6MyP .navbar-short {
    padding: 5px 40px !important;
  }
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP .navbar-short {
    padding: 5px 73px !important;
    box-shadow: 0 2px 25px 4px rgba(195, 196, 249, 0.35) !important;
  }
}
.cid-t0wqmA6MyP .container-fluid {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .container-fluid {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .container-fluid .show {
    padding-bottom: 30px;
  }
}
.cid-t0wqmA6MyP .navbar-collapse {
  margin-left: auto;
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .navbar-collapse.show {
    padding: 0 0 24px;
  }
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .navbar-nav {
    padding-top: 18px;
  }
}
.cid-t0wqmA6MyP .nav-item .nav-link {
  color: transparent;
  margin: 12px 22px !important;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.4s ease;
}
.cid-t0wqmA6MyP .nav-item .nav-link:hover {
  background-position: right;
}
.cid-t0wqmA6MyP .nav-item .nav-link:hover:after {
  color: #5d61ee;
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .nav-item .show {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .cid-t0wqmA6MyP .nav-item:first-child .nav-link {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .nav-item {
    width: 100%;
  }
  .cid-t0wqmA6MyP .nav-item .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
    justify-content: flex-start;
  }
  .cid-t0wqmA6MyP .nav-item .nav-link:after {
    margin-left: auto !important;
  }
  .cid-t0wqmA6MyP .nav-item .nav-link .dropdown-item {
    text-align: left;
  }
}
.cid-t0wqmA6MyP .mbr-section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP .mbr-section-btn {
    margin-left: 36px !important;
    margin-right: -0.6rem;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-t0wqmA6MyP .mbr-section-btn .btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .navbar-toggler:not(.collapsed) .hamburger span {
    background-color: #57b8e0 !important;
  }
}
.cid-t0wqmA6MyP .navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-t0wqmA6MyP nav.navbar {
    flex-wrap: nowrap;
    border-radius: 0 !important;
  }
  .cid-t0wqmA6MyP .offcanvas {
    padding: 178px 5% 35px 122px;
    width: 557px;
    background-color: #ffffff;
  }
  .cid-t0wqmA6MyP .offcanvas .btn-close {
    position: absolute;
    top: 58px;
    right: 87px;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 100%;
  }
  .cid-t0wqmA6MyP .offcanvas-body {
    text-align: left;
    padding: 0;
  }
  .cid-t0wqmA6MyP .offcanvas-body .mbr-text {
    margin-top: 15px;
  }
  .cid-t0wqmA6MyP .offcanvas-body .email-text {
    margin-top: 8px;
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-t0wqmA6MyP .offcanvas-body .email-text a {
    background-position: center !important;
    background-size: 100% !important;
    transition: all 0.2s ease-out !important;
    background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
  .cid-t0wqmA6MyP .offcanvas-body .offcanvas_contact {
    margin-top: 60px;
  }
  .cid-t0wqmA6MyP .offcanvas-body .text_widget a {
    margin-bottom: 8px;
  }
  .cid-t0wqmA6MyP .offcanvas_box {
    width: 75px !important;
    margin-left: 24px !important;
    text-align: right;
  }
  .cid-t0wqmA6MyP .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 41px;
    height: 17px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
    color: #ffffff;
  }
  .cid-t0wqmA6MyP .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
    position: absolute;
    overflow: hidden;
    right: 0;
    width: 39px;
    height: 1px;
    background-image: linear-gradient(-90deg, #000000 0, #000000 33.33333333%, transparent 33.33333333%, transparent 66.66666667%, #000000 66.66666667%, #000000 100%) !important;
    background-size: 300% 100%;
    background-position: left;
    transition: background-position 0.7s ease-out;
  }
  .cid-t0wqmA6MyP .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 1px;
  }
  .cid-t0wqmA6MyP .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    width: 24px;
    top: 6px;
    transition: background-position 0.8s ease-out;
  }
  .cid-t0wqmA6MyP .offcanvas_box button.btn_offcanvas:hover .hamburger-offcanvas span {
    background-position: right;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cid-t0wqmA6MyP .offcanvas {
    padding: 12% 8% 5% 8%;
  }
}
@media (max-width: 991px) {
  .cid-t0wqmA6MyP .offcanvas_box {
    display: none;
  }
}
.cid-t0wqmA6MyP .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-t0wqmA6MyP .list li {
  display: flex;
  align-items: center;
}
.cid-t0wqmA6MyP .list a {
  display: flex;
  align-items: center;
}
.cid-t0wqmA6MyP .text_widget {
  color: #000000;
  margin-bottom: 0;
}
.cid-t0wqmA6MyP .text_widget a {
  background-position: center !important;
  background-size: 100% !important;
  transition: all 0.2s ease-out !important;
}
.cid-t0wqmA6MyP .text_widget a:hover {
  background: linear-gradient(90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.cid-t0wuJygDiT {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0wuJygDiT .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-t0wuJygDiT .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-t0wuJygDiT .mbr-section-btn {
  margin-top: 30px;
}
.cid-t0wuLidXtH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-t0wuLidXtH .row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 55px;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cid-t0wuLidXtH .col-card {
    width: 100% !important;
  }
}
.cid-t0wuLidXtH .card-title {
  color: #000000;
  margin-right: 41%;
}
@media (max-width: 680px) {
  .cid-t0wuLidXtH .card-title {
    margin-right: 10%;
  }
}
.cid-t0wuLidXtH .mbr-text {
  color: #000000;
  margin: 16px 60px 0 0;
}
.cid-t0wuLidXtH .icon-link-box {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
  position: relative;
  z-index: 5;
}
.cid-t0wuLidXtH .card-wrapper {
  height: 100%;
  padding-left: 5%;
  overflow: visible;
}
@media (min-width: 1441px) {
  .cid-t0wuLidXtH .card-wrapper {
    padding-left: 18%;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cid-t0wuLidXtH .card-wrapper {
    padding-right: 35%;
    padding-left: 0;
  }
}
@media (max-width: 880px) {
  .cid-t0wuLidXtH .card-wrapper {
    padding: 0 15% 0 10%;
  }
}
@media (max-width: 767px) {
  .cid-t0wuLidXtH .card-wrapper {
    padding: 0 0 0 5%;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cid-t0wuLidXtH .card-2,
  .cid-t0wuLidXtH .card-3 {
    padding-top: 15%;
  }
}
@media (max-width: 880px) {
  .cid-t0wuLidXtH .card-2,
  .cid-t0wuLidXtH .card-3 {
    padding: 20% 15% 0 10%;
  }
}
@media (max-width: 767px) {
  .cid-t0wuLidXtH .card-2,
  .cid-t0wuLidXtH .card-3 {
    padding: 40% 0 0 5%;
  }
}
.cid-t0wuLidXtH .card-box {
  position: relative;
  z-index: 2;
  overflow: visible;
}
.cid-t0wuLidXtH .card-number {
  display: flex;
  align-items: center;
  position: absolute;
  pointer-events: none;
  left: -68px;
  top: -53%;
  height: 276px;
  margin: 10px 0;
  z-index: -2;
  opacity: 0.2;
  font-size: 230px;
  color: transparent;
  background: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%);
  -webkit-background-clip: text;
}
@media (max-width: 680px) {
  .cid-t0wuLidXtH .card-number {
    font-size: 265px;
    left: -40px;
    top: -65%;
  }
}
.cid-t0wuLidXtH .card-link {
  position: relative;
  z-index: 5;
  padding-left: 95px;
  transition: all 0.4s cubic-bezier(0, 0.68, 0.58, 1);
}
.cid-t0wuLidXtH .card-link:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: #57b8e0;
  transition: width 0.4s cubic-bezier(0, 0.68, 0.58, 1);
}
.cid-t0wuLidXtH .card-link:hover {
  padding-left: 0;
  padding-right: 95px;
}
.cid-t0wuLidXtH .card-link:hover:after {
  width: 0;
}
.cid-t0wuK2C6Mg {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: linear-gradient(90deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
}
.cid-t0wuK2C6Mg .label-text {
  color: #ffffff;
  margin: 10px 0 7px;
}
.cid-t0wuK2C6Mg .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t0wuK2C6Mg .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-t0wuK2C6Mg .mbr-section-btn {
  margin-top: 30px;
}
.cid-t0wuK2C6Mg .mbr-section-btn .btn-transform {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0wuK2C6Mg .mbr-section-btn .btn-white-outline {
  color: #ffffff !important;
  border: 1px solid #ffffff;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t0wuK2C6Mg .mbr-section-btn .btn-white-outline:hover {
  color: #fff !important;
  background: #ffffff !important;
}
.cid-t0wuK2C6Mg .mbr-section-btn .btn-white-outline:hover .btn-transform {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-t0wv2rHEsc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wv2rHEsc .container-fluid {
  padding: 0;
}
.cid-t0wv2rHEsc .row {
  align-items: center;
  width: 100%;
  padding-left: calc((100% - 1300px)/ 2) !important;
}
@media (max-width: 1400px) {
  .cid-t0wv2rHEsc .row {
    align-items: flex-start;
  }
}
@media (max-width: 1440px) {
  .cid-t0wv2rHEsc .row {
    padding-left: calc((100% - 1100px)/ 2) !important;
  }
}
@media (max-width: 1200px) {
  .cid-t0wv2rHEsc .row {
    padding-left: calc((100% - 960px)/ 2) !important;
  }
}
@media (max-width: 1024px) {
  .cid-t0wv2rHEsc .row {
    padding-left: calc((100% - 768px)/ 2) !important;
  }
}
@media (max-width: 800px) {
  .cid-t0wv2rHEsc .row {
    padding-left: calc((100% - 86%)/ 2) !important;
  }
}
.cid-t0wv2rHEsc .col-tabs .tab-content .tabs-row {
  padding: 0 !important;
}
.cid-t0wv2rHEsc .col-text {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-t0wv2rHEsc .col-text {
    width: 45%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wv2rHEsc .col-text {
    width: 34%;
  }
}
.cid-t0wv2rHEsc .text-container {
  padding: 0 30px 0 0;
}
@media (min-width: 768px) {
  .cid-t0wv2rHEsc .text-container {
    padding: 0 10% 0 0;
  }
}
.cid-t0wv2rHEsc .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t0wv2rHEsc .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-t0wv2rHEsc .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 20px;
}
.cid-t0wv2rHEsc .col-img {
  width: 100%;
  padding-top: 50px;
}
@media (min-width: 1024px) {
  .cid-t0wv2rHEsc .col-img {
    width: 55%;
    padding-top: 0;
  }
}
@media (min-width: 1441px) {
  .cid-t0wv2rHEsc .col-img {
    width: 66%;
  }
}
.cid-t0wv2rHEsc .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.cid-t0wv2rHEsc .img-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
.cid-t0wv2rHEsc .col-tabs {
  padding: 10px 0 0 0;
}
@media (min-width: 768px) {
  .cid-t0wv2rHEsc .col-tabs {
    padding: 3% 25% 0 0;
  }
}
@media (min-width: 1025px) {
  .cid-t0wv2rHEsc .col-tabs {
    padding: 17px 0 0 0;
  }
}
.cid-t0wv2rHEsc .nav-tabs .nav-item.open .nav-link:focus,
.cid-t0wv2rHEsc .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-t0wv2rHEsc .nav-tabs {
  flex-wrap: nowrap;
  padding-bottom: 8px;
  border-bottom: 1px solid #57b8e0;
}
@media (max-width: 680px) {
  .cid-t0wv2rHEsc .nav-tabs {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cid-t0wv2rHEsc .nav-item {
  position: relative;
  color: #000000;
}
.cid-t0wv2rHEsc .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  color: #000000 !important;
}
.cid-t0wv2rHEsc .nav-tabs .nav-link:after {
  content: '';
  width: 0;
  left: 0;
  height: 1px;
  position: absolute;
  bottom: -9px;
  background-color: #000000;
  transition: width 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (max-width: 680px) {
  .cid-t0wv2rHEsc .nav-tabs .nav-link:after {
    bottom: -2px;
  }
}
.cid-t0wv2rHEsc .nav-tabs .nav-item:not(:first-child) {
  margin-left: 68px;
}
@media (max-width: 680px) {
  .cid-t0wv2rHEsc .nav-tabs .nav-item {
    margin: 0 0 12px 0 !important;
    width: max-content;
  }
}
@media (max-width: 680px) {
  .cid-t0wv2rHEsc .nav-tabs .nav-item:last-child {
    margin: 0 !important;
  }
}
.cid-t0wv2rHEsc .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 25px;
}
.cid-t0wv2rHEsc .list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.cid-t0wv2rHEsc .list li {
  margin-bottom: 7px;
}
.cid-t0wv2rHEsc .list li:before {
  content: '';
  height: 4px;
  width: 4px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
  vertical-align: middle;
  margin-right: 5px;
}
.cid-t0wv2rHEsc .nav-link,
.cid-t0wv2rHEsc .nav-link.active {
  padding: 0;
  background-color: transparent;
}
.cid-t0wv2rHEsc .nav-tabs .nav-link.active {
  color: #000000;
}
.cid-t0wv2rHEsc .nav-tabs .nav-link.active:after {
  width: 100%;
}
.cid-t0wuMCzU5R {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuMCzU5R .container-fluid {
  padding: 0;
}
.cid-t0wuMCzU5R .row {
  align-items: stretch;
  width: 100%;
  padding-left: calc((100% - 1300px)/ 2) !important;
}
@media (max-width: 1440px) {
  .cid-t0wuMCzU5R .row {
    padding-left: calc((100% - 1100px)/ 2) !important;
  }
}
@media (max-width: 1200px) {
  .cid-t0wuMCzU5R .row {
    padding-left: calc((100% - 960px)/ 2) !important;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuMCzU5R .row {
    padding-left: calc((100% - 768px)/ 2) !important;
  }
}
@media (max-width: 800px) {
  .cid-t0wuMCzU5R .row {
    padding-left: calc((100% - 86%)/ 2) !important;
  }
}
@media (min-width: 768px) {
  .cid-t0wuMCzU5R .col-text {
    width: 33%;
  }
}
@media (max-width: 1440px) and (min-width: 768px) {
  .cid-t0wuMCzU5R .col-text {
    width: 42%;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuMCzU5R .col-text {
    width: 100%;
  }
}
.cid-t0wuMCzU5R .text-container {
  padding: 0 0 0 14%;
}
@media (max-width: 1440px) {
  .cid-t0wuMCzU5R .text-container {
    padding: 0 0 0 11%;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuMCzU5R .text-container {
    padding: 0;
  }
}
.cid-t0wuMCzU5R .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t0wuMCzU5R .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
@media (max-width: 1024px) {
  .cid-t0wuMCzU5R .label-text {
    padding: 0 15% 0 0;
  }
}
.cid-t0wuMCzU5R .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .cid-t0wuMCzU5R .mbr-section-title {
    padding: 0 15% 0 0;
  }
}
.cid-t0wuMCzU5R .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 0 28% 0 0;
}
@media (max-width: 1440px) {
  .cid-t0wuMCzU5R .mbr-text {
    padding: 0 25% 0 0;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuMCzU5R .mbr-text {
    padding: 0 40% 0 0;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuMCzU5R .mbr-text-2 {
    padding: 0 34% 0 0;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuMCzU5R .mbr-text-2 {
    padding: 0 44% 0 0;
  }
}
.cid-t0wuMCzU5R .btn-container {
  width: 100%;
}
.cid-t0wuMCzU5R .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-t0wuMCzU5R .col-img {
    width: 67%;
  }
}
@media (max-width: 1440px) and (min-width: 768px) {
  .cid-t0wuMCzU5R .col-img {
    width: 58%;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuMCzU5R .col-img {
    width: 100%;
  }
}
.cid-t0wuMCzU5R .img-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  height: 100%;
}
@media (max-width: 1024px) {
  .cid-t0wuMCzU5R .img-container {
    width: 100%;
    padding: 180px 0 0 0;
  }
}
.cid-t0wuMCzU5R .img-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 1025px) {
  .cid-t0wuMCzU5R .img-container img {
    padding: 10px;
  }
}
.cid-t0wuMCzU5R .img-container .main-image {
  max-width: 320px;
  max-height: 800px;
  object-fit: contain;
  position: relative;
  transform: translateY(-20%);
  padding: 0;
}
@media (max-width: 767px) {
  .cid-t0wuMCzU5R .img-container .main-image {
    padding: 0 15% 0 25%;
  }
}
.cid-t0wv30FtDE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0wv30FtDE .row {
  align-items: center;
  padding: 10px;
}
.cid-t0wv30FtDE .mbr-section-head {
  position: relative;
  display: flex;
  margin: 30px 0;
  align-items: center;
  height: 777px;
  box-sizing: content-box;
}
@media (max-width: 768px) {
  .cid-t0wv30FtDE .mbr-section-head {
    margin: 0;
    height: auto;
    margin-bottom: 440px;
  }
}
.cid-t0wv30FtDE .title-container {
  width: 100%;
}
.cid-t0wv30FtDE .text-wrapper {
  width: 100%;
  margin-bottom: 46px;
  max-width: 55%;
  margin-left: 50%;
  padding-left: 15%;
}
@media (max-width: 1440px) {
  .cid-t0wv30FtDE .text-wrapper {
    padding-left: 10%;
  }
}
@media (max-width: 1366px) {
  .cid-t0wv30FtDE .text-wrapper {
    padding-left: 6%;
  }
}
@media (max-width: 768px) {
  .cid-t0wv30FtDE .text-wrapper {
    max-width: 70%;
    margin-right: auto;
    margin-left: 0;
    padding: 0;
  }
}
@media (max-width: 680px) {
  .cid-t0wv30FtDE .text-wrapper {
    margin-bottom: 30px;
    max-width: 100%;
  }
}
.cid-t0wv30FtDE .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 13px;
  color: #8A8A8A;
}
.cid-t0wv30FtDE .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
}
.cid-t0wv30FtDE .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wv30FtDE .panel-group {
  width: 100%;
}
.cid-t0wv30FtDE .card {
  margin-bottom: 0;
  position: static;
}
.cid-t0wv30FtDE .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: none;
  padding: 0;
  transition: 0.5s all;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 55%;
  padding-left: 15%;
  margin-left: 50%;
}
@media (max-width: 1440px) {
  .cid-t0wv30FtDE .card .card-header {
    padding-left: 10%;
  }
}
@media (max-width: 1366px) {
  .cid-t0wv30FtDE .card .card-header {
    padding-left: 6%;
  }
}
@media (max-width: 768px) {
  .cid-t0wv30FtDE .card .card-header {
    max-width: 70%;
    margin-right: auto;
    margin-left: 0;
    padding: 0;
  }
}
@media (max-width: 680px) {
  .cid-t0wv30FtDE .card .card-header {
    max-width: 100%;
  }
}
.cid-t0wv30FtDE .card .card-header a {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  box-sizing: content-box;
  width: 100%;
  justify-content: flex-start;
}
.cid-t0wv30FtDE .panel-title {
  display: flex;
  justify-content: space-between;
  transition: 0.5s all;
  margin-bottom: 40px;
  padding-left: 38px;
  position: relative;
  z-index: 1;
  color: #000000;
}
@media (max-width: 1024px) {
  .cid-t0wv30FtDE .panel-title {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .cid-t0wv30FtDE .panel-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 680px) {
  .cid-t0wv30FtDE .panel-title {
    padding-left: 10px;
  }
}
.cid-t0wv30FtDE .panel-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: -5px;
  height: 0;
  width: 1px;
  background: currentColor;
  transition: height .6s ease;
}
@media (max-width: 768px) {
  .cid-t0wv30FtDE .panel-title:before {
    top: -3px;
  }
}
.cid-t0wv30FtDE .collapsed {
  padding-top: 0;
}
.cid-t0wv30FtDE .panel-title[aria-expanded="true"]:before {
  height: 48px;
}
@media (max-width: 768px) {
  .cid-t0wv30FtDE .panel-title[aria-expanded="true"]:before {
    height: 30px;
  }
}
.cid-t0wv30FtDE .sign {
  display: none;
}
.cid-t0wv30FtDE .panel-body {
  width: 100%;
  height: 0 !important;
}
.cid-t0wv30FtDE .panel-body-text {
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}
.cid-t0wv30FtDE .panel-title-edit {
  color: #000000;
  width: 100%;
  text-align: left;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 25%, #c298d3 50%, currentColor 51%, currentColor 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  transition: background-position 0.4s ease;
  background-position: right;
}
.cid-t0wv30FtDE .img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  max-width: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.1s 0.05s;
  overflow: hidden;
}
@media (min-width: 769px) {
  .cid-t0wv30FtDE .img-container {
    left: 0;
    top: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cid-t0wv30FtDE .img-container {
    height: 92%;
    max-width: 48%;
    margin-top: 4%;
  }
}
@media (max-width: 768px) {
  .cid-t0wv30FtDE .img-container {
    max-width: 100%;
    height: 400px;
    top: 100%;
    margin-top: 40px;
  }
}
.cid-t0wv30FtDE .img-container img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.cid-t0wv30FtDE .show .img-container {
  opacity: 1;
}
.cid-t0wuLzravN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0wuLzravN .container-fluid {
  padding: 0 !important;
}
.cid-t0wuLzravN .row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-t0wuLzravN .col-card {
  width: 100%;
  width: 50%;
}
@media (max-width: 1024px) {
  .cid-t0wuLzravN .col-card {
    width: 100%;
  }
}
.cid-t0wuLzravN .card-title {
  color: #000000;
}
.cid-t0wuLzravN .mbr-text {
  color: #000000;
  margin-top: 20px;
}
.cid-t0wuLzravN .card-wrapper {
  height: 100%;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 19.5% 0 19.5% 0;
}
.cid-t0wuLzravN .card-1 {
  background-image: linear-gradient(60deg, rgba(202, 151, 210, 0.25) 0, rgba(148, 123, 225, 0.25) 17%, rgba(94, 94, 240, 0.25) 45%, rgba(93, 145, 239, 0.25) 83%, rgba(92, 195, 238, 0.25) 100%);
}
.cid-t0wuLzravN .card-1 .iconfont-wrapper {
  border: 1px solid #c298d3;
}
.cid-t0wuLzravN .card-2 {
  background-color: #f3f3f3;
}
.cid-t0wuLzravN .card-2 .iconfont-wrapper {
  border: 1px solid #5d61ee;
}
.cid-t0wuLzravN .card-box {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t0wuLzravN .card-box {
    flex-wrap: wrap;
  }
}
.cid-t0wuLzravN .card-content {
  width: 77%;
}
@media (max-width: 767px) {
  .cid-t0wuLzravN .card-content {
    width: 100%;
  }
}
.cid-t0wuLzravN .card-content-padding {
  padding: 0 18% 0 20%;
}
@media (max-width: 1440px) {
  .cid-t0wuLzravN .card-content-padding {
    padding: 0 3% 0 20%;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuLzravN .card-content-padding {
    padding: 0 25% 0 15.5%;
  }
}
@media (max-width: 880px) {
  .cid-t0wuLzravN .card-content-padding {
    padding: 0 10% 0 10%;
  }
}
@media (max-width: 767px) {
  .cid-t0wuLzravN .card-content-padding {
    padding: 0 10% 0 7%;
  }
}
.cid-t0wuLzravN .icon-link-box {
  display: flex;
  width: 23%;
  padding: 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .cid-t0wuLzravN .icon-link-box {
    width: 100%;
    padding: 35px 0 0 22px;
  }
}
.cid-t0wuLzravN .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 90px;
  min-height: 90px;
  border-radius: 50%;
  cursor: pointer;
}
.cid-t0wuLzravN .iconfont-wrapper:hover .mbr-iconfont {
  transform: translateX(3px);
}
.cid-t0wuLzravN .iconfont-wrapper .mbr-iconfont {
  padding: 33px;
  color: #000000;
  font-size: 22px;
  transition: transform .3s ease;
}
.cid-t0wuNmBJhc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuNmBJhc .container-fluid {
  padding: 0;
}
.cid-t0wuNmBJhc .row {
  align-items: center;
  width: 100%;
  padding-right: calc((100% - 1300px)/ 2) !important;
}
@media (max-width: 1200px) {
  .cid-t0wuNmBJhc .row {
    align-items: flex-start;
  }
}
@media (max-width: 1440px) {
  .cid-t0wuNmBJhc .row {
    padding-right: calc((100% - 1100px)/ 2) !important;
  }
}
@media (max-width: 1200px) {
  .cid-t0wuNmBJhc .row {
    padding-right: calc((100% - 960px)/ 2) !important;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuNmBJhc .row {
    padding-right: calc((100% - 86%)/ 2) !important;
  }
}
.cid-t0wuNmBJhc .col-text {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-t0wuNmBJhc .col-text {
    width: 40%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuNmBJhc .col-text {
    width: 33%;
  }
}
.cid-t0wuNmBJhc .text-container {
  padding: 50px 0 0 30px;
}
@media (min-width: 768px) {
  .cid-t0wuNmBJhc .text-container {
    padding: 10% 45% 0 8%;
  }
}
@media (min-width: 881px) {
  .cid-t0wuNmBJhc .text-container {
    padding: 10% 40% 0 13%;
  }
}
@media (min-width: 1025px) {
  .cid-t0wuNmBJhc .text-container {
    padding: 0 20% 0 14%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuNmBJhc .text-container {
    padding: 0 26% 0 17%;
  }
}
.cid-t0wuNmBJhc .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t0wuNmBJhc .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-t0wuNmBJhc .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-t0wuNmBJhc .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wuNmBJhc .btn-container {
  width: 100%;
}
.cid-t0wuNmBJhc .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0wuNmBJhc .col-img {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-t0wuNmBJhc .col-img {
    width: 60%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuNmBJhc .col-img {
    width: 67%;
  }
}
.cid-t0wuNmBJhc .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.cid-t0wuNmBJhc .img-container img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
.cid-t0wuNJfY3Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuNJfY3Q .row {
  align-items: center;
  width: 100%;
}
.cid-t0wuNJfY3Q .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuNJfY3Q .col-text {
    width: 50%;
  }
}
.cid-t0wuNJfY3Q .text-container {
  padding-bottom: 100px;
}
@media (min-width: 1025px) {
  .cid-t0wuNJfY3Q .text-container {
    padding: 0 0 0 5%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuNJfY3Q .text-container {
    padding: 0 0 0 13%;
  }
}
.cid-t0wuNJfY3Q .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-t0wuNJfY3Q .text-wrapper {
    padding: 0 20% 0 0;
  }
}
@media (min-width: 1025px) {
  .cid-t0wuNJfY3Q .text-wrapper {
    padding: 0 30% 0 0;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuNJfY3Q .text-wrapper {
    padding: 0 39% 0 0;
  }
}
.cid-t0wuNJfY3Q .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-t0wuNJfY3Q .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-t0wuNJfY3Q .mbr-section-title b {
  font-weight: 600 !important;
}
.cid-t0wuNJfY3Q .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wuNJfY3Q .text-container .links-container {
  margin-top: 32px;
}
.cid-t0wuNJfY3Q .text-container .links-container a {
  margin-right: 15px;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0wuNJfY3Q .text-container .links-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-t0wuNJfY3Q .col-img {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuNJfY3Q .col-img {
    width: 50%;
  }
}
.cid-t0wuNJfY3Q .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.cid-t0wuNJfY3Q .img-container img {
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuNJfY3Q .img-wrap {
    padding: 0 10px;
  }
}
.cid-t0wuTn0JTD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0wuTn0JTD .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-t0wuTn0JTD .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-t0wuTn0JTD .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0wuQHvWz3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuQHvWz3 .container-fluid {
  padding: 0;
}
.cid-t0wuQHvWz3 .row {
  align-items: stretch;
  width: 100%;
}
.cid-t0wuQHvWz3 .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuQHvWz3 .col-text {
    width: 50%;
  }
}
.cid-t0wuQHvWz3 .text-container {
  padding: 30% 4% 33% 8%;
}
@media (min-width: 768px) {
  .cid-t0wuQHvWz3 .text-container {
    padding: 18% 35% 20% 7%;
  }
}
@media (min-width: 881px) {
  .cid-t0wuQHvWz3 .text-container {
    padding: 14% 35% 15.3% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-t0wuQHvWz3 .text-container {
    padding: 15% 15% 17% 20%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuQHvWz3 .text-container {
    padding: 15.3% 35% 17.3% 20%;
  }
}
.cid-t0wuQHvWz3 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-t0wuQHvWz3 .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-t0wuQHvWz3 .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-t0wuQHvWz3 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wuQHvWz3 .btn-container {
  width: 100%;
}
.cid-t0wuQHvWz3 .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0wuQHvWz3 .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-t0wuQHvWz3 .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuQHvWz3 .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-t0wuQHvWz3 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-t0wuQHvWz3 .img-container img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-t0wuR0IA1s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuR0IA1s .row {
  flex-direction: row-reverse;
}
.cid-t0wuR0IA1s .container-fluid {
  padding: 0;
}
.cid-t0wuR0IA1s .row {
  align-items: stretch;
  width: 100%;
}
.cid-t0wuR0IA1s .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuR0IA1s .col-text {
    width: 50%;
  }
}
.cid-t0wuR0IA1s .text-container {
  padding: 31% 4% 34% 8%;
}
@media (min-width: 768px) {
  .cid-t0wuR0IA1s .text-container {
    padding: 18% 7% 20% 7%;
  }
}
@media (min-width: 881px) {
  .cid-t0wuR0IA1s .text-container {
    padding: 14% 15% 15.3% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-t0wuR0IA1s .text-container {
    padding: 18% 15% 20% 20%;
    padding: 15% 20% 17% 15%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuR0IA1s .text-container {
    padding: 18% 15% 20% 20%;
    padding: 18% 20% 20% 15%;
  }
}
.cid-t0wuR0IA1s .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-t0wuR0IA1s .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-t0wuR0IA1s .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-t0wuR0IA1s .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wuR0IA1s .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-t0wuR0IA1s .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuR0IA1s .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-t0wuR0IA1s .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-t0wuR0IA1s .img-container img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-t0wuR0IA1s .lines-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
}
.cid-t0wuR0IA1s .line-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-t0wuR0IA1s .line-container2,
.cid-t0wuR0IA1s .line-container3 {
  margin-top: 20px;
}
.cid-t0wuR0IA1s .line-text {
  color: #000000;
  width: 100%;
  margin-bottom: 5px;
}
.cid-t0wuR0IA1s .line {
  width: 100%;
  height: 5px;
}
.cid-t0wuR0IA1s .line-active {
  position: relative;
  height: 100%;
  background-image: linear-gradient(-90deg, #5cc2ed 0, #5d62ee 50%, #c298d3 100%);
}
.cid-t0wuR0IA1s .line-active1 {
  width: 95%;
}
.cid-t0wuR0IA1s .line-active2 {
  width: 75%;
}
.cid-t0wuR0IA1s .line-active3 {
  width: 83%;
}
.cid-t0wuR0IA1s .percent-text {
  width: auto;
  background: transparent;
  color: #000000;
  margin: 0;
  line-height: 24px;
  font-size: 17px;
  text-align: center;
  float: none;
  position: absolute;
  top: -24px;
  right: 0;
}
.cid-t0wuR0IA1s .percent-text1:before {
  content: "95";
}
.cid-t0wuR0IA1s .percent-text2:before {
  content: "75";
}
.cid-t0wuR0IA1s .percent-text3:before {
  content: "83";
}
.cid-t0wv1hWS1G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wv1hWS1G .container-fluid {
  padding: 0;
}
.cid-t0wv1hWS1G .row {
  align-items: stretch;
  width: 100%;
}
.cid-t0wv1hWS1G .col-tabs .tab-content .tabs-row {
  padding: 0 !important;
}
.cid-t0wv1hWS1G .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wv1hWS1G .col-text {
    width: 50%;
  }
}
.cid-t0wv1hWS1G .text-container {
  padding: 30% 4% 15% 8%;
}
@media (min-width: 768px) {
  .cid-t0wv1hWS1G .text-container {
    padding: 18% 25% 16% 7%;
  }
}
@media (min-width: 881px) {
  .cid-t0wv1hWS1G .text-container {
    padding: 14% 25% 12% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-t0wv1hWS1G .text-container {
    padding: 16% 25% 13% 15%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wv1hWS1G .text-container {
    padding: 12% 30% 10% 19%;
  }
}
.cid-t0wv1hWS1G .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t0wv1hWS1G .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-t0wv1hWS1G .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 20px;
}
.cid-t0wv1hWS1G .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-t0wv1hWS1G .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-t0wv1hWS1G .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-t0wv1hWS1G .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-t0wv1hWS1G .img-container img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-t0wv1hWS1G .col-tabs {
  padding: 10px 0 0 0;
}
@media (min-width: 768px) {
  .cid-t0wv1hWS1G .col-tabs {
    padding: 3% 25% 0 0;
  }
}
@media (min-width: 1025px) {
  .cid-t0wv1hWS1G .col-tabs {
    padding: 17px 0 0 0;
  }
}
.cid-t0wv1hWS1G .nav-tabs .nav-item.open .nav-link:focus,
.cid-t0wv1hWS1G .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-t0wv1hWS1G .nav-tabs {
  flex-wrap: nowrap;
  padding-bottom: 8px;
  border-bottom: 1px solid #57b8e0;
}
@media (max-width: 680px) {
  .cid-t0wv1hWS1G .nav-tabs {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cid-t0wv1hWS1G .nav-item {
  position: relative;
  color: #000000;
}
.cid-t0wv1hWS1G .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  color: #000000 !important;
}
.cid-t0wv1hWS1G .nav-tabs .nav-link:after {
  content: '';
  width: 0;
  left: 0;
  height: 1px;
  position: absolute;
  bottom: -9px;
  background-color: #000000;
  transition: width 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (max-width: 680px) {
  .cid-t0wv1hWS1G .nav-tabs .nav-link:after {
    bottom: -2px;
  }
}
.cid-t0wv1hWS1G .nav-tabs .nav-item:not(:first-child) {
  margin-left: 68px;
}
@media (max-width: 680px) {
  .cid-t0wv1hWS1G .nav-tabs .nav-item {
    margin: 0 0 12px 0 !important;
    width: max-content;
  }
}
@media (max-width: 680px) {
  .cid-t0wv1hWS1G .nav-tabs .nav-item:last-child {
    margin: 0 !important;
  }
}
.cid-t0wv1hWS1G .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 25px;
}
.cid-t0wv1hWS1G .list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.cid-t0wv1hWS1G .list li {
  margin-bottom: 7px;
}
.cid-t0wv1hWS1G .list li:before {
  content: '';
  height: 4px;
  width: 4px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
  vertical-align: middle;
  margin-right: 5px;
}
.cid-t0wv1hWS1G .nav-link,
.cid-t0wv1hWS1G .nav-link.active {
  padding: 0;
  background-color: transparent;
}
.cid-t0wv1hWS1G .nav-tabs .nav-link.active {
  color: #000000;
}
.cid-t0wv1hWS1G .nav-tabs .nav-link.active:after {
  width: 100%;
}
.cid-t0wuKwVLmV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 845px;
  background-image: url("https://mobirise.com/extensions/networkm5/assets/images/background1.jpg");
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-t0wuKwVLmV {
    min-height: 667px;
  }
}
.cid-t0wuKwVLmV .row {
  align-items: stretch;
  width: 100%;
}
.cid-t0wuKwVLmV .col-text {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-t0wuKwVLmV .col-text {
    width: 50%;
  }
}
@media (min-width: 758px) {
  .cid-t0wuKwVLmV .col-text {
    width: 60%;
  }
}
.cid-t0wuKwVLmV .text-container {
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-t0wuKwVLmV .text-container {
    padding: 0 0 0 16% !important;
  }
}
@media (max-width: 880px) {
  .cid-t0wuKwVLmV .text-container {
    padding: 0 !important;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuKwVLmV .text-container {
    padding: 10px !important;
  }
}
.cid-t0wuKwVLmV .text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
@media (min-width: 1441px) {
  .cid-t0wuKwVLmV .text-wrapper {
    padding: 0 55% 0 0;
  }
}
@media (max-width: 1440px) {
  .cid-t0wuKwVLmV .text-wrapper {
    padding: 0 30% 0 0;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuKwVLmV .text-wrapper {
    padding: 0 25% 0 0;
  }
}
@media (max-width: 880px) {
  .cid-t0wuKwVLmV .text-wrapper {
    padding: 0 15% 0 0;
  }
}
@media (max-width: 767px) {
  .cid-t0wuKwVLmV .text-wrapper {
    padding: 0;
  }
}
.cid-t0wuKwVLmV .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-t0wuKwVLmV .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wuKwVLmV .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-t0wuKwVLmV .mbr-section-btn .btn-transform {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0wuKwVLmV .mbr-section-btn .btn-white-outline {
  color: #ffffff !important;
  border: 1px solid #ffffff;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t0wuKwVLmV .mbr-section-btn .btn-white-outline:hover {
  color: #fff !important;
  background: #ffffff !important;
}
.cid-t0wuKwVLmV .mbr-section-btn .btn-white-outline:hover .btn-transform {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-t0wuKwVLmV .col-img {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-t0wuKwVLmV .col-img {
    width: 50%;
  }
}
@media (min-width: 758px) {
  .cid-t0wuKwVLmV .col-img {
    width: 40%;
  }
}
.cid-t0wuOuhyqG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuOuhyqG .row {
  align-items: center;
  width: 100%;
}
.cid-t0wuOuhyqG .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuOuhyqG .col-text {
    width: 50%;
  }
}
.cid-t0wuOuhyqG .text-container {
  padding-bottom: 100px;
}
@media (min-width: 1025px) {
  .cid-t0wuOuhyqG .text-container {
    padding: 0 0 0 5%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuOuhyqG .text-container {
    padding: 0 0 0 13%;
  }
}
.cid-t0wuOuhyqG .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-t0wuOuhyqG .text-wrapper {
    padding: 0 20% 0 0;
  }
}
@media (min-width: 1025px) {
  .cid-t0wuOuhyqG .text-wrapper {
    padding: 0 30% 0 0;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuOuhyqG .text-wrapper {
    padding: 0 39% 0 0;
  }
}
.cid-t0wuOuhyqG .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-t0wuOuhyqG .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-t0wuOuhyqG .mbr-section-title b {
  font-weight: 600 !important;
}
.cid-t0wuOuhyqG .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wuOuhyqG .text-container .links-container {
  margin-top: 32px;
}
.cid-t0wuOuhyqG .text-container .links-container a {
  margin-right: 15px;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0wuOuhyqG .text-container .links-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-t0wuOuhyqG .col-img {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuOuhyqG .col-img {
    width: 50%;
  }
}
.cid-t0wuOuhyqG .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.cid-t0wuOuhyqG .img-container img {
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuOuhyqG .img-wrap {
    padding: 0 10px;
  }
}
.cid-t0wuRDGpTP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0wuRDGpTP .content-container {
  margin-bottom: 50px;
  width: 100%;
  padding: 157px 13.5% 143px;
  text-align: center;
  background-image: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
}
.cid-t0wuRDGpTP .label-text {
  color: #ffffff;
  margin-bottom: 28px;
}
.cid-t0wuRDGpTP .mbr-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t0wuRDGpTP .mbr-text a {
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(97%), currentColor 3px);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 100% 93% !important;
  background-position: left !important;
}
.cid-t0wuRDGpTP .mbr-text a:hover {
  background-repeat: no-repeat !important;
  background-image: linear-gradient(transparent calc(97%), currentColor 3px) !important;
  background-size: 100% 93% !important;
  background-position: left !important;
}
.cid-t0wuOTGHsc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuOTGHsc .row {
  align-items: center;
  width: 100%;
}
.cid-t0wuOTGHsc .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuOTGHsc .col-text {
    width: 50%;
  }
}
.cid-t0wuOTGHsc .text-container {
  padding: 95px 0 0 0;
}
@media (min-width: 1025px) {
  .cid-t0wuOTGHsc .text-container {
    padding: 0 20% 0 20%;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuOTGHsc .text-container {
    padding: 0 18% 0 33%;
  }
}
.cid-t0wuOTGHsc .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-t0wuOTGHsc .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-t0wuOTGHsc .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-t0wuOTGHsc .mbr-section-title b {
  font-weight: 600 !important;
}
.cid-t0wuOTGHsc .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wuOTGHsc .btn-container {
  width: 100%;
}
.cid-t0wuOTGHsc .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0wuOTGHsc .col-img {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuOTGHsc .col-img {
    width: 50%;
  }
}
.cid-t0wuOTGHsc .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.cid-t0wuOTGHsc .img-container img {
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 1025px) {
  .cid-t0wuOTGHsc .img-wrap {
    padding: 0 10px;
  }
}
.cid-t0wuUfWIPX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0wuUfWIPX .box {
  margin-bottom: 15px;
}
.cid-t0wuUfWIPX .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-t0wuUfWIPX .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-t0wuUfWIPX .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-t0wuUfWIPX .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuUfWIPX .mbr-media {
    max-height: 432px;
  }
}
.cid-t0wuUfWIPX .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t0wuUfWIPX .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-t0wuUfWIPX .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-t0wuUfWIPX .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-t0wuUfWIPX .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t0wuUfWIPX .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t0wuUfWIPX .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t0wuUfWIPX .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;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t0wuUfWIPX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t0wuUfWIPX .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-t0wuUfWIPX .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0wuUfWIPX .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-t0wuUfWIPX .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-t0wuUfWIPX .item-img {
  overflow: hidden;
}
.cid-t0wuUfWIPX .item-img img {
  width: 100%;
}
.cid-t0wuUfWIPX .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-t0wuUfWIPX .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-t0wuShrIGw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuShrIGw .row {
  width: 100%!important;
  max-width: 100%!important;
}
.cid-t0wuShrIGw img,
.cid-t0wuShrIGw .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0wuShrIGw .item:focus,
.cid-t0wuShrIGw span:focus {
  outline: none;
}
.cid-t0wuShrIGw .item {
  padding: 0 !important;
  margin-bottom: 80px !important;
}
@media (max-width: 1440px) {
  .cid-t0wuShrIGw .item {
    margin-bottom: 70px !important;
  }
}
.cid-t0wuShrIGw .item-wrap {
  background: transparent;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-t0wuShrIGw .img-wrap {
  position: relative;
  background: transparent;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0wuShrIGw .img-wrap-1 {
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .cid-t0wuShrIGw .img-wrap-1 {
    padding-right: 11px;
    padding-bottom: 0;
  }
}
.cid-t0wuShrIGw .img-wrap-2 {
  padding-top: 15px;
}
@media (min-width: 768px) {
  .cid-t0wuShrIGw .img-wrap-2 {
    padding-left: 11px;
    padding-top: 0;
  }
}
.cid-t0wuShrIGw .item-img {
  overflow: hidden;
}
.cid-t0wuShrIGw .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-t0wuShrIGw .item-img-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding-top: 33px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0wuShrIGw .item-img-container {
    flex-direction: column;
  }
}
.cid-t0wuShrIGw .title-text {
  color: #000000;
  margin-bottom: 16px;
  width: 100%;
}
.cid-t0wuShrIGw .mbr-text {
  color: #000000;
  margin-bottom: 10px;
  width: 100%;
}
.cid-t0wuWyZTSI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0wuWyZTSI .content-container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 45px 50px;
  text-align: center;
  background-image: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
}
@media (max-width: 680px) {
  .cid-t0wuWyZTSI .content-container {
    flex-wrap: wrap;
  }
}
.cid-t0wuWyZTSI .item-img {
  display: flex;
  width: 190px;
  height: 190px;
  margin-right: 38px;
}
.cid-t0wuWyZTSI .item-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t0wuWyZTSI .text-wrap {
  flex-grow: 1;
}
@media (max-width: 680px) {
  .cid-t0wuWyZTSI .text-wrap {
    margin-top: 23px;
  }
}
.cid-t0wuWyZTSI .link-text {
  color: #ffffff;
  margin-top: 20px;
}
.cid-t0wuWyZTSI .link-text a {
  margin-right: 15px;
}
.cid-t0wuWyZTSI .mbr-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t0wuWyZTSI .mbr-text-name {
  color: #ffffff;
  margin-bottom: 11px;
}
.cid-t0wuUNoSw5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuUNoSw5 .row {
  width: 100%!important;
  max-width: 100%!important;
}
.cid-t0wuUNoSw5 img,
.cid-t0wuUNoSw5 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0wuUNoSw5 .item:focus,
.cid-t0wuUNoSw5 span:focus {
  outline: none;
}
.cid-t0wuUNoSw5 .item {
  padding: 0 !important;
  margin-bottom: 80px !important;
}
@media (max-width: 1440px) {
  .cid-t0wuUNoSw5 .item {
    margin-bottom: 70px !important;
  }
}
.cid-t0wuUNoSw5 .item-wrap {
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0wuUNoSw5 .img-wrap {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 15px;
}
.cid-t0wuUNoSw5 .item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-t0wuUNoSw5 .item-img img {
  width: 100%;
}
.cid-t0wuUNoSw5 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-t0wuUNoSw5 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0wuUNoSw5 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-t0wuUNoSw5 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-t0wuUNoSw5 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-t0wuUNoSw5 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-t0wuMdMMK2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuMdMMK2 .row {
  align-items: flex-start;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cid-t0wuMdMMK2 .col-text {
    width: 100% !important;
  }
}
.cid-t0wuMdMMK2 .text-container {
  padding: 7.5% 0 0 17%;
}
@media (max-width: 1024px) {
  .cid-t0wuMdMMK2 .text-container {
    padding: 0;
  }
}
.cid-t0wuMdMMK2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 0 25% 0 0;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .cid-t0wuMdMMK2 .text-wrapper {
    padding: 0 45% 0 0;
  }
}
@media (max-width: 880px) {
  .cid-t0wuMdMMK2 .text-wrapper {
    padding: 0 45% 0 1%;
  }
}
@media (max-width: 767px) {
  .cid-t0wuMdMMK2 .text-wrapper {
    padding: 0;
  }
}
.cid-t0wuMdMMK2 .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 7px;
  color: #8A8A8A;
}
.cid-t0wuMdMMK2 .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
}
.cid-t0wuMdMMK2 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-t0wuMdMMK2 .btn-container {
  width: 100%;
}
.cid-t0wuMdMMK2 .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0wuMdMMK2 .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding-top: 24px;
}
@media (max-width: 1024px) {
  .cid-t0wuMdMMK2 .col-cards {
    width: 100% !important;
    padding-top: 80px;
  }
}
.cid-t0wuMdMMK2 .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-t0wuMdMMK2 .card {
  padding: 0 15px;
  margin: 0 0 30px;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
  align-items: center;
  justify-content: center;
}
@media (max-width: 680px) {
  .cid-t0wuMdMMK2 .card {
    width: 100% !important;
  }
}
.cid-t0wuMdMMK2 .card-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
.cid-t0wuMdMMK2 .card-wrap:hover .card-caption {
  opacity: 1;
  transform: translateY(0);
}
.cid-t0wuMdMMK2 .card-caption {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  position: absolute;
  z-index: 1;
  height: auto;
  left: 0;
  bottom: 100%;
  padding: 10px 10px;
  margin-bottom: -10px;
  background-color: #f9f9f9;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
  transition: opacity 0.4s ease-out, transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.cid-t0wuMdMMK2 .img-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 680px) {
  .cid-t0wuMdMMK2 .img-container {
    max-width: 186px;
    width: 100%;
  }
}
.cid-t0wuMdMMK2 .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-t0wuMdMMK2 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0wuMdMMK2 .card-text {
  color: #8a8a8a;
}
.cid-t0wv4KCWDt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-t0wv4KCWDt .row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 1025px) {
  .cid-t0wv4KCWDt .row {
    margin-top: 45px !important;
  }
}
.cid-t0wv4KCWDt .col-card {
  padding: 10px !important;
}
@media (max-width: 1024px) {
  .cid-t0wv4KCWDt .col-card {
    width: 100% !important;
  }
}
.cid-t0wv4KCWDt .card-wrapper {
  height: 100%;
  display: block;
}
@media (min-width: 768px) and (max-width: 880px) {
  .cid-t0wv4KCWDt .card-wrapper {
    padding: 0 15% 0 15%;
  }
}
@media (min-width: 881px) and (max-width: 1024px) {
  .cid-t0wv4KCWDt .card-wrapper {
    padding: 0 20% 0 20%;
  }
}
@media (min-width: 1025px) {
  .cid-t0wv4KCWDt .card-wrapper {
    display: contents;
  }
}
.cid-t0wv4KCWDt .card-box {
  height: 100%;
  overflow: visible;
  padding: 80px 30px 92px;
  background: transparent;
  vertical-align: top;
  background-size: cover;
  background-position: right top;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .cid-t0wv4KCWDt .card-box {
    padding: 96px 60px;
  }
}
.cid-t0wv4KCWDt .card-1 {
  background-image: url("file:///C:/Users/vad/AppData/Local/Mobirise.com/Mobirise/5vadims55_002e555_0040gmail_002ecom/addons/networkm5/components/_images/gallery/gallery4.jpg") !important;
}
.cid-t0wv4KCWDt .card-2 {
  background-image: url("file:///C:/Users/vad/AppData/Local/Mobirise.com/Mobirise/5vadims55_002e555_0040gmail_002ecom/addons/networkm5/components/_images/gallery/gallery5.jpg") !important;
}
.cid-t0wv4KCWDt .card-3 {
  background-image: url("file:///C:/Users/vad/AppData/Local/Mobirise.com/Mobirise/5vadims55_002e555_0040gmail_002ecom/addons/networkm5/components/_images/gallery/gallery6.jpg") !important;
}
@media (min-width: 1025px) {
  .cid-t0wv4KCWDt .card-2 {
    transform: translateY(-45px);
    justify-content: center;
    flex-direction: column;
    display: flex;
    padding: 136px 60px 150px;
  }
}
.cid-t0wv4KCWDt .card-title {
  color: #000000;
  margin-top: 10px;
  margin-bottom: 18px;
}
.cid-t0wv4KCWDt .mbr-text {
  color: #000000;
  margin: 0;
}
.cid-t0wv4KCWDt .list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 42px;
}
.cid-t0wv4KCWDt .list li {
  margin-bottom: 7px;
}
.cid-t0wv4KCWDt .list li:before {
  content: '';
  height: 4px;
  width: 4px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
  vertical-align: middle;
  margin-right: 5px;
}
.cid-t0wv4KCWDt .btn-container {
  margin-top: 60px;
}
.cid-t0wv4KCWDt .btn-container .btn {
  min-width: 100px;
}
@media (max-width: 575px) {
  .cid-t0wv4KCWDt .btn-container .btn {
    padding: 17px 25px 15px;
  }
}
.cid-t0wuVle2Tl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0wuVle2Tl .row {
  width: 100%!important;
  max-width: 100%!important;
}
.cid-t0wuVle2Tl img,
.cid-t0wuVle2Tl .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0wuVle2Tl .item:focus,
.cid-t0wuVle2Tl span:focus {
  outline: none;
}
.cid-t0wuVle2Tl .item {
  cursor: pointer;
  padding: 0 15px !important;
  margin-bottom: 30px !important;
}
@media (max-width: 1024px) {
  .cid-t0wuVle2Tl .item {
    width: 50% !important;
  }
}
@media (min-width: 1025px) {
  .cid-t0wuVle2Tl .item {
    width: 33.33333333% !important;
  }
}
@media (max-width: 680px) {
  .cid-t0wuVle2Tl .item {
    width: 100% !important;
  }
}
.cid-t0wuVle2Tl .item-wrapper {
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
}
.cid-t0wuVle2Tl .item-wrapper .img-wrap:hover .img-overlay {
  opacity: 0.95;
}
.cid-t0wuVle2Tl .item-wrapper .img-wrap:hover .item-content {
  opacity: 1;
}
.cid-t0wuVle2Tl .img-wrap {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0wuVle2Tl .item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-t0wuVle2Tl .item-img img {
  width: 100%;
}
.cid-t0wuVle2Tl .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-out;
}
.cid-t0wuVle2Tl .item-content {
  position: absolute;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  bottom: 50%;
  transform: translateY(50%);
  left: 0;
  z-index: 3;
  opacity: 0;
  padding: 10px;
  transition: opacity 0.2s ease-out;
}
.cid-t0wuVle2Tl .item-content .links-container {
  text-align: center;
}
.cid-t0wuVle2Tl .item-content .links-container a {
  margin-right: 18px;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0wuVle2Tl .item-content .links-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-t0wuVle2Tl .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 14px 0 32px;
}
.cid-t0wuVle2Tl .title-text {
  color: #000000;
  margin-bottom: 0;
  width: 100%;
}
.cid-t0wuVle2Tl .mbr-text {
  color: #8A8A8A;
  margin-top: 2px;
  margin-bottom: 0;
  width: 100%;
}
.cid-t0wuW2zO33 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0wuW2zO33 .content-container {
  margin-bottom: 50px;
  width: 100%;
  padding: 157px 13.5% 143px;
  text-align: center;
  background-image: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
}
.cid-t0wuW2zO33 .label-text {
  color: #ffffff;
  margin-bottom: 28px;
}
.cid-t0wuW2zO33 .mbr-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t0wuW2zO33 .mbr-text-name {
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 45px;
}
.cid-t0wuYntOnG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-t0wuYntOnG .row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .cid-t0wuYntOnG .row {
    justify-content: flex-start;
  }
}
.cid-t0wuYntOnG .col-card {
  padding: 10px !important;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cid-t0wuYntOnG .col-card {
    width: 50% !important;
  }
}
@media (max-width: 767px) {
  .cid-t0wuYntOnG .col-card {
    width: 100% !important;
  }
}
.cid-t0wuYntOnG .card-title {
  color: #000000;
  margin-top: 25px;
  padding: 0 25% 0 0;
}
@media (max-width: 767px) {
  .cid-t0wuYntOnG .card-title {
    padding: 0 !important;
  }
}
.cid-t0wuYntOnG .mbr-text {
  color: #000000;
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-t0wuYntOnG .card-wrapper {
  height: 100%;
}
.cid-t0wuXLVR5J {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t0wuXLVR5J .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t0wuXLVR5J .container-fluid {
  display: flex;
  padding: 0 !important;
}
.cid-t0wuXLVR5J .main-row {
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 0;
}
@media (max-width: 1200px) {
  .cid-t0wuXLVR5J .main-row {
    align-items: center;
  }
}
@media (min-width: 1025px) {
  .cid-t0wuXLVR5J .main-row {
    padding-right: calc((100% - 960px)/ 2) !important;
  }
}
@media (min-width: 1201px) {
  .cid-t0wuXLVR5J .main-row {
    padding-right: calc((100% - 1100px)/ 2) !important;
  }
}
@media (min-width: 1441px) {
  .cid-t0wuXLVR5J .main-row {
    padding-right: calc((100% - 1300px)/ 2) !important;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuXLVR5J .main-row {
    width: 768px;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .cid-t0wuXLVR5J .main-row {
    width: 86%;
  }
}
.cid-t0wuXLVR5J .col-map {
  width: 57% !important;
}
@media (max-width: 1024px) {
  .cid-t0wuXLVR5J .col-map {
    width: 100% !important;
  }
}
.cid-t0wuXLVR5J .col-form {
  width: 43% !important;
  padding-top: 25px;
}
@media (min-width: 1025px) {
  .cid-t0wuXLVR5J .col-form {
    padding-left: 64px !important;
  }
}
@media (max-width: 1024px) {
  .cid-t0wuXLVR5J .col-form {
    width: 100% !important;
  }
}
.cid-t0wuXLVR5J .mbr-section-title {
  margin-bottom: 25px;
}
.cid-t0wuXLVR5J .mbr-section-head {
  margin-bottom: 20px;
}
.cid-t0wuXLVR5J form .dragArea.row {
  justify-content: flex-start;
}
.cid-t0wuXLVR5J form .mbr-section-btn {
  margin-top: 12px;
}
.cid-t0wuXLVR5J form .mbr-section-btn .btn {
  width: max-content;
  min-width: 140px;
}
@media (max-width: 800px) {
  .cid-t0wuXLVR5J form .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0wuXLVR5J form .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
.cid-t0wuXLVR5J form .form-group {
  margin-bottom: 8px !important;
}
.cid-t0wuXLVR5J form .form-control {
  border: 1px solid  !important;
  border-image-slice: 1 !important;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 23px 30px;
  font-size: 17px;
  line-height: 24px;
  color: #a0a0a0;
  font-weight: 400;
}
.cid-t0wuXLVR5J form .form-control::-webkit-input-placeholder {
  color: #a0a0a0;
}
.cid-t0wuXLVR5J form .form-control::-moz-placeholder {
  color: #a0a0a0;
}
.cid-t0wuXLVR5J form .form-control:-moz-placeholder {
  color: #a0a0a0;
}
.cid-t0wuXLVR5J form .form-control:-ms-input-placeholder {
  color: #a0a0a0;
}
.cid-t0wuXLVR5J form textarea {
  height: 146px;
}
.cid-t0wuXLVR5J form input:active,
.cid-t0wuXLVR5J form input:focus {
  color: #000 !important;
}
.cid-t0wuXLVR5J form input:active::-webkit-input-placeholder,
.cid-t0wuXLVR5J form input:focus::-webkit-input-placeholder {
  color: #000;
}
.cid-t0wuXLVR5J form input:active::-moz-placeholder,
.cid-t0wuXLVR5J form input:focus::-moz-placeholder {
  color: #000;
}
.cid-t0wuXLVR5J form input:active:-moz-placeholder,
.cid-t0wuXLVR5J form input:focus:-moz-placeholder {
  color: #000;
}
.cid-t0wuXLVR5J form input:active:-ms-input-placeholder,
.cid-t0wuXLVR5J form input:focus:-ms-input-placeholder {
  color: #000;
}
.cid-t0wuXLVR5J .google-map {
  height: 573px;
  position: relative;
}
.cid-t0wuXLVR5J .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t0wuXLVR5J .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-t0wuXLVR5J .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t0wuXLVR5J .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t0wuXLVR5J form .row {
  margin-left: -4px !important;
  margin-right: -4px !important;
}
.cid-t0wuXLVR5J form .row [class*=col] {
  padding-left: 4px !important;
  padding-right: 4px !important;
}
.cid-t0wqIF4o9U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-t0wqIF4o9U .mbr-text {
  color: #ffffff;
}
.cid-t0wqIF4o9U .media-container-row .mbr-text {
  color: #000000;
}
