body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6d2a86 !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: #6d2a86 !important;
  border-color: #6d2a86 !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: #371544 !important;
  border-color: #371544 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #371544 !important;
  border-color: #371544 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6d2a86;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #371544 !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: #6d2a86 !important;
  border-color: #6d2a86 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6d2a86 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #2e1238 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6d2a86;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6d2a86;
  border-color: #6d2a86;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6d2a86;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b062ce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6d2a86 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6d2a86;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6d2a86;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6d2a86;
}
.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: #6d2a86;
  border-bottom-color: #6d2a86;
}
.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: #6d2a86 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236d2a86' %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-t3EPyVWdi3 {
  z-index: 1000;
  width: 100%;
}
.cid-t3EPyVWdi3 nav.navbar {
  position: fixed;
}
.cid-t3EPyVWdi3 .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-t3EPyVWdi3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3EPyVWdi3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3EPyVWdi3 .dropdown-item:hover,
.cid-t3EPyVWdi3 .dropdown-item:focus {
  background: #6d2a86 !important;
  color: white !important;
}
.cid-t3EPyVWdi3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3EPyVWdi3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3EPyVWdi3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3EPyVWdi3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3EPyVWdi3 .nav-link {
  position: relative;
}
.cid-t3EPyVWdi3 .container {
  display: flex;
  margin: auto;
}
.cid-t3EPyVWdi3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3EPyVWdi3 .dropdown-menu,
.cid-t3EPyVWdi3 .navbar.opened {
  background: #442f7c !important;
}
.cid-t3EPyVWdi3 .nav-item:focus,
.cid-t3EPyVWdi3 .nav-link:focus {
  outline: none;
}
.cid-t3EPyVWdi3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3EPyVWdi3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3EPyVWdi3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3EPyVWdi3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3EPyVWdi3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3EPyVWdi3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3EPyVWdi3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(68, 47, 124, 0.5);
}
.cid-t3EPyVWdi3 .navbar.opened {
  transition: all 0.3s;
}
.cid-t3EPyVWdi3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3EPyVWdi3 .navbar .navbar-logo img {
  width: auto;
}
.cid-t3EPyVWdi3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3EPyVWdi3 .navbar.collapsed {
  justify-content: center;
}
.cid-t3EPyVWdi3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3EPyVWdi3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3EPyVWdi3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-t3EPyVWdi3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3EPyVWdi3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3EPyVWdi3 .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-t3EPyVWdi3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3EPyVWdi3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3EPyVWdi3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3EPyVWdi3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3EPyVWdi3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3EPyVWdi3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3EPyVWdi3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3EPyVWdi3 .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-t3EPyVWdi3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3EPyVWdi3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3EPyVWdi3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3EPyVWdi3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3EPyVWdi3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3EPyVWdi3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3EPyVWdi3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3EPyVWdi3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3EPyVWdi3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3EPyVWdi3 .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-t3EPyVWdi3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3EPyVWdi3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3EPyVWdi3 .dropdown-item.active,
.cid-t3EPyVWdi3 .dropdown-item:active {
  background-color: transparent;
}
.cid-t3EPyVWdi3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3EPyVWdi3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3EPyVWdi3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3EPyVWdi3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #442f7c;
}
.cid-t3EPyVWdi3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3EPyVWdi3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3EPyVWdi3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3EPyVWdi3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3EPyVWdi3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3EPyVWdi3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #442f7c;
}
.cid-t3EPyVWdi3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3EPyVWdi3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3EPyVWdi3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3EPyVWdi3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3EPyVWdi3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3EPyVWdi3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3EPyVWdi3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3EPyVWdi3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3EPyVWdi3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3EPyVWdi3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3EPyVWdi3 .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-t3EPyVWdi3 .navbar {
    height: 70px;
  }
  .cid-t3EPyVWdi3 .navbar.opened {
    height: auto;
  }
  .cid-t3EPyVWdi3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3EPyWs4fC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/risk.webp");
}
.cid-t3EPyWs4fC .mbr-section-title {
  text-align: right;
}
.cid-t3EPyWs4fC .mbr-text,
.cid-t3EPyWs4fC .mbr-section-btn {
  text-align: right;
}
.cid-t3EQvjMm8Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3EQvjMm8Z .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t3EQvjMm8Z .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-t3EQvjMm8Z .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3EQvjMm8Z .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t3EQvjMm8Z .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t3EQvjMm8Z .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t3EQvjMm8Z .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-t3EQvjMm8Z .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t3Kl0LRNSs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3Kl0LRNSs .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t3Kl0LRNSs .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t3Kl0LRNSs .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6d2a86;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-t3Kjr1VPqM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3Kjr1VPqM .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t3Kjr1VPqM .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3Kjr1VPqM .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t3Kjr1VPqM .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t3Kjr1VPqM .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t3Kjr1VPqM .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t3Kjr1VPqM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t3KjJbxduu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3KjJbxduu .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-t3KjJbxduu .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-t3KjJbxduu .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3KjJbxduu .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t3KjJbxduu .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t3KjJbxduu .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t3KjJbxduu .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-t3KjJbxduu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t3KjKpKTjy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3KjKpKTjy .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t3KjKpKTjy .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3KjKpKTjy .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t3KjKpKTjy .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t3KjKpKTjy .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t3KjKpKTjy .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t3KjKpKTjy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t3LZKGGe67 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t3LZKGGe67 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-t3LZKGGe67 input,
.cid-t3LZKGGe67 textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-t3LZKGGe67 img {
  width: 90%;
  border-radius: 8px;
}
.cid-t3LZKGGe67 .title {
  margin-bottom: 1rem;
}
.cid-t3LZKGGe67 p {
  line-height: 1.6;
}
.cid-t3LZKGGe67 .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-t3LZKGGe67 textarea {
  min-height: 160px;
}
.cid-t3LZKGGe67 H5 {
  color: #6d2a86;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-t3LZKGGe67 img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-t3LZKGGe67 .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-t3LZKGGe67 H2 {
  color: #6d2a86;
}
.cid-t3LZKGGe67 H3 {
  color: #111111;
}
.cid-t3LZKGGe67 .mbr-text {
  color: #716c80;
}
.cid-t4SHt9S9Ew {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-t4SHt9S9Ew .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-t4SHt9S9Ew .container {
  max-width: 1400px;
}
.cid-t4SHt9S9Ew li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-t4SHt9S9Ew .col-lg-3 {
    max-width: 20%;
  }
}
.cid-t4SHt9S9Ew .time {
  line-height: 2;
}
.cid-t4SHt9S9Ew .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t4SHt9S9Ew .text-wrap {
  width: 100%;
}
.cid-t4SHt9S9Ew .item-wrap {
  display: inline-block;
}
.cid-t4SHt9S9Ew .item-wrap span,
.cid-t4SHt9S9Ew .item-wrap p {
  transition: all 0.3s;
}
.cid-t4SHt9S9Ew .item-wrap:hover span,
.cid-t4SHt9S9Ew .item-wrap:hover p {
  color: #ffffff !important;
}
.cid-t4SHt9S9Ew .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-t4SHt9S9Ew .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-t4SHt9S9Ew .socicon-wrap .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t4SHt9S9Ew .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t4SHt9S9Ew .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t4SHt9S9Ew .socicon-wrap {
    margin: auto;
  }
}
.cid-t4SHt9S9Ew .title {
  color: #ffffff;
}
.cid-t4SHt9S9Ew .mbr-text {
  color: #999999;
}
.cid-t4SHt9S9Ew .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-t4SHt9S9Ew .icon-title,
.cid-t4SHt9S9Ew .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-t3rWD2EuTM {
  z-index: 1000;
  width: 100%;
}
.cid-t3rWD2EuTM nav.navbar {
  position: fixed;
}
.cid-t3rWD2EuTM .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-t3rWD2EuTM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3rWD2EuTM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3rWD2EuTM .dropdown-item:hover,
.cid-t3rWD2EuTM .dropdown-item:focus {
  background: #6d2a86 !important;
  color: white !important;
}
.cid-t3rWD2EuTM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3rWD2EuTM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3rWD2EuTM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3rWD2EuTM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3rWD2EuTM .nav-link {
  position: relative;
}
.cid-t3rWD2EuTM .container {
  display: flex;
  margin: auto;
}
.cid-t3rWD2EuTM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3rWD2EuTM .dropdown-menu,
.cid-t3rWD2EuTM .navbar.opened {
  background: #442f7c !important;
}
.cid-t3rWD2EuTM .nav-item:focus,
.cid-t3rWD2EuTM .nav-link:focus {
  outline: none;
}
.cid-t3rWD2EuTM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3rWD2EuTM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3rWD2EuTM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3rWD2EuTM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3rWD2EuTM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3rWD2EuTM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3rWD2EuTM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(68, 47, 124, 0.5);
}
.cid-t3rWD2EuTM .navbar.opened {
  transition: all 0.3s;
}
.cid-t3rWD2EuTM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3rWD2EuTM .navbar .navbar-logo img {
  width: auto;
}
.cid-t3rWD2EuTM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3rWD2EuTM .navbar.collapsed {
  justify-content: center;
}
.cid-t3rWD2EuTM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3rWD2EuTM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3rWD2EuTM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-t3rWD2EuTM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3rWD2EuTM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3rWD2EuTM .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-t3rWD2EuTM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3rWD2EuTM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3rWD2EuTM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3rWD2EuTM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3rWD2EuTM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3rWD2EuTM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3rWD2EuTM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3rWD2EuTM .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-t3rWD2EuTM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3rWD2EuTM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3rWD2EuTM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3rWD2EuTM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3rWD2EuTM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3rWD2EuTM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3rWD2EuTM .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3rWD2EuTM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3rWD2EuTM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3rWD2EuTM .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-t3rWD2EuTM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3rWD2EuTM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3rWD2EuTM .dropdown-item.active,
.cid-t3rWD2EuTM .dropdown-item:active {
  background-color: transparent;
}
.cid-t3rWD2EuTM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3rWD2EuTM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3rWD2EuTM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3rWD2EuTM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #442f7c;
}
.cid-t3rWD2EuTM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3rWD2EuTM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3rWD2EuTM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3rWD2EuTM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3rWD2EuTM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3rWD2EuTM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #442f7c;
}
.cid-t3rWD2EuTM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3rWD2EuTM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rWD2EuTM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3rWD2EuTM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3rWD2EuTM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rWD2EuTM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3rWD2EuTM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3rWD2EuTM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3rWD2EuTM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3rWD2EuTM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3rWD2EuTM .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-t3rWD2EuTM .navbar {
    height: 70px;
  }
  .cid-t3rWD2EuTM .navbar.opened {
    height: auto;
  }
  .cid-t3rWD2EuTM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3KrWeglHQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/how-to-advance-ics-cyber-security-800x443.jpg");
}
.cid-t3KrWeglHQ .mbr-section-title {
  text-align: right;
}
.cid-t3KrWeglHQ .mbr-text,
.cid-t3KrWeglHQ .mbr-section-btn {
  text-align: right;
}
.cid-t8mWv7OezK {
  padding-top: 3rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #f7f7f7;
}
.cid-t8mWv7OezK .item:focus,
.cid-t8mWv7OezK span:focus {
  outline: none;
}
.cid-t8mWv7OezK .item-wrapper {
  position: relative;
}
.cid-t8mWv7OezK .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-t8mWv7OezK .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-t8mWv7OezK .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 24px;
}
.cid-t8mWv7OezK .mbr-text,
.cid-t8mWv7OezK .mbr-section-btn {
  text-align: left;
}
.cid-t8mWv7OezK .item-title {
  text-align: left;
}
.cid-t8mWv7OezK .item-subtitle {
  text-align: left;
}
.cid-t8mWv7OezK .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 33%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-t8mWv7OezK .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-t8mWv7OezK .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-t8mWv7OezK .embla__slide {
    min-width: 375px;
  }
}
.cid-t8mWv7OezK .embla__button--next,
.cid-t8mWv7OezK .embla__button--prev {
  display: flex;
}
.cid-t8mWv7OezK .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-t8mWv7OezK .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t8mWv7OezK .embla__button:hover {
  background: #47b5ed;
  color: #fff;
  transform: scale(1.05);
}
.cid-t8mWv7OezK .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8mWv7OezK .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8mWv7OezK .embla__button {
    top: auto;
  }
}
.cid-t8mWv7OezK .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t8mWv7OezK .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t8mWv7OezK .embla {
  position: relative;
  width: 100%;
}
.cid-t8mWv7OezK .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-t8mWv7OezK .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t8mWv7OezK .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t8mWv7OezK .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t8mWv7OezK .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-t8mWv7OezK .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-t8mWv7OezK .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  padding: 48px 32px;
  border: 1px solid #eff0f6;
  background-color: #ffffff;
}
.cid-t8mWv7OezK .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  padding: 0px 20px 20px;
  display: flex;
  justify-content: center;
}
.cid-t8mWv7OezK img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.cid-t8mWv7OezK .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-t8mWv7OezK .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-t8mWv7OezK .shadow:hover .number,
.cid-t8mWv7OezK .shadow:hover .card-title {
  color: #47b5ed !important;
}
.cid-t8mWv7OezK .shadow:hover .iconfont-wrapper > .mbr-iconfont > span {
  color: #000000 !important;
}
.cid-t8mWv7OezK .card-title {
  margin-bottom: 16px;
  color: #4c4c4c;
  transition: 0.35s;
  text-align: left;
}
.cid-t8mWv7OezK .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-t8mWv7OezK H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-t8mWv7OezK .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 34px 25px 54px 31px;
}
.cid-t8mWv7OezK .date {
  margin-bottom: 24px;
  color: #8c8c95;
}
.cid-t8mWv7OezK .link-title {
  display: inline-block;
}
.cid-t8mWv7OezK .margin {
  margin-right: 14px;
}
.cid-t8mWv7OezK .article {
  display: contents;
}
.cid-t8mWv7OezK .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
}
.cid-t8mWv7OezK .link-row {
  align-items: center;
}
@media (max-width: 530px) {
  .cid-t8mWv7OezK .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width: 480px) {
  .cid-t8mWv7OezK .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
.cid-t8mWv7OezK .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
}
.cid-t8mWv7OezK .iconfont-wrapper .mbr-iconfont::before {
  font-size: 50px;
  padding: 25px;
  border-radius: 50%;
}
.cid-t8mWv7OezK .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-t8mWv7OezK .btn {
  margin-top: 20px;
}
.cid-t8mWv7OezK .card-title,
.cid-t8mWv7OezK .iconfont-wrapper {
  text-align: center;
  color: #4d1661;
}
.cid-t8mWv7OezK a.btn > span {
  margin-left: 0.5rem;
}
.cid-t8n0aIXVfZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t8n0aIXVfZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8n0aIXVfZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8n0aIXVfZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8n7POXv7s {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t8n7POXv7s .row {
  align-items: stretch;
  justify-content: center;
}
.cid-t8n7POXv7s .img-item {
  position: relative;
}
.cid-t8n7POXv7s .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-t8n7POXv7s .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-t8n7POXv7s .img-item .img-description p {
  margin-bottom: 0;
}
.cid-t8n9xJB0UW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t8n9xJB0UW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8n9xJB0UW .row {
  flex-direction: row-reverse;
}
.cid-t8n9xJB0UW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8n9xJB0UW .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8mvXmDAUN {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t8mvXmDAUN .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-t8mvXmDAUN input,
.cid-t8mvXmDAUN textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-t8mvXmDAUN img {
  width: 90%;
  border-radius: 8px;
}
.cid-t8mvXmDAUN .title {
  margin-bottom: 1rem;
}
.cid-t8mvXmDAUN p {
  line-height: 1.6;
}
.cid-t8mvXmDAUN .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-t8mvXmDAUN textarea {
  min-height: 160px;
}
.cid-t8mvXmDAUN H5 {
  color: #6d2a86;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-t8mvXmDAUN img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-t8mvXmDAUN .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-t8mvXmDAUN H2 {
  color: #6d2a86;
}
.cid-t8mvXmDAUN H3 {
  color: #111111;
}
.cid-t8mvXmDAUN .mbr-text {
  color: #716c80;
}
.cid-t4SHt9S9Ew {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-t4SHt9S9Ew .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-t4SHt9S9Ew .container {
  max-width: 1400px;
}
.cid-t4SHt9S9Ew li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-t4SHt9S9Ew .col-lg-3 {
    max-width: 20%;
  }
}
.cid-t4SHt9S9Ew .time {
  line-height: 2;
}
.cid-t4SHt9S9Ew .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t4SHt9S9Ew .text-wrap {
  width: 100%;
}
.cid-t4SHt9S9Ew .item-wrap {
  display: inline-block;
}
.cid-t4SHt9S9Ew .item-wrap span,
.cid-t4SHt9S9Ew .item-wrap p {
  transition: all 0.3s;
}
.cid-t4SHt9S9Ew .item-wrap:hover span,
.cid-t4SHt9S9Ew .item-wrap:hover p {
  color: #ffffff !important;
}
.cid-t4SHt9S9Ew .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-t4SHt9S9Ew .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-t4SHt9S9Ew .socicon-wrap .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t4SHt9S9Ew .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t4SHt9S9Ew .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t4SHt9S9Ew .socicon-wrap {
    margin: auto;
  }
}
.cid-t4SHt9S9Ew .title {
  color: #ffffff;
}
.cid-t4SHt9S9Ew .mbr-text {
  color: #999999;
}
.cid-t4SHt9S9Ew .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-t4SHt9S9Ew .icon-title,
.cid-t4SHt9S9Ew .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-t3LRH1X0Lk {
  z-index: 1000;
  width: 100%;
}
.cid-t3LRH1X0Lk nav.navbar {
  position: fixed;
}
.cid-t3LRH1X0Lk .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-t3LRH1X0Lk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3LRH1X0Lk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3LRH1X0Lk .dropdown-item:hover,
.cid-t3LRH1X0Lk .dropdown-item:focus {
  background: #6d2a86 !important;
  color: white !important;
}
.cid-t3LRH1X0Lk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3LRH1X0Lk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3LRH1X0Lk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3LRH1X0Lk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3LRH1X0Lk .nav-link {
  position: relative;
}
.cid-t3LRH1X0Lk .container {
  display: flex;
  margin: auto;
}
.cid-t3LRH1X0Lk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3LRH1X0Lk .dropdown-menu,
.cid-t3LRH1X0Lk .navbar.opened {
  background: #442f7c !important;
}
.cid-t3LRH1X0Lk .nav-item:focus,
.cid-t3LRH1X0Lk .nav-link:focus {
  outline: none;
}
.cid-t3LRH1X0Lk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3LRH1X0Lk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3LRH1X0Lk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3LRH1X0Lk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3LRH1X0Lk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3LRH1X0Lk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3LRH1X0Lk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(68, 47, 124, 0.5);
}
.cid-t3LRH1X0Lk .navbar.opened {
  transition: all 0.3s;
}
.cid-t3LRH1X0Lk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3LRH1X0Lk .navbar .navbar-logo img {
  width: auto;
}
.cid-t3LRH1X0Lk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3LRH1X0Lk .navbar.collapsed {
  justify-content: center;
}
.cid-t3LRH1X0Lk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3LRH1X0Lk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3LRH1X0Lk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-t3LRH1X0Lk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3LRH1X0Lk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3LRH1X0Lk .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-t3LRH1X0Lk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3LRH1X0Lk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3LRH1X0Lk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3LRH1X0Lk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3LRH1X0Lk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3LRH1X0Lk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3LRH1X0Lk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3LRH1X0Lk .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-t3LRH1X0Lk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3LRH1X0Lk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3LRH1X0Lk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3LRH1X0Lk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3LRH1X0Lk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3LRH1X0Lk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3LRH1X0Lk .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3LRH1X0Lk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3LRH1X0Lk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3LRH1X0Lk .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-t3LRH1X0Lk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3LRH1X0Lk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3LRH1X0Lk .dropdown-item.active,
.cid-t3LRH1X0Lk .dropdown-item:active {
  background-color: transparent;
}
.cid-t3LRH1X0Lk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3LRH1X0Lk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3LRH1X0Lk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3LRH1X0Lk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #442f7c;
}
.cid-t3LRH1X0Lk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3LRH1X0Lk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3LRH1X0Lk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3LRH1X0Lk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3LRH1X0Lk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3LRH1X0Lk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #442f7c;
}
.cid-t3LRH1X0Lk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3LRH1X0Lk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3LRH1X0Lk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3LRH1X0Lk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3LRH1X0Lk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3LRH1X0Lk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3LRH1X0Lk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3LRH1X0Lk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3LRH1X0Lk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3LRH1X0Lk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3LRH1X0Lk .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-t3LRH1X0Lk .navbar {
    height: 70px;
  }
  .cid-t3LRH1X0Lk .navbar.opened {
    height: auto;
  }
  .cid-t3LRH1X0Lk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3LRH3pZ1B {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cid-t3LRH3pZ1B .mbr-section-title {
  text-align: right;
}
.cid-t3LRH3pZ1B .mbr-text,
.cid-t3LRH3pZ1B .mbr-section-btn {
  text-align: right;
}
.cid-t3LRH41BAi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3LRH41BAi .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-t3LRH41BAi .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-t3LRH41BAi .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3LRH41BAi .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t3LRH41BAi .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t3LRH41BAi .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t3LRH41BAi .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-t3LRH41BAi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t4TC0xawQE {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4TC0xawQE .row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.cid-t4TC0xawQE .head-row {
  align-items: center;
  margin-bottom: 20px;
}
.cid-t4TC0xawQE .mbr-section-head {
  flex-grow: 1;
}
.cid-t4TC0xawQE .col-btn {
  flex-grow: 1;
}
.cid-t4TC0xawQE .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .cid-t4TC0xawQE .label-text {
    text-align: center !important;
  }
}
.cid-t4TC0xawQE .mbr-section-title {
  color: #010d4c;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-t4TC0xawQE .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t4TC0xawQE .mbr-section-subtitle {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  margin-top: 12px;
}
@media (max-width: 575px) {
  .cid-t4TC0xawQE .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-t4TC0xawQE .mbr-section-btn {
  text-align: right;
}
@media (max-width: 575px) {
  .cid-t4TC0xawQE .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-t4TC0xawQE .mbr-section-btn .btn {
  min-height: 55px;
  padding: 10px 26px;
}
.cid-t4TC0xawQE .mbr-section-btn .btn-primary:hover {
  background-color: #40b0bf !important;
  color: #ffffff !important;
}
.cid-t4TC0xawQE .mbr-section-btn .btn-secondary:hover {
  background-color: #40b0bf !important;
  color: #ffffff !important;
}
.cid-t4TC0xawQE .item:focus,
.cid-t4TC0xawQE span:focus {
  outline: none;
}
.cid-t4TC0xawQE .item {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.cid-t4TC0xawQE .item-wrapper {
  position: relative;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 35px 70px rgba(0, 21, 133, 0.04);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.cid-t4TC0xawQE .item-wrapper .item-content a:hover {
  color: #6d2a86 !important;
}
.cid-t4TC0xawQE .item-wrapper:hover {
  transform: translateY(-5px);
}
.cid-t4TC0xawQE .item-img {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  height: 340px;
}
@media (max-width: 1399px) {
  .cid-t4TC0xawQE .item-img {
    height: 290px;
  }
}
@media (max-width: 1199px) {
  .cid-t4TC0xawQE .item-img {
    height: 508px;
  }
}
@media (max-width: 991px) {
  .cid-t4TC0xawQE .item-img {
    height: 365px;
  }
}
@media (max-width: 767px) {
  .cid-t4TC0xawQE .item-img {
    height: 267px;
  }
}
@media (max-width: 575px) {
  .cid-t4TC0xawQE .item-img {
    height: 100%;
    max-height: 582px;
  }
}
.cid-t4TC0xawQE .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t4TC0xawQE .item-content-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 5px 20px;
}
.cid-t4TC0xawQE .item-title {
  width: 100%;
  color: #A1A0A0;
  margin-bottom: 0;
}
.cid-t4TC0xawQE .mbr-text {
  color: #010d4c;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 0;
}
.cid-t8mhjATWqF {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-t8mhjATWqF .row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.cid-t8mhjATWqF .head-row {
  align-items: center;
  margin-bottom: 20px;
}
.cid-t8mhjATWqF .mbr-section-head {
  flex-grow: 1;
}
.cid-t8mhjATWqF .col-btn {
  flex-grow: 1;
}
.cid-t8mhjATWqF .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .cid-t8mhjATWqF .label-text {
    text-align: center !important;
  }
}
.cid-t8mhjATWqF .mbr-section-title {
  color: #010d4c;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .cid-t8mhjATWqF .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t8mhjATWqF .mbr-section-subtitle {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  margin-top: 12px;
}
@media (max-width: 575px) {
  .cid-t8mhjATWqF .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-t8mhjATWqF .mbr-section-btn {
  text-align: right;
}
@media (max-width: 575px) {
  .cid-t8mhjATWqF .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-t8mhjATWqF .mbr-section-btn .btn {
  min-height: 55px;
  padding: 10px 26px;
}
.cid-t8mhjATWqF .mbr-section-btn .btn-primary:hover {
  background-color: #40b0bf !important;
  color: #ffffff !important;
}
.cid-t8mhjATWqF .mbr-section-btn .btn-secondary:hover {
  background-color: #40b0bf !important;
  color: #ffffff !important;
}
.cid-t8mhjATWqF .item:focus,
.cid-t8mhjATWqF span:focus {
  outline: none;
}
.cid-t8mhjATWqF .item {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.cid-t8mhjATWqF .item-wrapper {
  position: relative;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 35px 70px rgba(0, 21, 133, 0.04);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.cid-t8mhjATWqF .item-wrapper .item-content a:hover {
  color: #6d2a86 !important;
}
.cid-t8mhjATWqF .item-wrapper:hover {
  transform: translateY(-5px);
}
.cid-t8mhjATWqF .item-img {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  height: 340px;
}
@media (max-width: 1399px) {
  .cid-t8mhjATWqF .item-img {
    height: 290px;
  }
}
@media (max-width: 1199px) {
  .cid-t8mhjATWqF .item-img {
    height: 508px;
  }
}
@media (max-width: 991px) {
  .cid-t8mhjATWqF .item-img {
    height: 365px;
  }
}
@media (max-width: 767px) {
  .cid-t8mhjATWqF .item-img {
    height: 267px;
  }
}
@media (max-width: 575px) {
  .cid-t8mhjATWqF .item-img {
    height: 100%;
    max-height: 582px;
  }
}
.cid-t8mhjATWqF .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t8mhjATWqF .item-content-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 5px 20px;
}
.cid-t8mhjATWqF .item-title {
  width: 100%;
  color: #A1A0A0;
  margin-bottom: 0;
}
.cid-t8mhjATWqF .mbr-text {
  color: #010d4c;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 0;
}
.cid-t8mhkh72yv {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-t8mhkh72yv .row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.cid-t8mhkh72yv .head-row {
  align-items: center;
  margin-bottom: 20px;
}
.cid-t8mhkh72yv .mbr-section-head {
  flex-grow: 1;
}
.cid-t8mhkh72yv .col-btn {
  flex-grow: 1;
}
.cid-t8mhkh72yv .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .cid-t8mhkh72yv .label-text {
    text-align: center !important;
  }
}
.cid-t8mhkh72yv .mbr-section-title {
  color: #010d4c;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .cid-t8mhkh72yv .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t8mhkh72yv .mbr-section-subtitle {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  margin-top: 12px;
}
@media (max-width: 575px) {
  .cid-t8mhkh72yv .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-t8mhkh72yv .mbr-section-btn {
  text-align: right;
}
@media (max-width: 575px) {
  .cid-t8mhkh72yv .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-t8mhkh72yv .mbr-section-btn .btn {
  min-height: 55px;
  padding: 10px 26px;
}
.cid-t8mhkh72yv .mbr-section-btn .btn-primary:hover {
  background-color: #40b0bf !important;
  color: #ffffff !important;
}
.cid-t8mhkh72yv .mbr-section-btn .btn-secondary:hover {
  background-color: #40b0bf !important;
  color: #ffffff !important;
}
.cid-t8mhkh72yv .item:focus,
.cid-t8mhkh72yv span:focus {
  outline: none;
}
.cid-t8mhkh72yv .item {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.cid-t8mhkh72yv .item-wrapper {
  position: relative;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 35px 70px rgba(0, 21, 133, 0.04);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.cid-t8mhkh72yv .item-wrapper .item-content a:hover {
  color: #6d2a86 !important;
}
.cid-t8mhkh72yv .item-wrapper:hover {
  transform: translateY(-5px);
}
.cid-t8mhkh72yv .item-img {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  height: 340px;
}
@media (max-width: 1399px) {
  .cid-t8mhkh72yv .item-img {
    height: 290px;
  }
}
@media (max-width: 1199px) {
  .cid-t8mhkh72yv .item-img {
    height: 508px;
  }
}
@media (max-width: 991px) {
  .cid-t8mhkh72yv .item-img {
    height: 365px;
  }
}
@media (max-width: 767px) {
  .cid-t8mhkh72yv .item-img {
    height: 267px;
  }
}
@media (max-width: 575px) {
  .cid-t8mhkh72yv .item-img {
    height: 100%;
    max-height: 582px;
  }
}
.cid-t8mhkh72yv .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t8mhkh72yv .item-content-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 5px 20px;
}
.cid-t8mhkh72yv .item-title {
  width: 100%;
  color: #A1A0A0;
  margin-bottom: 0;
}
.cid-t8mhkh72yv .mbr-text {
  color: #010d4c;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 0;
}
.cid-t8mkuPfd1L {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-t8mkuPfd1L .row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.cid-t8mkuPfd1L .head-row {
  align-items: center;
  margin-bottom: 20px;
}
.cid-t8mkuPfd1L .mbr-section-head {
  flex-grow: 1;
}
.cid-t8mkuPfd1L .col-btn {
  flex-grow: 1;
}
.cid-t8mkuPfd1L .label-text {
  width: 100%;
  color: #913BFF;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .cid-t8mkuPfd1L .label-text {
    text-align: center !important;
  }
}
.cid-t8mkuPfd1L .mbr-section-title {
  color: #010d4c;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .cid-t8mkuPfd1L .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t8mkuPfd1L .mbr-section-subtitle {
  color: #00284E;
  opacity: 0.8;
  margin-bottom: 0;
  margin-top: 12px;
}
@media (max-width: 575px) {
  .cid-t8mkuPfd1L .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-t8mkuPfd1L .mbr-section-btn {
  text-align: right;
}
@media (max-width: 575px) {
  .cid-t8mkuPfd1L .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-t8mkuPfd1L .mbr-section-btn .btn {
  min-height: 55px;
  padding: 10px 26px;
}
.cid-t8mkuPfd1L .mbr-section-btn .btn-primary:hover {
  background-color: #40b0bf !important;
  color: #ffffff !important;
}
.cid-t8mkuPfd1L .mbr-section-btn .btn-secondary:hover {
  background-color: #40b0bf !important;
  color: #ffffff !important;
}
.cid-t8mkuPfd1L .item:focus,
.cid-t8mkuPfd1L span:focus {
  outline: none;
}
.cid-t8mkuPfd1L .item {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.cid-t8mkuPfd1L .item-wrapper {
  position: relative;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 35px 70px rgba(0, 21, 133, 0.04);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.cid-t8mkuPfd1L .item-wrapper .item-content a:hover {
  color: #6d2a86 !important;
}
.cid-t8mkuPfd1L .item-wrapper:hover {
  transform: translateY(-5px);
}
.cid-t8mkuPfd1L .item-img {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  height: 340px;
}
@media (max-width: 1399px) {
  .cid-t8mkuPfd1L .item-img {
    height: 290px;
  }
}
@media (max-width: 1199px) {
  .cid-t8mkuPfd1L .item-img {
    height: 508px;
  }
}
@media (max-width: 991px) {
  .cid-t8mkuPfd1L .item-img {
    height: 365px;
  }
}
@media (max-width: 767px) {
  .cid-t8mkuPfd1L .item-img {
    height: 267px;
  }
}
@media (max-width: 575px) {
  .cid-t8mkuPfd1L .item-img {
    height: 100%;
    max-height: 582px;
  }
}
.cid-t8mkuPfd1L .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t8mkuPfd1L .item-content-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 5px 20px;
}
.cid-t8mkuPfd1L .item-title {
  width: 100%;
  color: #A1A0A0;
  margin-bottom: 0;
}
.cid-t8mkuPfd1L .mbr-text {
  color: #010d4c;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 0;
}
.cid-t3LS07BP4R {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t3LS07BP4R .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-t3LS07BP4R input,
.cid-t3LS07BP4R textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-t3LS07BP4R img {
  width: 90%;
  border-radius: 8px;
}
.cid-t3LS07BP4R .title {
  margin-bottom: 1rem;
}
.cid-t3LS07BP4R p {
  line-height: 1.6;
}
.cid-t3LS07BP4R .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-t3LS07BP4R textarea {
  min-height: 160px;
}
.cid-t3LS07BP4R H5 {
  color: #6d2a86;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-t3LS07BP4R img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-t3LS07BP4R .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-t3LS07BP4R H2 {
  color: #6d2a86;
}
.cid-t3LS07BP4R H3 {
  color: #111111;
}
.cid-t3LS07BP4R .mbr-text {
  color: #716c80;
}
.cid-t4SHt9S9Ew {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-t4SHt9S9Ew .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-t4SHt9S9Ew .container {
  max-width: 1400px;
}
.cid-t4SHt9S9Ew li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-t4SHt9S9Ew .col-lg-3 {
    max-width: 20%;
  }
}
.cid-t4SHt9S9Ew .time {
  line-height: 2;
}
.cid-t4SHt9S9Ew .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t4SHt9S9Ew .text-wrap {
  width: 100%;
}
.cid-t4SHt9S9Ew .item-wrap {
  display: inline-block;
}
.cid-t4SHt9S9Ew .item-wrap span,
.cid-t4SHt9S9Ew .item-wrap p {
  transition: all 0.3s;
}
.cid-t4SHt9S9Ew .item-wrap:hover span,
.cid-t4SHt9S9Ew .item-wrap:hover p {
  color: #ffffff !important;
}
.cid-t4SHt9S9Ew .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-t4SHt9S9Ew .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-t4SHt9S9Ew .socicon-wrap .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t4SHt9S9Ew .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t4SHt9S9Ew .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t4SHt9S9Ew .socicon-wrap {
    margin: auto;
  }
}
.cid-t4SHt9S9Ew .title {
  color: #ffffff;
}
.cid-t4SHt9S9Ew .mbr-text {
  color: #999999;
}
.cid-t4SHt9S9Ew .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-t4SHt9S9Ew .icon-title,
.cid-t4SHt9S9Ew .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-t86QjWMPiz .modal-body .close {
  background: #1b1b1b;
}
.cid-t86QjWMPiz .modal-body .close span {
  font-style: normal;
}
.cid-t86QjWMPiz .carousel-inner > .active,
.cid-t86QjWMPiz .carousel-inner > .next,
.cid-t86QjWMPiz .carousel-inner > .prev {
  display: flex;
}
.cid-t86QjWMPiz .carousel-control .icon-next,
.cid-t86QjWMPiz .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t86QjWMPiz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t86QjWMPiz .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t86QjWMPiz .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t86QjWMPiz .boxed-slider > div {
  position: relative;
}
.cid-t86QjWMPiz .container img {
  width: 100%;
}
.cid-t86QjWMPiz .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t86QjWMPiz .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t86QjWMPiz .mbr-table-cell {
  padding: 0;
}
.cid-t86QjWMPiz .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t86QjWMPiz .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t86QjWMPiz .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t86QjWMPiz .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t86QjWMPiz .carousel-item.active.right,
.cid-t86QjWMPiz .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t86QjWMPiz .carousel-item.active.left,
.cid-t86QjWMPiz .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t86QjWMPiz .carousel-item.active,
.cid-t86QjWMPiz .carousel-item.next.left,
.cid-t86QjWMPiz .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t86QjWMPiz .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: #232323;
  opacity: .8;
  border-radius: 0;
  transition: all .3s;
  z-index: 11;
}
.cid-t86QjWMPiz .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 0;
}
.cid-t86QjWMPiz .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 0;
}
.cid-t86QjWMPiz .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
.cid-t86QjWMPiz .mbr-slider .carousel-control:hover {
  background-color: #6d2a86;
}
@media (max-width: 767px) {
  .cid-t86QjWMPiz .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t86QjWMPiz .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t86QjWMPiz .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t86QjWMPiz .mbr-slider .carousel-indicators li.active,
.cid-t86QjWMPiz .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
  background-color: #6d2a86;
}
.cid-t86QjWMPiz .mbr-slider .carousel-indicators li::after,
.cid-t86QjWMPiz .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t86QjWMPiz .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t86QjWMPiz .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t86QjWMPiz .mbr-slider > .container img {
  width: 100%;
}
.cid-t86QjWMPiz .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t86QjWMPiz .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t86QjWMPiz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t86QjWMPiz .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t86QjWMPiz .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t86QjWMPiz .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t86QjWMPiz .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t86QjWMPiz .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t86QjWMPiz .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t86QjWMPiz .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t86QjWMPiz .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t86QjWMPiz .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t86QjWMPiz .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t86QjWMPiz P {
  text-align: left;
}
.cid-t86QjWMPiz H2 {
  text-align: left;
}
.cid-sBm0GbWLkX {
  z-index: 1000;
  width: 100%;
}
.cid-sBm0GbWLkX nav.navbar {
  position: fixed;
}
.cid-sBm0GbWLkX .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-sBm0GbWLkX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sBm0GbWLkX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sBm0GbWLkX .dropdown-item:hover,
.cid-sBm0GbWLkX .dropdown-item:focus {
  background: #6d2a86 !important;
  color: white !important;
}
.cid-sBm0GbWLkX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sBm0GbWLkX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sBm0GbWLkX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sBm0GbWLkX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBm0GbWLkX .nav-link {
  position: relative;
}
.cid-sBm0GbWLkX .container {
  display: flex;
  margin: auto;
}
.cid-sBm0GbWLkX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBm0GbWLkX .dropdown-menu,
.cid-sBm0GbWLkX .navbar.opened {
  background: #442f7c !important;
}
.cid-sBm0GbWLkX .nav-item:focus,
.cid-sBm0GbWLkX .nav-link:focus {
  outline: none;
}
.cid-sBm0GbWLkX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBm0GbWLkX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBm0GbWLkX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBm0GbWLkX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBm0GbWLkX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBm0GbWLkX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBm0GbWLkX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(68, 47, 124, 0.5);
}
.cid-sBm0GbWLkX .navbar.opened {
  transition: all 0.3s;
}
.cid-sBm0GbWLkX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBm0GbWLkX .navbar .navbar-logo img {
  width: auto;
}
.cid-sBm0GbWLkX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBm0GbWLkX .navbar.collapsed {
  justify-content: center;
}
.cid-sBm0GbWLkX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBm0GbWLkX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sBm0GbWLkX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-sBm0GbWLkX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBm0GbWLkX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBm0GbWLkX .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-sBm0GbWLkX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBm0GbWLkX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBm0GbWLkX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBm0GbWLkX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBm0GbWLkX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBm0GbWLkX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBm0GbWLkX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBm0GbWLkX .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-sBm0GbWLkX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBm0GbWLkX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBm0GbWLkX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBm0GbWLkX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBm0GbWLkX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBm0GbWLkX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBm0GbWLkX .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBm0GbWLkX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBm0GbWLkX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBm0GbWLkX .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-sBm0GbWLkX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBm0GbWLkX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBm0GbWLkX .dropdown-item.active,
.cid-sBm0GbWLkX .dropdown-item:active {
  background-color: transparent;
}
.cid-sBm0GbWLkX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBm0GbWLkX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBm0GbWLkX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBm0GbWLkX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #442f7c;
}
.cid-sBm0GbWLkX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBm0GbWLkX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBm0GbWLkX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBm0GbWLkX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBm0GbWLkX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBm0GbWLkX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #442f7c;
}
.cid-sBm0GbWLkX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBm0GbWLkX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBm0GbWLkX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBm0GbWLkX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBm0GbWLkX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBm0GbWLkX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBm0GbWLkX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBm0GbWLkX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBm0GbWLkX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBm0GbWLkX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBm0GbWLkX .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-sBm0GbWLkX .navbar {
    height: 70px;
  }
  .cid-sBm0GbWLkX .navbar.opened {
    height: auto;
  }
  .cid-sBm0GbWLkX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3LCWUYOji {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t3LCWUYOji .line {
  background-color: #6d2a86;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4SaxDT26k {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/imagem-escura-1920x600.jpg");
}
.cid-t4SaxDT26k .mbr-overlay {
  background: #6d2a86;
  opacity: 0.3;
}
.cid-t4SaxDT26k .container {
  padding: 0 5%;
}
.cid-t4SaxDT26k .item:focus,
.cid-t4SaxDT26k span:focus {
  outline: none;
}
.cid-t4SaxDT26k .item {
  margin-bottom: 2rem;
  position: relative;
}
.cid-t4SaxDT26k .item-menu-overlay {
  opacity: 0 !important;
  display: none !important;
}
.cid-t4SaxDT26k .items {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-t4SaxDT26k .items:nth-child(2) {
  padding-top: 6rem;
}
@media (max-width: 992px) {
  .cid-t4SaxDT26k .items:nth-child(2) {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-t4SaxDT26k .items:nth-child(3) {
    flex-direction: row;
  }
  .cid-t4SaxDT26k .items:nth-child(3) .item-wrapper:first-child {
    margin-right: 12px;
  }
  .cid-t4SaxDT26k .items:nth-child(3) .item-wrapper:last-child {
    margin-left: 12px;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  .cid-t4SaxDT26k .items:nth-child(3) .item-wrapper:first-child {
    margin: 0 0 2rem 0;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  .cid-t4SaxDT26k .items:nth-child(3) .item-wrapper:last-child {
    margin: 0 0 2rem 0;
  }
}
@media (max-width: 768px) {
  .cid-t4SaxDT26k .items:nth-child(3) {
    flex-direction: column;
  }
}
.cid-t4SaxDT26k .mbr-section-head {
  margin-bottom: 4.5rem;
}
.cid-t4SaxDT26k .item-wrapper {
  position: relative;
  border-radius: 15px;
  display: flex;
  flex-flow: column nowrap;
  max-width: 360px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cid-t4SaxDT26k .item-wrapper {
    margin: 0 auto 2rem;
  }
}
.cid-t4SaxDT26k .item-title-wrapper {
  max-height: 95px;
  padding: 1.3rem 2.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}
@media (max-width: 1200px) {
  .cid-t4SaxDT26k .item-title-wrapper {
    padding: 1.3rem 0.6rem;
  }
}
@media (max-width: 768px) {
  .cid-t4SaxDT26k .item-title-wrapper {
    padding: 1.3rem 2.3rem;
  }
}
@media (max-width: 450px) {
  .cid-t4SaxDT26k .item-title-wrapper {
    padding: 1rem;
  }
}
.cid-t4SaxDT26k .item-title-wrapper img {
  max-width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #ffffff;
  margin-right: 15px;
}
.cid-t4SaxDT26k .item-title-wrapper .item-title {
  margin: 0;
}
.cid-t4SaxDT26k .item-title-wrapper .item-desc {
  margin: 0;
}
.cid-t4SaxDT26k .item-title-wrapper .item-title-span {
  width: 50px;
  display: flex;
  justify-content: space-around;
}
.cid-t4SaxDT26k .item-title-wrapper span {
  display: block;
  font-size: 2rem;
  margin-top: -1rem;
}
.cid-t4SaxDT26k .item-title-wrapper a {
  height: 100%;
  padding: 1.3rem 0;
}
.cid-t4SaxDT26k .item-title-name {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t4SaxDT26k .item-content {
  background: #ffffff;
  padding: 2.5rem 3rem;
}
.cid-t4SaxDT26k .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-t4SaxDT26k .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t4SaxDT26k .item-title,
.cid-t4SaxDT26k .mbr-iconfont {
  color: #FFFFFF;
}
.cid-t4SaxDT26k .item-desc {
  color: #FFFFFF;
}
.cid-t4SaxDT26k .item-text {
  color: #353535;
}
.cid-t4SaxDT26k .item-title {
  color: #232323;
}
.cid-t3M4cFLsDz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-t3M4cFLsDz .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-t3M4cFLsDz .container {
    max-width: 1400px;
  }
}
.cid-t3M4cFLsDz .card {
  margin: auto;
}
.cid-t3M4cFLsDz .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #442f7c;
  margin-bottom: 2rem;
}
.cid-t3M4cFLsDz .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t3M4cFLsDz .row {
  justify-content: center;
}
.cid-t3M4cFLsDz H3 {
  color: #442f7c;
}
.cid-t4U1QOHUBp {
  background: #ffffff;
  background-image: linear-gradient(90deg, #ffffff 50%, #4d1661 50%);
  background-image: linear-gradient(90deg, #4d1661 50%, #ffffff 50%);
}
@media (max-width: 767px) {
  .cid-t4U1QOHUBp {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .cid-t4U1QOHUBp .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t4U1QOHUBp .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t4U1QOHUBp .row {
  flex-direction: row-reverse;
}
.cid-t4U1QOHUBp .row {
  align-items: center;
}
@media (min-width: 768px) {
  .cid-t4U1QOHUBp .row {
    padding: 0 12px;
  }
}
.cid-t4U1QOHUBp .image-wrapper {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4U1QOHUBp .image-wrapper img {
  position: relative;
  z-index: 2;
  width: 90%;
}
.cid-t4U1QOHUBp .col-text {
  position: relative;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 15px;
  order: 5;
}
.cid-t4U1QOHUBp .col-text .radial-svg {
  display: none;
}
@media (min-width: 768px) {
  .cid-t4U1QOHUBp .col-text {
    order: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .cid-t4U1QOHUBp .col-text {
    padding-left: 1rem;
    padding-right: 0;
    padding-right: 1rem;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .cid-t4U1QOHUBp .col-text .radial-svg {
    display: block;
    position: absolute;
    height: 100%;
    width: 150px;
    z-index: 1;
    top: 0;
    right: 96%;
    transform: scale(-1, 1);
  }
  .cid-t4U1QOHUBp .col-text .radial-svg path {
    fill: #ffffff;
  }
}
.cid-t4U1QOHUBp .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.cid-t4U1QOHUBp .label-text {
  width: 100%;
  color: #0057fc;
  margin-bottom: 12px;
}
.cid-t4U1QOHUBp .mbr-section-title {
  margin-bottom: 12px;
  width: 100%;
  color: #111111;
}
.cid-t4U1QOHUBp .mbr-text {
  color: #111111;
  width: 100%;
  margin-bottom: 12px;
}
.cid-t4U1QOHUBp .mbr-section-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-t4U1QOHUBp .mbr-section-btn .btn {
  width: 370px;
  height: 56px;
}
.cid-t4U1QOHUBp .carousel {
  margin-bottom: 80px;
}
.cid-t4U1QOHUBp .carousel,
.cid-t4U1QOHUBp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t4U1QOHUBp .item-wrapper {
  width: 100%;
}
.cid-t4U1QOHUBp .carousel-caption {
  position: static;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-t4U1QOHUBp .carousel-caption {
    padding: 24px;
  }
}
.cid-t4U1QOHUBp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 0;
}
.cid-t4U1QOHUBp .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t4U1QOHUBp .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t4U1QOHUBp .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t4U1QOHUBp .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
}
.cid-t4U1QOHUBp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t4U1QOHUBp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t4U1QOHUBp .carousel-control {
    top: auto;
    bottom: 50%;
    transform: translateY(50%);
  }
}
.cid-t4U1QOHUBp .carousel-indicators {
  position: absolute;
  bottom: -80px;
  margin-top: 40px;
  margin-bottom: 20px !important;
  margin-left: 0!important;
  justify-content: flex-start;
}
.cid-t4U1QOHUBp .carousel-indicators li {
  height: 6px;
  width: 6px;
  margin: 3px 10px;
  background-color: transparent;
  border: 2px solid #111111;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-t4U1QOHUBp .carousel-indicators li.active,
.cid-t4U1QOHUBp .carousel-indicators li:hover {
  background-color: #6d2a86;
  border: 2px solid #6d2a86;
}
.cid-t4U1QOHUBp .carousel-indicators li::after,
.cid-t4U1QOHUBp .carousel-indicators li::before {
  content: none;
}
.cid-t4U1QOHUBp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t4U1QOHUBp .carousel-indicators {
    display: none !important;
  }
}
.cid-t4U1QOHUBp .mbr-section-subtitle {
  color: #555555;
  margin-bottom: 0;
}
.cid-t4U1QOHUBp .name-text {
  color: #111111;
}
.cid-t4U1QOHUBp .prof-text {
  color: #555555;
  font-style: italic;
}
.cid-t4U1QOHUBp .item-menu-overlay {
  display: none !important;
}
.cid-t4U1QOHUBp .user-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .cid-t4U1QOHUBp .user-container {
    padding-top: 20px;
  }
}
.cid-t4U1QOHUBp .user-wrap {
  display: flex;
  align-items: center;
  padding-right: 1rem;
}
.cid-t4U1QOHUBp .avatar-img {
  position: relative;
  margin-right: 20px;
}
.cid-t4U1QOHUBp .avatar-img img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.cid-t4U1QOHUBp .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3LDgZOkG8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3LDgZOkG8 .item {
  padding-bottom: 2rem;
}
.cid-t3LDgZOkG8 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-t3LDgZOkG8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t3LDgZOkG8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t3LDgZOkG8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t3LDgZOkG8 .carousel-control,
.cid-t3LDgZOkG8 .close {
  background: #1b1b1b;
}
.cid-t3LDgZOkG8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t3LDgZOkG8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t3LDgZOkG8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t3LDgZOkG8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-t3LDgZOkG8 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t3LDgZOkG8 .close::before {
  content: '\e91a';
}
.cid-t3LDgZOkG8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t3LDgZOkG8 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t3LDgZOkG8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3LDgZOkG8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t3LDgZOkG8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t3LDgZOkG8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t3LDgZOkG8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t3LDgZOkG8 .carousel-indicators li.active,
.cid-t3LDgZOkG8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t3LDgZOkG8 .carousel-indicators li::after,
.cid-t3LDgZOkG8 .carousel-indicators li::before {
  content: none;
}
.cid-t3LDgZOkG8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t3LDgZOkG8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t3LDgZOkG8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t3LDgZOkG8 .carousel-indicators {
    display: none;
  }
}
.cid-t3LDgZOkG8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t3LDgZOkG8 .carousel-inner > .active {
  display: block;
}
.cid-t3LDgZOkG8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3LDgZOkG8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t3LDgZOkG8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t3LDgZOkG8 .carousel-control,
  .cid-t3LDgZOkG8 .carousel-indicators,
  .cid-t3LDgZOkG8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t3LDgZOkG8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t3LDgZOkG8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t3LDgZOkG8 .carousel-indicators .active,
.cid-t3LDgZOkG8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t3LDgZOkG8 .carousel-indicators .active {
  background: #fff;
}
.cid-t3LDgZOkG8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t3LDgZOkG8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t3LDgZOkG8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t3LDgZOkG8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t3LDgZOkG8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t3LDgZOkG8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t3LDgZOkG8 .carousel {
  width: 100%;
}
.cid-t3LDgZOkG8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t3LDgZOkG8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t3LDgZOkG8 .modal.fade .modal-dialog,
.cid-t3LDgZOkG8 .modal.in .modal-dialog {
  transform: none;
}
.cid-t3LDgZOkG8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t3LDgZOkG8 H6 {
  text-align: center;
}
.cid-t3M7FrAkGP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/imagem-escura-1920x600.jpg");
}
.cid-t3M7FrAkGP .mbr-section-title {
  color: #ffffff;
}
.cid-t3M7FrAkGP .mbr-text,
.cid-t3M7FrAkGP .mbr-section-btn {
  color: #ffffff;
}
.cid-t3LEJJRRnq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t3LEJJRRnq img {
  width: 120px;
  margin: auto;
}
.cid-t3LEJJRRnq .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t3LEJJRRnq .card {
    max-width: 12.5%;
  }
}
.cid-t3LEJJRRnq .mbr-section-title {
  color: #442f7c;
}
.cid-t3LMR9OlaZ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t3LMR9OlaZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-t3LMR9OlaZ input,
.cid-t3LMR9OlaZ textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-t3LMR9OlaZ img {
  width: 90%;
  border-radius: 8px;
}
.cid-t3LMR9OlaZ .title {
  margin-bottom: 1rem;
}
.cid-t3LMR9OlaZ p {
  line-height: 1.6;
}
.cid-t3LMR9OlaZ .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-t3LMR9OlaZ textarea {
  min-height: 160px;
}
.cid-t3LMR9OlaZ H5 {
  color: #442f7c;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-t3LMR9OlaZ img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-t3LMR9OlaZ .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-t3LMR9OlaZ H2 {
  color: #442f7c;
}
.cid-t3LMR9OlaZ H3 {
  color: #111111;
}
.cid-t3LMR9OlaZ .mbr-text {
  color: #716c80;
}
.cid-t4SHt9S9Ew {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-t4SHt9S9Ew .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-t4SHt9S9Ew .container {
  max-width: 1400px;
}
.cid-t4SHt9S9Ew li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-t4SHt9S9Ew .col-lg-3 {
    max-width: 20%;
  }
}
.cid-t4SHt9S9Ew .time {
  line-height: 2;
}
.cid-t4SHt9S9Ew .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t4SHt9S9Ew .text-wrap {
  width: 100%;
}
.cid-t4SHt9S9Ew .item-wrap {
  display: inline-block;
}
.cid-t4SHt9S9Ew .item-wrap span,
.cid-t4SHt9S9Ew .item-wrap p {
  transition: all 0.3s;
}
.cid-t4SHt9S9Ew .item-wrap:hover span,
.cid-t4SHt9S9Ew .item-wrap:hover p {
  color: #ffffff !important;
}
.cid-t4SHt9S9Ew .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-t4SHt9S9Ew .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-t4SHt9S9Ew .socicon-wrap .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t4SHt9S9Ew .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t4SHt9S9Ew .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t4SHt9S9Ew .socicon-wrap {
    margin: auto;
  }
}
.cid-t4SHt9S9Ew .title {
  color: #ffffff;
}
.cid-t4SHt9S9Ew .mbr-text {
  color: #999999;
}
.cid-t4SHt9S9Ew .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-t4SHt9S9Ew .icon-title,
.cid-t4SHt9S9Ew .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-t8nPlHGx8M {
  z-index: 1000;
  width: 100%;
}
.cid-t8nPlHGx8M nav.navbar {
  position: fixed;
}
.cid-t8nPlHGx8M .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-t8nPlHGx8M .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t8nPlHGx8M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8nPlHGx8M .dropdown-item:hover,
.cid-t8nPlHGx8M .dropdown-item:focus {
  background: #6d2a86 !important;
  color: white !important;
}
.cid-t8nPlHGx8M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t8nPlHGx8M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t8nPlHGx8M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t8nPlHGx8M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8nPlHGx8M .nav-link {
  position: relative;
}
.cid-t8nPlHGx8M .container {
  display: flex;
  margin: auto;
}
.cid-t8nPlHGx8M .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t8nPlHGx8M .dropdown-menu,
.cid-t8nPlHGx8M .navbar.opened {
  background: #442f7c !important;
}
.cid-t8nPlHGx8M .nav-item:focus,
.cid-t8nPlHGx8M .nav-link:focus {
  outline: none;
}
.cid-t8nPlHGx8M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8nPlHGx8M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8nPlHGx8M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t8nPlHGx8M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8nPlHGx8M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8nPlHGx8M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8nPlHGx8M .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(68, 47, 124, 0.5);
}
.cid-t8nPlHGx8M .navbar.opened {
  transition: all 0.3s;
}
.cid-t8nPlHGx8M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t8nPlHGx8M .navbar .navbar-logo img {
  width: auto;
}
.cid-t8nPlHGx8M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8nPlHGx8M .navbar.collapsed {
  justify-content: center;
}
.cid-t8nPlHGx8M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8nPlHGx8M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8nPlHGx8M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-t8nPlHGx8M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8nPlHGx8M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8nPlHGx8M .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-t8nPlHGx8M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8nPlHGx8M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t8nPlHGx8M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t8nPlHGx8M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8nPlHGx8M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8nPlHGx8M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8nPlHGx8M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8nPlHGx8M .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-t8nPlHGx8M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t8nPlHGx8M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8nPlHGx8M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8nPlHGx8M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8nPlHGx8M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8nPlHGx8M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t8nPlHGx8M .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8nPlHGx8M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t8nPlHGx8M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t8nPlHGx8M .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-t8nPlHGx8M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8nPlHGx8M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8nPlHGx8M .dropdown-item.active,
.cid-t8nPlHGx8M .dropdown-item:active {
  background-color: transparent;
}
.cid-t8nPlHGx8M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8nPlHGx8M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8nPlHGx8M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8nPlHGx8M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #442f7c;
}
.cid-t8nPlHGx8M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8nPlHGx8M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8nPlHGx8M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8nPlHGx8M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8nPlHGx8M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t8nPlHGx8M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #442f7c;
}
.cid-t8nPlHGx8M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t8nPlHGx8M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8nPlHGx8M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8nPlHGx8M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t8nPlHGx8M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8nPlHGx8M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t8nPlHGx8M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t8nPlHGx8M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8nPlHGx8M .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t8nPlHGx8M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8nPlHGx8M .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-t8nPlHGx8M .navbar {
    height: 70px;
  }
  .cid-t8nPlHGx8M .navbar.opened {
    height: auto;
  }
  .cid-t8nPlHGx8M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8nPlIAlbU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/data-protection-1500x775.jpg");
}
.cid-t8nPlIAlbU .mbr-section-title {
  text-align: right;
}
.cid-t8nPlIAlbU .mbr-text,
.cid-t8nPlIAlbU .mbr-section-btn {
  text-align: right;
}
.cid-t8nPlJburt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8nPlJburt .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t8nPlJburt .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-t8nPlJburt .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8nPlJburt .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t8nPlJburt .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t8nPlJburt .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t8nPlJburt .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-t8nPlJburt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t8nPlLSnYx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8nPlLSnYx .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t8nPlLSnYx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8nPlLSnYx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t8nPlLSnYx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t8nPlLSnYx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t8nPlLSnYx .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t8nPlLSnYx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t8nQDnQq6S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8nQDnQq6S .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t8nQDnQq6S .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-t8nQDnQq6S .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8nQDnQq6S .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t8nQDnQq6S .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t8nQDnQq6S .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t8nQDnQq6S .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-t8nQDnQq6S .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t8nR0KJSWP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-t8nR0KJSWP .container {
    max-width: 1400px;
  }
}
.cid-t8nR0KJSWP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4d1661;
  margin-bottom: 2rem;
}
.cid-t8nR0KJSWP .card-wrapper {
  margin-top: 3rem;
}
.cid-t8nR0KJSWP .row {
  justify-content: center;
}
.cid-t8nPlOoypL {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t8nPlOoypL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-t8nPlOoypL input,
.cid-t8nPlOoypL textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-t8nPlOoypL img {
  width: 90%;
  border-radius: 8px;
}
.cid-t8nPlOoypL .title {
  margin-bottom: 1rem;
}
.cid-t8nPlOoypL p {
  line-height: 1.6;
}
.cid-t8nPlOoypL .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-t8nPlOoypL textarea {
  min-height: 160px;
}
.cid-t8nPlOoypL H5 {
  color: #6d2a86;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-t8nPlOoypL img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-t8nPlOoypL .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-t8nPlOoypL H2 {
  color: #6d2a86;
}
.cid-t8nPlOoypL H3 {
  color: #111111;
}
.cid-t8nPlOoypL .mbr-text {
  color: #716c80;
}
.cid-t8nPlPuVYB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-t8nPlPuVYB .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-t8nPlPuVYB .container {
  max-width: 1400px;
}
.cid-t8nPlPuVYB li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-t8nPlPuVYB .col-lg-3 {
    max-width: 20%;
  }
}
.cid-t8nPlPuVYB .time {
  line-height: 2;
}
.cid-t8nPlPuVYB .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t8nPlPuVYB .text-wrap {
  width: 100%;
}
.cid-t8nPlPuVYB .item-wrap {
  display: inline-block;
}
.cid-t8nPlPuVYB .item-wrap span,
.cid-t8nPlPuVYB .item-wrap p {
  transition: all 0.3s;
}
.cid-t8nPlPuVYB .item-wrap:hover span,
.cid-t8nPlPuVYB .item-wrap:hover p {
  color: #ffffff !important;
}
.cid-t8nPlPuVYB .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-t8nPlPuVYB .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-t8nPlPuVYB .socicon-wrap .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t8nPlPuVYB .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t8nPlPuVYB .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8nPlPuVYB .socicon-wrap {
    margin: auto;
  }
}
.cid-t8nPlPuVYB .title {
  color: #ffffff;
}
.cid-t8nPlPuVYB .mbr-text {
  color: #999999;
}
.cid-t8nPlPuVYB .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-t8nPlPuVYB .icon-title,
.cid-t8nPlPuVYB .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-t8mQN7Ggc3 {
  z-index: 1000;
  width: 100%;
}
.cid-t8mQN7Ggc3 nav.navbar {
  position: fixed;
}
.cid-t8mQN7Ggc3 .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-t8mQN7Ggc3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t8mQN7Ggc3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8mQN7Ggc3 .dropdown-item:hover,
.cid-t8mQN7Ggc3 .dropdown-item:focus {
  background: #6d2a86 !important;
  color: white !important;
}
.cid-t8mQN7Ggc3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t8mQN7Ggc3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t8mQN7Ggc3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t8mQN7Ggc3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8mQN7Ggc3 .nav-link {
  position: relative;
}
.cid-t8mQN7Ggc3 .container {
  display: flex;
  margin: auto;
}
.cid-t8mQN7Ggc3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t8mQN7Ggc3 .dropdown-menu,
.cid-t8mQN7Ggc3 .navbar.opened {
  background: #442f7c !important;
}
.cid-t8mQN7Ggc3 .nav-item:focus,
.cid-t8mQN7Ggc3 .nav-link:focus {
  outline: none;
}
.cid-t8mQN7Ggc3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8mQN7Ggc3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8mQN7Ggc3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t8mQN7Ggc3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8mQN7Ggc3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8mQN7Ggc3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8mQN7Ggc3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(68, 47, 124, 0.5);
}
.cid-t8mQN7Ggc3 .navbar.opened {
  transition: all 0.3s;
}
.cid-t8mQN7Ggc3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t8mQN7Ggc3 .navbar .navbar-logo img {
  width: auto;
}
.cid-t8mQN7Ggc3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8mQN7Ggc3 .navbar.collapsed {
  justify-content: center;
}
.cid-t8mQN7Ggc3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8mQN7Ggc3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8mQN7Ggc3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-t8mQN7Ggc3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8mQN7Ggc3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8mQN7Ggc3 .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-t8mQN7Ggc3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8mQN7Ggc3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t8mQN7Ggc3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t8mQN7Ggc3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8mQN7Ggc3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8mQN7Ggc3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8mQN7Ggc3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8mQN7Ggc3 .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-t8mQN7Ggc3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t8mQN7Ggc3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8mQN7Ggc3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8mQN7Ggc3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8mQN7Ggc3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8mQN7Ggc3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t8mQN7Ggc3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8mQN7Ggc3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t8mQN7Ggc3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t8mQN7Ggc3 .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-t8mQN7Ggc3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8mQN7Ggc3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8mQN7Ggc3 .dropdown-item.active,
.cid-t8mQN7Ggc3 .dropdown-item:active {
  background-color: transparent;
}
.cid-t8mQN7Ggc3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8mQN7Ggc3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8mQN7Ggc3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8mQN7Ggc3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #442f7c;
}
.cid-t8mQN7Ggc3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8mQN7Ggc3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8mQN7Ggc3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8mQN7Ggc3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8mQN7Ggc3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t8mQN7Ggc3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #442f7c;
}
.cid-t8mQN7Ggc3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t8mQN7Ggc3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8mQN7Ggc3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8mQN7Ggc3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t8mQN7Ggc3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8mQN7Ggc3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t8mQN7Ggc3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t8mQN7Ggc3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8mQN7Ggc3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t8mQN7Ggc3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8mQN7Ggc3 .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-t8mQN7Ggc3 .navbar {
    height: 70px;
  }
  .cid-t8mQN7Ggc3 .navbar.opened {
    height: auto;
  }
  .cid-t8mQN7Ggc3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8mQN9BsOv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sophos-news-central-firewall-banner-purple.webp");
}
.cid-t8mQN9BsOv .mbr-section-title {
  text-align: left;
}
.cid-t8mQN9BsOv .mbr-text,
.cid-t8mQN9BsOv .mbr-section-btn {
  text-align: left;
}
.cid-t8mQNb8XV3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-t8mQNb8XV3 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-t8mQNb8XV3 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-t8mQNb8XV3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t8mQNb8XV3 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t8mQNb8XV3 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-t8mQNb8XV3 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t8mQNb8XV3 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t8mQNb8XV3 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-t8mQNb8XV3 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t8mQNb8XV3 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t8mQNc75Pt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8mQNc75Pt img,
.cid-t8mQNc75Pt .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t8mQNc75Pt .item:focus,
.cid-t8mQNc75Pt span:focus {
  outline: none;
}
.cid-t8mQNc75Pt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8mQNc75Pt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8mQNc75Pt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8mQNc75Pt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t8mQNc75Pt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8mQNc75Pt .mbr-section-title {
  color: #232323;
}
.cid-t8mQNc75Pt .mbr-text,
.cid-t8mQNc75Pt .mbr-section-btn {
  text-align: center;
}
.cid-t8mQNc75Pt .item-title {
  text-align: left;
}
.cid-t8mQNc75Pt .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t8mQNcORx4 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t8mQNcORx4 .title__block {
  margin-bottom: 89px;
}
.cid-t8mQNcORx4 .timelines-container .separline:last-child:before {
  content: none;
}
.cid-t8mQNcORx4 .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-t8mQNcORx4 .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-t8mQNcORx4 .timeline-text-content p {
  margin-bottom: 0;
}
.cid-t8mQNcORx4 .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-t8mQNcORx4 .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-t8mQNcORx4 .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-t8mQNcORx4 .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-t8mQNcORx4 .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-t8mQNcORx4 .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #6d2a86;
}
.cid-t8mQNcORx4 .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-t8mQNcORx4 .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #6d2a86;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-t8mQNcORx4 .title__block {
    margin-bottom: 40px;
  }
  .cid-t8mQNcORx4 .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-t8mQNcORx4 .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-t8mQNcORx4 .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-t8mQNcORx4 .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-t8mQNcORx4 .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-t8mQNcORx4 .iconBackground {
    left: 0 !important;
  }
  .cid-t8mQNcORx4 .separline:before {
    left: 0 !important;
  }
}
.cid-t8mQNcORx4 .mbr-timeline-text {
  color: #353535;
}
.cid-t8mQNdKAaG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8mQNdKAaG .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-t8mQNdKAaG .item .icon-wrap {
  text-align: center;
}
.cid-t8mQNdKAaG .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-t8mQNdKAaG .icon-box {
  background: #6d2a86;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-t8mQNdKAaG .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-t8mQNdKAaG .mbr-iconfont {
  color: #6d2a86 !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-t8mQNdKAaG .item:before {
    display: none;
  }
  .cid-t8mQNdKAaG .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8mQNeWKq4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8mQNeWKq4 img,
