body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3.7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.625rem;
}
.display-2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.96rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.59rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #8364e2 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4e26ca !important;
  border-color: #4e26ca !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4e26ca !important;
  border-color: #4e26ca !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  box-shadow: #47b5ed 2px 2px 20px 0px;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  box-shadow: #40b0bf 2px 2px 20px 0px;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  box-shadow: #ffe161 2px 2px 20px 0px;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  box-shadow: #ff9966 2px 2px 20px 0px;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white {
  color: #8364e2 !important;
  background-color: white;
}
.btn-white,
.btn-white:active {
  background-color: white !important;
  border-color: white !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: white 2px 2px 20px 0px;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white:hover,
.btn-white:active {
  color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  box-shadow: #232323 2px 2px 20px 0px;
}
.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: #8364e2;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #4e26ca !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: #8364e2 !important;
  border-color: #8364e2 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8364e2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #4e26ca !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: #8364e2 !important;
  border-color: #8364e2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #8364e2 !important;
}
.text-secondary {
  color: #8364e2 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #4923bd !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4923bd !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !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;
}
.nav-tabs .nav-link.active {
  color: #8364e2;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8364e2;
  border-color: #8364e2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #8364e2;
}
.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: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #8364e2 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #8364e2;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8364e2;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #8364e2;
}
.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: #8364e2;
  border-bottom-color: #8364e2;
}
.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: #8364e2 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #8364e2 !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='%238364e2' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sYTjugn6Vm {
  background-image: url("../../../assets/images/main-page.fw-2000x1006.jpg");
}
.cid-sYTjugn6Vm .mbr-text,
.cid-sYTjugn6Vm .mbr-section-btn {
  color: #f2effc;
}
.cid-sYTjugn6Vm .mbr-section-title {
  color: #f2effc;
}
.cid-sQknKIJ5xL {
  z-index: 1000;
  width: 100%;
}
.cid-sQknKIJ5xL .btn {
  padding: 0.3rem 2rem;
}
.cid-sQknKIJ5xL .nav-link {
  position: relative;
}
.cid-sQknKIJ5xL .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #8364e2;
}
.cid-sQknKIJ5xL .nav-link:hover:before {
  width: 100%;
}
.cid-sQknKIJ5xL nav.navbar {
  position: fixed;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQknKIJ5xL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQknKIJ5xL .dropdown-item:hover,
.cid-sQknKIJ5xL .dropdown-item:focus {
  background: #8364e2 !important;
  color: white !important;
}
.cid-sQknKIJ5xL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQknKIJ5xL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQknKIJ5xL .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQknKIJ5xL .container {
  display: flex;
  margin: auto;
}
.cid-sQknKIJ5xL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQknKIJ5xL .dropdown-menu,
.cid-sQknKIJ5xL .navbar.opened {
  background: #28196c !important;
}
.cid-sQknKIJ5xL .nav-item:focus,
.cid-sQknKIJ5xL .nav-link:focus {
  outline: none;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQknKIJ5xL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQknKIJ5xL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQknKIJ5xL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQknKIJ5xL .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #28196c !important;
  transition: all 0.3s;
}
.cid-sQknKIJ5xL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(40, 25, 108, 0);
}
.cid-sQknKIJ5xL .navbar.opened {
  transition: all 0.3s;
}
.cid-sQknKIJ5xL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQknKIJ5xL .navbar .navbar-logo img {
  width: auto;
}
.cid-sQknKIJ5xL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQknKIJ5xL .navbar.collapsed {
  justify-content: center;
}
.cid-sQknKIJ5xL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQknKIJ5xL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQknKIJ5xL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQknKIJ5xL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQknKIJ5xL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQknKIJ5xL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQknKIJ5xL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQknKIJ5xL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQknKIJ5xL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQknKIJ5xL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQknKIJ5xL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQknKIJ5xL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQknKIJ5xL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sQknKIJ5xL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQknKIJ5xL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQknKIJ5xL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQknKIJ5xL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQknKIJ5xL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQknKIJ5xL .dropdown-item.active,
.cid-sQknKIJ5xL .dropdown-item:active {
  background-color: transparent;
}
.cid-sQknKIJ5xL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQknKIJ5xL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQknKIJ5xL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #28196c;
}
.cid-sQknKIJ5xL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQknKIJ5xL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQknKIJ5xL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQknKIJ5xL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQknKIJ5xL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQknKIJ5xL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQknKIJ5xL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQknKIJ5xL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQknKIJ5xL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQknKIJ5xL .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-sQknKIJ5xL .navbar {
    height: 70px;
  }
  .cid-sQknKIJ5xL .navbar.opened {
    height: auto;
  }
  .cid-sQknKIJ5xL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQknOmvbyo {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/-2.fw-1921x751.jpg");
}
.cid-sQknOmvbyo .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-sQknOmvbyo .card-box {
  z-index: 2;
  position: relative;
}
.cid-sQknOmvbyo .mbr-iconfont {
  font-size: 2rem;
  color: #f2effc;
  background: #9c40bf;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-sQknOmvbyo .mbr-iconfont-big {
  font-size: 16rem;
  color: #9c40bf;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-sQknOmvbyo .card-title,
.cid-sQknOmvbyo .card-text {
  transition: all 0.3s;
}
.cid-sQknOmvbyo .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #160830;
  transition: all 0.3s;
}
.cid-sQknOmvbyo .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-sQknOmvbyo .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sQknOmvbyo .card-title,
.cid-sQknOmvbyo .iconfont-wrapper {
  color: #409bbf;
  text-align: center;
}
.cid-sQknOmvbyo .card-text {
  color: #f2effc;
  text-align: center;
}
.cid-sQknOmvbyo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sQknOmvbyo .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sZ6CKkAmJx {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #1e152e;
}
.cid-sZ6CKkAmJx .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-sZ6CKkAmJx .title-wrapper {
  padding: 0 12px;
}
.cid-sZ6CKkAmJx .text-block {
  padding: 48px 24px;
}
.cid-sZ6CKkAmJx .video-wrapper iframe {
  width: 100%;
}
.cid-sZ6CKkAmJx .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-sZ6CKkAmJx .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-sZ6CKkAmJx .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-sZ6CKkAmJx .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-sZ6CKkAmJx .mbr-text,
.cid-sZ6CKkAmJx .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-sZ6CKkAmJx .video-block {
    border-left: none;
  }
  .cid-sZ6CKkAmJx .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-sZ6CKkAmJx .title-wrapper {
    padding: 0 48px;
  }
  .cid-sZ6CKkAmJx .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-sZ6CKkAmJx .mbr-section-subtitle {
  color: #9c40bf;
}
.cid-t02zh0yCEV {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/2020-06-06-dark-night-sky-stars-and-slight-silky-clouds-2160p-1920x1080.jpg");
}
.cid-t02zh0yCEV .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t02zh0yCEV .card-box {
  z-index: 2;
  position: relative;
}
.cid-t02zh0yCEV .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #9284d4;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t02zh0yCEV .mbr-iconfont-big {
  font-size: 16rem;
  color: #9284d4;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t02zh0yCEV .card-title,