.cid-t8mQNeWKq4 .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t8mQNeWKq4 .item:focus,
.cid-t8mQNeWKq4 span:focus {
  outline: none;
}
.cid-t8mQNeWKq4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8mQNeWKq4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8mQNeWKq4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8mQNeWKq4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t8mQNeWKq4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8mQNeWKq4 .mbr-section-title {
  color: #232323;
}
.cid-t8mQNeWKq4 .mbr-text,
.cid-t8mQNeWKq4 .mbr-section-btn {
  text-align: center;
}
.cid-t8mQNeWKq4 .item-title {
  text-align: left;
}
.cid-t8mQNeWKq4 .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-t8mQNfWOHA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-t8mQNfWOHA .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8mQNfWOHA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-t8mQNfWOHA .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8mQNfWOHA .mbr-text {
  text-align: center;
}
.cid-t8mQNgPaV7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8mQNgPaV7 .mbr-section-title {
  color: #6d2a86;
}
.cid-t8mQNhveHF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8mQNhveHF .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t8mQNhveHF .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t8mQNhveHF .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6d2a86;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-t8mQNiahYF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t8mQNiahYF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t8mQNiahYF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t8mQNiahYF .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6d2a86;
}
.cid-t8mQNiahYF .panel-body,
.cid-t8mQNiahYF .card-header {
  padding: 1rem 0;
}
.cid-t8mQNiahYF .panel-title-edit {
  color: #000000;
}
.cid-t8mQNiahYF H3 {
  color: #6d2a86;
}
.cid-t8mQNjaGUF {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t8mQNjaGUF .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-t8mQNjaGUF input,
.cid-t8mQNjaGUF textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-t8mQNjaGUF img {
  width: 90%;
  border-radius: 8px;
}
.cid-t8mQNjaGUF .title {
  margin-bottom: 1rem;
}
.cid-t8mQNjaGUF p {
  line-height: 1.6;
}
.cid-t8mQNjaGUF .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-t8mQNjaGUF textarea {
  min-height: 160px;
}
.cid-t8mQNjaGUF H5 {
  color: #6d2a86;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-t8mQNjaGUF img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-t8mQNjaGUF .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-t8mQNjaGUF H2 {
  color: #6d2a86;
}
.cid-t8mQNjaGUF H3 {
  color: #111111;
}
.cid-t8mQNjaGUF .mbr-text {
  color: #716c80;
}
.cid-t8mQNkkIBb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-t8mQNkkIBb .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-t8mQNkkIBb .container {
  max-width: 1400px;
}
.cid-t8mQNkkIBb li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-t8mQNkkIBb .col-lg-3 {
    max-width: 20%;
  }
}
.cid-t8mQNkkIBb .time {
  line-height: 2;
}
.cid-t8mQNkkIBb .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t8mQNkkIBb .text-wrap {
  width: 100%;
}
.cid-t8mQNkkIBb .item-wrap {
  display: inline-block;
}
.cid-t8mQNkkIBb .item-wrap span,
.cid-t8mQNkkIBb .item-wrap p {
  transition: all 0.3s;
}
.cid-t8mQNkkIBb .item-wrap:hover span,
.cid-t8mQNkkIBb .item-wrap:hover p {
  color: #ffffff !important;
}
.cid-t8mQNkkIBb .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-t8mQNkkIBb .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-t8mQNkkIBb .socicon-wrap .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t8mQNkkIBb .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t8mQNkkIBb .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8mQNkkIBb .socicon-wrap {
    margin: auto;
  }
}
.cid-t8mQNkkIBb .title {
  color: #ffffff;
}
.cid-t8mQNkkIBb .mbr-text {
  color: #999999;
}
.cid-t8mQNkkIBb .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-t8mQNkkIBb .icon-title,
.cid-t8mQNkkIBb .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-t8nXEw1Ix1 {
  z-index: 1000;
  width: 100%;
}
.cid-t8nXEw1Ix1 nav.navbar {
  position: fixed;
}
.cid-t8nXEw1Ix1 .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-t8nXEw1Ix1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t8nXEw1Ix1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8nXEw1Ix1 .dropdown-item:hover,
.cid-t8nXEw1Ix1 .dropdown-item:focus {
  background: #6d2a86 !important;
  color: white !important;
}
.cid-t8nXEw1Ix1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t8nXEw1Ix1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t8nXEw1Ix1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t8nXEw1Ix1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8nXEw1Ix1 .nav-link {
  position: relative;
}
.cid-t8nXEw1Ix1 .container {
  display: flex;
  margin: auto;
}
.cid-t8nXEw1Ix1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t8nXEw1Ix1 .dropdown-menu,
.cid-t8nXEw1Ix1 .navbar.opened {
  background: #442f7c !important;
}
.cid-t8nXEw1Ix1 .nav-item:focus,
.cid-t8nXEw1Ix1 .nav-link:focus {
  outline: none;
}
.cid-t8nXEw1Ix1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8nXEw1Ix1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8nXEw1Ix1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t8nXEw1Ix1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8nXEw1Ix1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8nXEw1Ix1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8nXEw1Ix1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(68, 47, 124, 0.5);
}
.cid-t8nXEw1Ix1 .navbar.opened {
  transition: all 0.3s;
}
.cid-t8nXEw1Ix1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t8nXEw1Ix1 .navbar .navbar-logo img {
  width: auto;
}
.cid-t8nXEw1Ix1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8nXEw1Ix1 .navbar.collapsed {
  justify-content: center;
}
.cid-t8nXEw1Ix1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8nXEw1Ix1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8nXEw1Ix1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-t8nXEw1Ix1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8nXEw1Ix1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8nXEw1Ix1 .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-t8nXEw1Ix1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8nXEw1Ix1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t8nXEw1Ix1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t8nXEw1Ix1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8nXEw1Ix1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8nXEw1Ix1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8nXEw1Ix1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8nXEw1Ix1 .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-t8nXEw1Ix1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t8nXEw1Ix1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8nXEw1Ix1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8nXEw1Ix1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8nXEw1Ix1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8nXEw1Ix1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t8nXEw1Ix1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8nXEw1Ix1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t8nXEw1Ix1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t8nXEw1Ix1 .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-t8nXEw1Ix1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8nXEw1Ix1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8nXEw1Ix1 .dropdown-item.active,
.cid-t8nXEw1Ix1 .dropdown-item:active {
  background-color: transparent;
}
.cid-t8nXEw1Ix1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8nXEw1Ix1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8nXEw1Ix1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8nXEw1Ix1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #442f7c;
}
.cid-t8nXEw1Ix1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8nXEw1Ix1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8nXEw1Ix1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8nXEw1Ix1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8nXEw1Ix1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t8nXEw1Ix1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #442f7c;
}
.cid-t8nXEw1Ix1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t8nXEw1Ix1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8nXEw1Ix1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t8nXEw1Ix1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t8nXEw1Ix1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8nXEw1Ix1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t8nXEw1Ix1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t8nXEw1Ix1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t8nXEw1Ix1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t8nXEw1Ix1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8nXEw1Ix1 .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-t8nXEw1Ix1 .navbar {
    height: 70px;
  }
  .cid-t8nXEw1Ix1 .navbar.opened {
    height: auto;
  }
  .cid-t8nXEw1Ix1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8nXEy10wo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pentest-750x422.jpg");
}
.cid-t8nXEy10wo .mbr-section-title {
  text-align: left;
}
.cid-t8nXEy10wo .mbr-text,
.cid-t8nXEy10wo .mbr-section-btn {
  text-align: left;
}
.cid-t8nXEyR0By {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-t8nXEyR0By .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-t8nXEyR0By .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-t8nXEyR0By .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t8nXEyR0By .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t8nXEyR0By .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-t8nXEyR0By .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t8nXEyR0By .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t8nXEyR0By .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-t8nXEyR0By .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t8nXEyR0By .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t8nXEyR0By .card-title {
  text-align: center;
}
.cid-t8otrzzPph {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t8otrzzPph .line {
  background-color: #4d1661;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t8osk6EIHK {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/pentest-lobios-960x400.png");
}
.cid-t8osk6EIHK .mbr-section-title {
  color: #ffffff;
}
.cid-t8oujT3H3f {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t8oujT3H3f .line {
  background-color: #4d1661;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t8ou9CTsvS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8ou9CTsvS .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t8ou9CTsvS .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t8ou9CTsvS .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6d2a86;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-t8nXEJjgX8 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t8nXEJjgX8 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-t8nXEJjgX8 input,
.cid-t8nXEJjgX8 textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-t8nXEJjgX8 img {
  width: 90%;
  border-radius: 8px;
}
.cid-t8nXEJjgX8 .title {
  margin-bottom: 1rem;
}
.cid-t8nXEJjgX8 p {
  line-height: 1.6;
}
.cid-t8nXEJjgX8 .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-t8nXEJjgX8 textarea {
  min-height: 160px;
}
.cid-t8nXEJjgX8 H5 {
  color: #6d2a86;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-t8nXEJjgX8 img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-t8nXEJjgX8 .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-t8nXEJjgX8 H2 {
  color: #6d2a86;
}
.cid-t8nXEJjgX8 H3 {
  color: #111111;
}
.cid-t8nXEJjgX8 .mbr-text {
  color: #716c80;
}
.cid-t8nXEL4BCr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-t8nXEL4BCr .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-t8nXEL4BCr .container {
  max-width: 1400px;
}
.cid-t8nXEL4BCr li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-t8nXEL4BCr .col-lg-3 {
    max-width: 20%;
  }
}
.cid-t8nXEL4BCr .time {
  line-height: 2;
}
.cid-t8nXEL4BCr .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t8nXEL4BCr .text-wrap {
  width: 100%;
}
.cid-t8nXEL4BCr .item-wrap {
  display: inline-block;
}
.cid-t8nXEL4BCr .item-wrap span,
.cid-t8nXEL4BCr .item-wrap p {
  transition: all 0.3s;
}
.cid-t8nXEL4BCr .item-wrap:hover span,
.cid-t8nXEL4BCr .item-wrap:hover p {
  color: #ffffff !important;
}
.cid-t8nXEL4BCr .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-t8nXEL4BCr .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-t8nXEL4BCr .socicon-wrap .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t8nXEL4BCr .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t8nXEL4BCr .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t8nXEL4BCr .socicon-wrap {
    margin: auto;
  }
}
.cid-t8nXEL4BCr .title {
  color: #ffffff;
}
.cid-t8nXEL4BCr .mbr-text {
  color: #999999;
}
.cid-t8nXEL4BCr .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-t8nXEL4BCr .icon-title,
.cid-t8nXEL4BCr .align-wrap {
  color: #999999;
  width: 100%;
}