.cid-t02zh0yCEV .card-text {
  transition: all 0.3s;
}
.cid-t02zh0yCEV .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #212428;
  transition: all 0.3s;
}
.cid-t02zh0yCEV .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t02zh0yCEV .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t02zh0yCEV .card-title,
.cid-t02zh0yCEV .iconfont-wrapper {
  color: #ffffff;
}
.cid-t02zh0yCEV .card-text {
  color: #bbbbbb;
}
.cid-t02zh0yCEV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t02zh0yCEV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t02BrfvChX {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/2020-06-06-dark-night-sky-stars-and-slight-silky-clouds-2160p-1920x1080.jpg");
}
.cid-t02BrfvChX .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t02BrfvChX .card-box {
  z-index: 2;
  position: relative;
}
.cid-t02BrfvChX .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #8364e2;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t02BrfvChX .mbr-iconfont-big {
  font-size: 16rem;
  color: #8364e2;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t02BrfvChX .card-title,
.cid-t02BrfvChX .card-text {
  transition: all 0.3s;
}
.cid-t02BrfvChX .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #212428;
  transition: all 0.3s;
}
.cid-t02BrfvChX .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t02BrfvChX .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t02BrfvChX .card-title,
.cid-t02BrfvChX .iconfont-wrapper {
  color: #ffffff;
}
.cid-t02BrfvChX .card-text {
  color: #bbbbbb;
}
.cid-t02BrfvChX .mbr-section-title {
  color: #ffffff;
}
.cid-t02BrfvChX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sQknU6PUTh {
  padding-top: 9rem;
  padding-bottom: 8rem;
  background-color: #160830;
}
.cid-sQknU6PUTh .item-img {
  position: relative;
}
.cid-sQknU6PUTh .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-sQknU6PUTh .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-sQknU6PUTh .btn-tag:hover,
.cid-sQknU6PUTh .btn-tag:focus {
  box-shadow: none;
}
.cid-sQknU6PUTh img,
.cid-sQknU6PUTh .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sQknU6PUTh .item:focus,
.cid-sQknU6PUTh span:focus {
  outline: none;
}
.cid-sQknU6PUTh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sQknU6PUTh .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-sQknU6PUTh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sQknU6PUTh .mbr-section-title {
  color: #f4f4f4;
}
.cid-sQknU6PUTh .mbr-text,
.cid-sQknU6PUTh .mbr-section-btn {
  color: #f4f4f4;
}
.cid-sQknU6PUTh .item-title {
  color: #bbbbbb;
}
.cid-sQknU6PUTh .item-subtitle {
  color: #f4f4f4;
}
.cid-sYZl7OlpMP {
  padding-top: 6rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/5c9ae1-dbc0698291b44968a87e11b34802bf64-mv2.gif");
}
.cid-sYZl7OlpMP .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-sYZl7OlpMP .card-box {
  z-index: 2;
  position: relative;
}
.cid-sYZl7OlpMP .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #65c6d4;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-sYZl7OlpMP .mbr-iconfont-big {
  font-size: 16rem;
  color: #65c6d4;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-sYZl7OlpMP .card-title,
.cid-sYZl7OlpMP .card-text {
  transition: all 0.3s;
}
.cid-sYZl7OlpMP .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #28196c;
  transition: all 0.3s;
}
.cid-sYZl7OlpMP .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-sYZl7OlpMP .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sYZl7OlpMP .card-title,
.cid-sYZl7OlpMP .iconfont-wrapper {
  color: #409bbf;
  text-align: center;
}
.cid-sYZl7OlpMP .card-text {
  color: #ffffff;
  text-align: center;
}
.cid-sYZl7OlpMP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sYZl7OlpMP .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sYZszubkTD {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/-1-800x600.jpg");
}
.cid-sYZszubkTD .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-sYZszubkTD .row {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-sYZszubkTD .col-text {
    padding: 0 30px;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sYZszubkTD .col-text {
    margin-bottom: 3rem;
  }
}
.cid-sYZszubkTD .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-sYZszubkTD .text-wrapper {
    text-align: center !important;
  }
}
.cid-sYZszubkTD .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #98dee8;
}
@media (max-width: 767px) {
  .cid-sYZszubkTD .label-text {
    text-align: center !important;
  }
}
.cid-sYZszubkTD .mbr-section-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-sYZszubkTD .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sYZszubkTD .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-sYZszubkTD .mbr-text {
    text-align: center !important;
  }
}
.cid-sYZszubkTD .btn-container {
  width: 100%;
  margin-top: 8px;
}
.cid-sYZszubkTD .mbr-section-btn .btn {
  padding: 0;
}
.cid-sYZszubkTD .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-sYZszubkTD .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-sYZszubkTD .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-sYZszubkTD .card {
  padding: 0 12px 30px 12px;
}
@media (min-width: 992px) {
  .cid-sYZszubkTD .card {
    padding: 0 30px 30px 30px;
  }
}
.cid-sYZszubkTD .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sYZszubkTD .card-title {
  color: #d17cf1;
  margin-bottom: 1rem;
}
.cid-sYZszubkTD .card-inside-border {
  width: 100%;
  height: 1px;
  margin-bottom: 1rem;
  background-color: #555555;
}
.cid-sYZszubkTD .card-text {
  color: #ffffff;
  margin-bottom: 24px;
}
.cid-sYZszubkTD .mbr-section-title,
.cid-sYZszubkTD .mbr-section-btn {
  color: #ffffff;
}
.cid-sZ0erfxFWb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pexels-stein-egil-liland-3374210-2000x1318.jpg");
}
.cid-sZ0erfxFWb .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
.cid-sZ0erfxFWb .item .icon-wrap {
  text-align: center;
}
.cid-sZ0erfxFWb .item::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 97%;
  color: #6917c7;
  transform: translate(-50%, 0);
}
.cid-sZ0erfxFWb .item:last-child:before {
  display: none;
}
.cid-sZ0erfxFWb .item.last::before {
  display: none;
}
.cid-sZ0erfxFWb .icon-box {
  background: #6917c7;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-sZ0erfxFWb .text-box {
  text-align: center;
}
.cid-sZ0erfxFWb span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
@media (max-width: 991px) {
  .cid-sZ0erfxFWb .card {
    margin-bottom: 2rem;
  }
  .cid-sZ0erfxFWb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sZ0erfxFWb .card-title,
.cid-sZ0erfxFWb .card-box {
  color: #ffffff;
}
.cid-sZ0erfxFWb .icon-text {
  color: #ffffff;
  text-align: center;
}
.cid-sQknVX460o {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/-21-cryptocurrency-wallpaper-hd-best-cryptocurrency-stock-photos-pictures-and-royalty-free-612x344.jpg");
}
.cid-sQknVX460o .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sQknVX460o .team-card:hover {
  transform: translateY(-10px);
}
.cid-sQknVX460o .card-wrap {
  background: #160830;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .cid-sQknVX460o .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sQknVX460o .card-wrap .image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-sQknVX460o .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sQknVX460o .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sQknVX460o .card-text {
  padding-bottom: 1rem;
}
.cid-sQknVX460o .social-row {
  text-align: center;
}
.cid-sQknVX460o .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #403f83;
  transition: all 0.3s;
}
.cid-sQknVX460o .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}
.cid-sQknVX460o .social-row .soc-item:hover {
  background: #ffffff;
}
.cid-sQknVX460o .social-row .soc-item:hover .mbr-iconfont {
  color: #403f83;
}
.cid-sQknVX460o .mbr-role,
.cid-sQknVX460o .social-row {
  color: #40b0bf;
}
.cid-sQknVX460o .card-title,
.cid-sQknVX460o .social-row {
  color: #ffffff;
}
.cid-sQknVX460o .card-text,
.cid-sQknVX460o .mbr-section-btn,
.cid-sQknVX460o .social-row {
  color: #bbbbbb;
}
.cid-sQknVX460o .mbr-section-title {
  color: #ffffff;
}
.cid-sQknVX460o .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-sZ0klwuUfb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #020203;
}
.cid-sZ0klwuUfb .row {
  align-items: center;
}
.cid-sZ0klwuUfb .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-sZ0klwuUfb .image-wrapper {
    padding: 40px 1rem 1rem 1rem;
  }
}
.cid-sZ0klwuUfb .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sZ0klwuUfb .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-sZ0klwuUfb .header-text {
    padding-right: 0;
  }
}
.cid-sZ0klwuUfb .label-text {
  width: 100%;
  color: #b9abe5;
}
.cid-sZ0klwuUfb .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-sZ0klwuUfb .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-sZ0klwuUfb .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-sZ0klwuUfb .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-sZ0klwuUfb .iconfont-wrapper {
  color: #111111 !important;
}
.cid-sZ0klwuUfb .iconfont-wrapper:hover {
  color: #8364e2 !important;
}
.cid-sZ0klwuUfb .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-sZ0klwuUfb .contacts-text,
.cid-sZ0klwuUfb .icons-menu {
  color: #d17cf1;
}
.cid-sZ0plkSYJg {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #160830;
}
.cid-sZ0plkSYJg .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sZ0plkSYJg .row {
  border-bottom: 1px solid #7f6cc0;
}
.cid-sZ0plkSYJg H2 {
  color: #e7272d;
}
.cid-sZ0plkSYJg .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sZ0plkSYJg .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sZ0plkSYJg .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #7f6cc0;
}
.cid-sZ0plkSYJg .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #7f6cc0;
}
.cid-sZ0plkSYJg .col-lg-12 {
  overflow: hidden;
}
.cid-sZ0plkSYJg H4 {
  color: #fbbe36;
}
.cid-sZ0plkSYJg .mbr-text,
.cid-sZ0plkSYJg .mbr-section-btn {
  color: #9c40bf;
}
@media (max-width: 767px) {
  .cid-sZ0plkSYJg .logo-wrap:before {
    content: none;
  }
  .cid-sZ0plkSYJg .logo-wrap:after {
    content: none;
  }
}
