@import url(https://fonts.googleapis.com/css?family=Space+Grotesk:300,400,500,600,700&display=swap);





body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.625rem;
  line-height: 1.2;
  letter-spacing: -0.9px;
}
.display-1 > .mbr-iconfont {
  font-size: 3.28125rem;
}
.display-2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.375rem;
  line-height: 1.2;
  letter-spacing: -0.9px;
}
.display-2 > .mbr-iconfont {
  font-size: 2.96875rem;
}
.display-4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.867;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.1rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.8375rem;
    font-size: calc( 1.5687499999999999rem + (2.625 - 1.5687499999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.5687499999999999rem + (2.625 - 1.5687499999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.9rem;
    font-size: calc( 1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 11px 35px;
  border-radius: 3px;
}
.btn-sm {
  padding: 15px 35px;
  border-radius: 3px;
}
.btn-md {
  padding: 18px 50px;
  border-radius: 3px;
}
.btn-lg {
  padding: 19px 50px;
  border-radius: 3px;
}
.bg-primary {
  background-color: #4154f1 !important;
}
.bg-success {
  background-color: #57b22a !important;
}
.bg-info {
  background-color: #3c159e !important;
}
.bg-warning {
  background-color: #ff6b00 !important;
}
.bg-danger {
  background-color: #ff0000 !important;
}
.btn-primary {
  box-shadow: 0 15px 30px 0 rgba(65, 84, 241, 0.15);
}
.btn-primary,
.btn-primary:active {
  background-color: #4154f1 !important;
  border-color: #4154f1 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #1129ee !important;
  border-color: #1129ee !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1129ee !important;
  border-color: #1129ee !important;
}
.btn-primary:before {
  background: #4154f1;
}
.btn-primary:hover {
  color: #ffffff !important;
  border-color: #4154f1 !important;
  box-shadow: 0 15px 30px 0 rgba(65, 84, 241, 0.15);
}
.btn-secondary {
  box-shadow: 0 15px 30px 0 rgba(5, 20, 65, 0.15);
}
.btn-secondary,
.btn-secondary:active {
  background-color: #051441 !important;
  border-color: #051441 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #010512 !important;
  border-color: #010512 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #010512 !important;
  border-color: #010512 !important;
}
.btn-secondary:before {
  background: #051441;
}
.btn-secondary:hover {
  color: #ffffff !important;
  border-color: #051441 !important;
  box-shadow: 0 15px 30px 0 rgba(5, 20, 65, 0.15);
}
.btn-info {
  box-shadow: 0 15px 30px 0 rgba(60, 21, 158, 0.15);
}
.btn-info,
.btn-info:active {
  background-color: #3c159e !important;
  border-color: #3c159e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #2b0f71 !important;
  border-color: #2b0f71 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2b0f71 !important;
  border-color: #2b0f71 !important;
}
.btn-info:before {
  background: #3c159e;
}
.btn-info:hover {
  color: #ffffff !important;
  border-color: #3c159e !important;
  box-shadow: 0 15px 30px 0 rgba(60, 21, 158, 0.15);
}
.btn-success {
  box-shadow: 0 15px 30px 0 rgba(87, 178, 42, 0.15);
}
.btn-success,
.btn-success:active {
  background-color: #57b22a !important;
  border-color: #57b22a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #438920 !important;
  border-color: #438920 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #438920 !important;
  border-color: #438920 !important;
}
.btn-success:before {
  background: #57b22a;
}
.btn-success:hover {
  color: #ffffff !important;
  border-color: #57b22a !important;
  box-shadow: 0 15px 30px 0 rgba(87, 178, 42, 0.15);
}
.btn-warning {
  box-shadow: 0 15px 30px 0 rgba(255, 107, 0, 0.15);
}
.btn-warning,
.btn-warning:active {
  background-color: #ff6b00 !important;
  border-color: #ff6b00 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #cc5600 !important;
  border-color: #cc5600 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #cc5600 !important;
  border-color: #cc5600 !important;
}
.btn-warning:before {
  background: #ff6b00;
}
.btn-warning:hover {
  color: #ffffff !important;
  border-color: #ff6b00 !important;
  box-shadow: 0 15px 30px 0 rgba(255, 107, 0, 0.15);
}
.btn-danger {
  box-shadow: 0 15px 30px 0 rgba(255, 0, 0, 0.15);
}
.btn-danger,
.btn-danger:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
}
.btn-danger:before {
  background: #ff0000;
}
.btn-danger:hover {
  color: #ffffff !important;
  border-color: #ff0000 !important;
  box-shadow: 0 15px 30px 0 rgba(255, 0, 0, 0.15);
}
.btn-white {
  color: #4154f1 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 15px 30px 0 rgba(65, 84, 241, 0.15);
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:before {
  background: #4154f1;
}
.btn-white:hover {
  color: #ffffff !important;
  border-color: #4154f1 !important;
  background-color: #ffffff !important;
  box-shadow: 0 15px 30px 0 rgba(255, 255, 255, 0.15);
}
.btn-black {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-black,
.btn-black:active {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:before {
  background: #4d4d4d;
}
.btn-black:hover {
  border-color: #4d4d4d !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #4154f1;
  color: #4154f1;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #4154f1 !important;
  border-color: #4154f1 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4154f1 !important;
  border-color: #4154f1 !important;
}
.btn-primary-outline:before {
  background: #4154f1;
}
.btn-primary-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(65, 84, 241, 0.15);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #051441;
  color: #051441;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #051441 !important;
  border-color: #051441 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #051441 !important;
  border-color: #051441 !important;
}
.btn-secondary-outline:before {
  background: #051441;
}
.btn-secondary-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(5, 20, 65, 0.15);
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #3c159e;
  color: #3c159e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #3c159e !important;
  border-color: #3c159e !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3c159e !important;
  border-color: #3c159e !important;
}
.btn-info-outline:before {
  background: #3c159e;
}
.btn-info-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(60, 21, 158, 0.15);
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #57b22a;
  color: #57b22a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #57b22a !important;
  border-color: #57b22a !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #57b22a !important;
  border-color: #57b22a !important;
}
.btn-success-outline:before {
  background: #57b22a;
}
.btn-success-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(87, 178, 42, 0.15);
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff6b00;
  color: #ff6b00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #ff6b00 !important;
  border-color: #ff6b00 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6b00 !important;
  border-color: #ff6b00 !important;
}
.btn-warning-outline:before {
  background: #ff6b00;
}
.btn-warning-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 107, 0, 0.15);
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff0000;
  color: #ff0000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-danger-outline:before {
  background: #ff0000;
}
.btn-danger-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 0, 0, 0.15);
}
.btn-black-outline {
  border-color: #1a1a1a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #1a1a1a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-black-outline:before {
  background: #4d4d4d;
}
.btn-white-outline {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #4154f1 !important;
  border-color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 255, 255, 0.15);
}
.btn-white-outline:before {
  background: #ffffff;
}
.text-primary {
  color: #4154f1 !important;
}
.text-secondary {
  color: #051441 !important;
}
.text-success {
  color: #57b22a !important;
}
.text-info {
  color: #3c159e !important;
}
.text-warning {
  color: #ff6b00 !important;
}
.text-danger {
  color: #ff0000 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #1a1a1a !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0e21be !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2f5f17 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1a0944 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #994000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #990000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #4154f1;
}
.nav-tabs .nav-link:not(.active) {
  color: #1a1a1a;
}
.alert-success {
  background-color: #40A50B;
}
.alert-info {
  background-color: #3c159e;
}
.alert-warning {
  background-color: #ff6b00;
}
.alert-danger {
  background-color: #ff0000;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 45px;
}
.mbr-gallery-filter li a {
  border-radius: 45px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4154f1;
  border-color: #4154f1;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 45px !important;
}
a,
a:hover {
  color: #4154f1;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #9de07c;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #784be7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffe1cc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffcccc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.867;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.867;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #4154f1;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 45px !important;
}
.mbr-form .mbr-section-btn button[type="submit"] {
  border-radius: 45px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4154f1;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4154f1;
}
.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: #4154f1;
  border-bottom-color: #4154f1;
}
.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: #4154f1 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #051441 !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='%234154f1' %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.btn-white {
  color: #4154f1 !important;
}
.mbr-arrow-up {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  box-shadow: 0px 10px 33.25px 1.75px rgba(0, 27, 103, 0.35);
}
.mbr-arrow-up a {
  background: rgba(65, 84, 241, 0.6);
}
.mbr-arrow-up a:hover {
  background: #4154f1;
}
.cid-sq35uVuKnY {
  height: 0 !important;
}
.cid-sq35uVuKnY .navbar {
  background: #a485fd;
  transition: none;
  z-index: 1001;
  left: auto;
}
.cid-sq35uVuKnY .navbar .show {
  height: 100vh;
}
.cid-sq35uVuKnY .navbar-collapse {
  max-height: 100vh !important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sq35uVuKnY .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sq35uVuKnY .navbar-dropdown.bg-color.transparent.opened {
  background: #a485fd;
}
.cid-sq35uVuKnY .bottom {
  padding-bottom: 2rem;
}
.cid-sq35uVuKnY a {
  font-style: normal;
}
.cid-sq35uVuKnY .dropdown-backdrop {
  display: none;
}
.cid-sq35uVuKnY .dropdown-toggle::after {
  border-top: 0 !important;
  margin-left: 10px !important;
}
.cid-sq35uVuKnY .nav-dropdown {
  padding-top: 8rem;
}
.cid-sq35uVuKnY .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-sq35uVuKnY .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-sq35uVuKnY .nav-link:after {
  content: '';
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #3c159e;
  margin-left: 10px;
}
.cid-sq35uVuKnY .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-sq35uVuKnY .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sq35uVuKnY .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sq35uVuKnY .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}
.cid-sq35uVuKnY .navbar-nav {
  width: 100% !important;
}
.cid-sq35uVuKnY .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sq35uVuKnY .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sq35uVuKnY .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-sq35uVuKnY .dropdown-menu {
  position: absolute !important;
  width: fit-content !important;
}
.cid-sq35uVuKnY .dropdown-item {
  background: #3c159e;
  color: #ffffff !important;
}
.cid-sq35uVuKnY .dropdown-item:hover,
.cid-sq35uVuKnY .dropdown-item:active {
  color: #ffffff !important;
}
.cid-sq35uVuKnY .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-sq35uVuKnY .soc-item {
  width: 45px;
  height: 45px;
  background: #3c159e;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-sq35uVuKnY .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-sq35uVuKnY .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-sq35uVuKnY .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #3c159e;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-sq35uVuKnY .navbar-logo {
  margin-right: 0 !important;
}
.cid-sq35uVuKnY .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-sq35uVuKnY .menu-logo {
  position: absolute !important;
}
.cid-sq35uVuKnY .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1002;
  margin-right: auto;
}
.cid-sq35uVuKnY .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sq35uVuKnY .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sq35uVuKnY .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sq35uVuKnY .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sq35uVuKnY .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sq35uVuKnY .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sq35uVuKnY .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sq35uVuKnY .navbar-toggler {
  background: #a485fd;
  width: 75px !important;
  height: 75px !important;
  border-radius: 0 !important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-sq35uVuKnY .navbar-brand {
  background: transparent;
  margin: 0 !important;
  padding: 10px !important;
  padding-top: 20px;
}
.cid-sq35uVuKnY .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-sq35uVuKnY .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sq35uVuKnY .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sq35uVuKnY .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sq35uVuKnY .opened,
.cid-sq35uVuKnY .show {
  height: 100%;
  width: 300px !important;
  right: 0;
  transition: none;
  background: #a485fd !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-sq35uVuKnY .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-sq35uVuKnY .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-sq35uVuKnY .opened,
  .cid-sq35uVuKnY .show,
  .cid-sq35uVuKnY .navbar {
    width: 100% !important;
  }
  .cid-sq35uVuKnY .dropdown-toggle {
    margin: auto !important;
  }
  .cid-sq35uVuKnY .dropdown-menu {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: auto;
  }
  .cid-sq35uVuKnY .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-sq35uVuKnY .nav-item:focus,
.cid-sq35uVuKnY .nav-link:focus {
  outline: none;
}
.cid-sq35uVuKnY .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-sq35uVuKnY .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sq35uVuKnY .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sq35uVuKnY .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sq35uVuKnY .dropdown .dropdown-menu {
  background: #a485fd;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sq35uVuKnY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sq35uVuKnY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sq35uVuKnY .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sq35uVuKnY .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sq35uVuKnY .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sq35uVuKnY button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sq35uVuKnY button.navbar-toggler:focus {
  outline: none;
}
.cid-sq35uVuKnY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sq35uVuKnY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sq35uVuKnY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq35uVuKnY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq35uVuKnY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sq35uVuKnY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq35uVuKnY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sq35uVuKnY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sq35uVuKnY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq35uVuKnY .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sq35uVuKnY .collapsed .btn {
  display: -webkit-flex;
}
.cid-sq35uVuKnY .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sq35uVuKnY .collapsed .navbar-collapse.collapsing,
.cid-sq35uVuKnY .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-sq35uVuKnY .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sq35uVuKnY .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sq35uVuKnY .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sq35uVuKnY .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sq35uVuKnY .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sq35uVuKnY .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sq35uVuKnY .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sq35uVuKnY .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sq35uVuKnY .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 91.1875vh;
  }
}
.cid-sq35uVuKnY .collapsed button.navbar-toggler {
  display: block;
}
.cid-sq35uVuKnY .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sq35uVuKnY .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sq35uVuKnY .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sq35uVuKnY .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sq35uVuKnY .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sq35uVuKnY img {
    height: 3.8rem !important;
  }
  .cid-sq35uVuKnY .btn {
    display: -webkit-flex;
  }
  .cid-sq35uVuKnY button.navbar-toggler {
    display: block;
  }
  .cid-sq35uVuKnY .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sq35uVuKnY .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sq35uVuKnY .navbar-collapse.collapsing,
  .cid-sq35uVuKnY .navbar-collapse.show {
    display: block !important;
  }
  .cid-sq35uVuKnY .navbar-collapse.collapsing .navbar-nav,
  .cid-sq35uVuKnY .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sq35uVuKnY .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sq35uVuKnY .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sq35uVuKnY .navbar-collapse.collapsing .navbar-buttons,
  .cid-sq35uVuKnY .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sq35uVuKnY .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sq35uVuKnY .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sq35uVuKnY .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sq35uVuKnY .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sq35uVuKnY .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sq35uVuKnY .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-spS9QgqOcC {
  background-image: url("../../../assets/images/mbr-1-1920x1282.jpg");
  background-position: right;
}
.cid-spS9QgqOcC .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-spS9QgqOcC .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-spS9QgqOcC .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-spS9QgqOcC img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-spS9QgqOcC .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-spXVg4gYlF {
  padding-top: 120px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-spXVg4gYlF .container {
  margin-bottom: 8%;
}
.cid-spXVg4gYlF .content-container .btn-bgr {
  z-index: 0;
}
.cid-spXVg4gYlF .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #f6fbff;
}
.cid-spXVg4gYlF .icon-block-top span {
  background-color: #6b3df0;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-spXVg4gYlF .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-spXVg4gYlF .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-spXVg4gYlF .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-spXVg4gYlF .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-spXVg4gYlF .box-item-text,
.cid-spXVg4gYlF .mbr-section-btn {
  color: #8d97ad;
}
.cid-spXVg4gYlF .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-spXVg4gYlF .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-spXVg4gYlF .box-list li:last-child {
  border-bottom: none;
}
.cid-spXVg4gYlF .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-spXVg4gYlF .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-spXVg4gYlF .mbr-section-btn {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.cid-spXVg4gYlF .mbr-section-btn > .btn-underline {
  padding: .5rem;
}
@media (min-width: 992px) {
  .cid-spXVg4gYlF .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-spXVg4gYlF .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-spXVg4gYlF .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-spXVg4gYlF .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-spXVg4gYlF .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-spXVg4gYlF .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-spXVg4gYlF .mbr-text {
  color: #efefef;
}
.cid-spXVg4gYlF H1 {
  color: #ffffff;
}
.cid-spX8Yee3zg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f6fbff;
}
.cid-spX8Yee3zg .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-spX8Yee3zg .title,
.cid-spX8Yee3zg .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-spX8Yee3zg .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-spX8Yee3zg .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-spX8Yee3zg .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-spX8Yee3zg .text-box {
  padding: 0rem;
}
.cid-spX8Yee3zg .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-spX8Yee3zg .card-title {
  color: #ffb51c;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-spX8Yee3zg .card-img {
  overflow: hidden;
}
.cid-spX8Yee3zg .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-spX8Yee3zg .card-box {
  padding: 0rem;
}
.cid-spX8Yee3zg img {
  transition: all 0.3s;
}
.cid-spX8Yee3zg .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-spX8Yee3zg .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-spX8Yee3zg .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-spX8Yee3zg .card-img {
    width: 30%;
  }
  .cid-spX8Yee3zg .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-spX8Yee3zg .card-img {
    width: 50%;
  }
  .cid-spX8Yee3zg .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-spX8Yee3zg .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-spX8Yee3zg .card-img {
    width: 100%;
  }
  .cid-spX8Yee3zg .card-box {
    width: 100%;
  }
}
.cid-spX8Yee3zg .card-box > p,
.cid-spX8Yee3zg .mbr-section-btn {
  color: #767676;
}
.cid-spXdnGRKVm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-spXdnGRKVm .mbr-overlay {
  background-color: #6a7c92;
  opacity: 0.5;
}
.cid-spXdnGRKVm textarea {
  min-height: 150px;
}
.cid-spXdnGRKVm .form-col {
  background: #a485fd;
  padding: 3rem 1rem;
}
.cid-spXdnGRKVm .form-wrap {
  max-width: 520px;
  margin: auto;
}
.cid-spXdnGRKVm .text-wrap {
  max-width: 400px;
  border: 2px solid #f6fbff;
  padding: 3rem;
  margin: 4rem auto!important;
}
@media (max-width: 992px) {
  .cid-spXdnGRKVm .form-wrap {
    max-width: 690px;
  }
  .cid-spXdnGRKVm .md-pb {
    padding-bottom: 3rem;
  }
  .cid-spXdnGRKVm .text-wrap {
    max-width: 690px;
  }
}
.cid-spXdnGRKVm .input-group-btn {
  margin: 0.4rem;
  padding-top: 1.5rem;
}
.cid-spXdnGRKVm .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-spXdnGRKVm H2 {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-spXdnGRKVm .col-auto {
    margin: auto;
  }
}
.cid-spXdnGRKVm H3 {
  color: #f6fbff;
  text-align: center;
}
.cid-spXdnGRKVm H4 {
  color: #ffffff;
}
.cid-spXgw9uaUA {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #051441;
  position: relative;
  overflow: hidden;
}
.cid-spXgw9uaUA .container {
  max-width: 1400px;
}
.cid-spXgw9uaUA .card-img2 span {
  padding-top: 6px;
}
.cid-spXgw9uaUA .soc-item a {
  padding-top: 5px;
}
.cid-spXgw9uaUA .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-spXgw9uaUA .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-spXgw9uaUA .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-spXgw9uaUA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-spXgw9uaUA svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-spXgw9uaUA #e2_shape {
  fill: #051441 !important;
}
.cid-spXgw9uaUA .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-spXgw9uaUA .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-spXgw9uaUA .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-spXgw9uaUA .card-img {
  width: auto;
}
.cid-spXgw9uaUA .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-spXgw9uaUA .soc-item span {
  font-size: 1.4rem;
}
.cid-spXgw9uaUA .soc-item:hover span {
  color: #4154f1 !important;
}
.cid-spXgw9uaUA .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-spXgw9uaUA .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-spXgw9uaUA .media-wrap {
  margin-bottom: 1rem;
}
.cid-spXgw9uaUA .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-spXgw9uaUA img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-spXgw9uaUA .item {
    justify-content: center;
  }
  .cid-spXgw9uaUA .quote::after {
    left: 60px;
  }
}
.cid-spXgw9uaUA .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-spXgw9uaUA .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-spXgw9uaUA .text1 {
  color: #ffffff;
}
.cid-spXgw9uaUA .item-title {
  color: #ffffff;
}
.cid-spXgw9uaUA H5 {
  color: #ffffff;
}
.cid-spXgw9uaUA .theme {
  color: #ffffff;
}
.cid-spXgw9uaUA .copyright > p {
  color: #ff3366;
}
.cid-spXgw9uaUA .text2 {
  color: #ffffff;
}
.cid-sq38kgt5Wj {
  height: 0 !important;
}
.cid-sq38kgt5Wj .navbar {
  background: #a485fd;
  transition: none;
  z-index: 1001;
  left: auto;
}
.cid-sq38kgt5Wj .navbar .show {
  height: 100vh;
}
.cid-sq38kgt5Wj .navbar-collapse {
  max-height: 100vh !important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sq38kgt5Wj .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sq38kgt5Wj .navbar-dropdown.bg-color.transparent.opened {
  background: #a485fd;
}
.cid-sq38kgt5Wj .bottom {
  padding-bottom: 2rem;
}
.cid-sq38kgt5Wj a {
  font-style: normal;
}
.cid-sq38kgt5Wj .dropdown-backdrop {
  display: none;
}
.cid-sq38kgt5Wj .dropdown-toggle::after {
  border-top: 0 !important;
  margin-left: 10px !important;
}
.cid-sq38kgt5Wj .nav-dropdown {
  padding-top: 8rem;
}
.cid-sq38kgt5Wj .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-sq38kgt5Wj .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-sq38kgt5Wj .nav-link:after {
  content: '';
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #3c159e;
  margin-left: 10px;
}
.cid-sq38kgt5Wj .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-sq38kgt5Wj .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sq38kgt5Wj .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sq38kgt5Wj .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}
.cid-sq38kgt5Wj .navbar-nav {
  width: 100% !important;
}
.cid-sq38kgt5Wj .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sq38kgt5Wj .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sq38kgt5Wj .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-sq38kgt5Wj .dropdown-menu {
  position: absolute !important;
  width: fit-content !important;
}
.cid-sq38kgt5Wj .dropdown-item {
  background: #3c159e;
  color: #ffffff !important;
}
.cid-sq38kgt5Wj .dropdown-item:hover,
.cid-sq38kgt5Wj .dropdown-item:active {
  color: #ffffff !important;
}
.cid-sq38kgt5Wj .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-sq38kgt5Wj .soc-item {
  width: 45px;
  height: 45px;
  background: #3c159e;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-sq38kgt5Wj .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-sq38kgt5Wj .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-sq38kgt5Wj .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #3c159e;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-sq38kgt5Wj .navbar-logo {
  margin-right: 0 !important;
}
.cid-sq38kgt5Wj .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-sq38kgt5Wj .menu-logo {
  position: absolute !important;
}
.cid-sq38kgt5Wj .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1002;
  margin-right: auto;
}
.cid-sq38kgt5Wj .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sq38kgt5Wj .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sq38kgt5Wj .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sq38kgt5Wj .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sq38kgt5Wj .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sq38kgt5Wj .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sq38kgt5Wj .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sq38kgt5Wj .navbar-toggler {
  background: #a485fd;
  width: 75px !important;
  height: 75px !important;
  border-radius: 0 !important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-sq38kgt5Wj .navbar-brand {
  background: transparent;
  margin: 0 !important;
  padding: 10px !important;
  padding-top: 20px;
}
.cid-sq38kgt5Wj .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-sq38kgt5Wj .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sq38kgt5Wj .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sq38kgt5Wj .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sq38kgt5Wj .opened,
.cid-sq38kgt5Wj .show {
  height: 100%;
  width: 300px !important;
  right: 0;
  transition: none;
  background: #a485fd !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-sq38kgt5Wj .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-sq38kgt5Wj .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-sq38kgt5Wj .opened,
  .cid-sq38kgt5Wj .show,
  .cid-sq38kgt5Wj .navbar {
    width: 100% !important;
  }
  .cid-sq38kgt5Wj .dropdown-toggle {
    margin: auto !important;
  }
  .cid-sq38kgt5Wj .dropdown-menu {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: auto;
  }
  .cid-sq38kgt5Wj .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-sq38kgt5Wj .nav-item:focus,
.cid-sq38kgt5Wj .nav-link:focus {
  outline: none;
}
.cid-sq38kgt5Wj .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-sq38kgt5Wj .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sq38kgt5Wj .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sq38kgt5Wj .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sq38kgt5Wj .dropdown .dropdown-menu {
  background: #a485fd;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sq38kgt5Wj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sq38kgt5Wj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sq38kgt5Wj .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sq38kgt5Wj .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sq38kgt5Wj .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sq38kgt5Wj button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sq38kgt5Wj button.navbar-toggler:focus {
  outline: none;
}
.cid-sq38kgt5Wj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sq38kgt5Wj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sq38kgt5Wj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq38kgt5Wj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq38kgt5Wj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sq38kgt5Wj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq38kgt5Wj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sq38kgt5Wj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sq38kgt5Wj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq38kgt5Wj .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sq38kgt5Wj .collapsed .btn {
  display: -webkit-flex;
}
.cid-sq38kgt5Wj .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sq38kgt5Wj .collapsed .navbar-collapse.collapsing,
.cid-sq38kgt5Wj .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-sq38kgt5Wj .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sq38kgt5Wj .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sq38kgt5Wj .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sq38kgt5Wj .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sq38kgt5Wj .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sq38kgt5Wj .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sq38kgt5Wj .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sq38kgt5Wj .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sq38kgt5Wj .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 91.1875vh;
  }
}
.cid-sq38kgt5Wj .collapsed button.navbar-toggler {
  display: block;
}
.cid-sq38kgt5Wj .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sq38kgt5Wj .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sq38kgt5Wj .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sq38kgt5Wj .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sq38kgt5Wj .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sq38kgt5Wj img {
    height: 3.8rem !important;
  }
  .cid-sq38kgt5Wj .btn {
    display: -webkit-flex;
  }
  .cid-sq38kgt5Wj button.navbar-toggler {
    display: block;
  }
  .cid-sq38kgt5Wj .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sq38kgt5Wj .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sq38kgt5Wj .navbar-collapse.collapsing,
  .cid-sq38kgt5Wj .navbar-collapse.show {
    display: block !important;
  }
  .cid-sq38kgt5Wj .navbar-collapse.collapsing .navbar-nav,
  .cid-sq38kgt5Wj .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sq38kgt5Wj .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sq38kgt5Wj .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sq38kgt5Wj .navbar-collapse.collapsing .navbar-buttons,
  .cid-sq38kgt5Wj .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sq38kgt5Wj .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sq38kgt5Wj .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sq38kgt5Wj .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sq38kgt5Wj .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sq38kgt5Wj .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sq38kgt5Wj .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sq38kh40l2 {
  background-image: url("../../../assets/images/mbr-1920x1335.jpg");
  background-position: right;
}
.cid-sq38kh40l2 .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-sq38kh40l2 .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-sq38kh40l2 .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sq38kh40l2 img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-sq38kh40l2 .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sq38khCkpY {
  padding-top: 120px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sq38khCkpY .container {
  margin-bottom: 8%;
}
.cid-sq38khCkpY .content-container .btn-bgr {
  z-index: 0;
}
.cid-sq38khCkpY .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #f6fbff;
}
.cid-sq38khCkpY .icon-block-top span {
  background-color: #6b3df0;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sq38khCkpY .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sq38khCkpY .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sq38khCkpY .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sq38khCkpY .box-item:nth-child(3) {
  background-color: #ffffff;
}
.cid-sq38khCkpY .box-item:nth-child(4) {
  background-color: #ffffff;
}
.cid-sq38khCkpY .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sq38khCkpY .box-item-text,
.cid-sq38khCkpY .mbr-section-btn {
  color: #8d97ad;
}
.cid-sq38khCkpY .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sq38khCkpY .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sq38khCkpY .box-list li:last-child {
  border-bottom: none;
}
.cid-sq38khCkpY .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sq38khCkpY .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sq38khCkpY .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sq38khCkpY .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sq38khCkpY .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sq38khCkpY .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sq38khCkpY .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sq38khCkpY .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sq38khCkpY .mbr-text {
  color: #efefef;
}
.cid-sq38khCkpY H1 {
  color: #ffffff;
}
.cid-sq38kj2bMu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-sq38kj2bMu .mbr-overlay {
  background-color: #6a7c92;
  opacity: 0.5;
}
.cid-sq38kj2bMu textarea {
  min-height: 150px;
}
.cid-sq38kj2bMu .form-col {
  background: #a485fd;
  padding: 3rem 1rem;
}
.cid-sq38kj2bMu .form-wrap {
  max-width: 520px;
  margin: auto;
}
.cid-sq38kj2bMu .text-wrap {
  max-width: 400px;
  border: 2px solid #f6fbff;
  padding: 3rem;
  margin: 4rem auto!important;
}
@media (max-width: 992px) {
  .cid-sq38kj2bMu .form-wrap {
    max-width: 690px;
  }
  .cid-sq38kj2bMu .md-pb {
    padding-bottom: 3rem;
  }
  .cid-sq38kj2bMu .text-wrap {
    max-width: 690px;
  }
}
.cid-sq38kj2bMu .input-group-btn {
  margin: 0.4rem;
  padding-top: 1.5rem;
}
.cid-sq38kj2bMu .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sq38kj2bMu H2 {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sq38kj2bMu .col-auto {
    margin: auto;
  }
}
.cid-sq38kj2bMu H3 {
  color: #f6fbff;
  text-align: center;
}
.cid-sq38kj2bMu H4 {
  color: #ffffff;
}
.cid-sq38kjoikU {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #051441;
  position: relative;
  overflow: hidden;
}
.cid-sq38kjoikU .container {
  max-width: 1400px;
}
.cid-sq38kjoikU .card-img2 span {
  padding-top: 6px;
}
.cid-sq38kjoikU .soc-item a {
  padding-top: 5px;
}
.cid-sq38kjoikU .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sq38kjoikU .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sq38kjoikU .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sq38kjoikU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sq38kjoikU svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sq38kjoikU #e2_shape {
  fill: #051441 !important;
}
.cid-sq38kjoikU .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sq38kjoikU .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sq38kjoikU .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sq38kjoikU .card-img {
  width: auto;
}
.cid-sq38kjoikU .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sq38kjoikU .soc-item span {
  font-size: 1.4rem;
}
.cid-sq38kjoikU .soc-item:hover span {
  color: #4154f1 !important;
}
.cid-sq38kjoikU .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sq38kjoikU .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sq38kjoikU .media-wrap {
  margin-bottom: 1rem;
}
.cid-sq38kjoikU .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sq38kjoikU img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sq38kjoikU .item {
    justify-content: center;
  }
  .cid-sq38kjoikU .quote::after {
    left: 60px;
  }
}
.cid-sq38kjoikU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sq38kjoikU .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sq38kjoikU .text1 {
  color: #ffffff;
}
.cid-sq38kjoikU .item-title {
  color: #ffffff;
}
.cid-sq38kjoikU H5 {
  color: #ffffff;
}
.cid-sq38kjoikU .theme {
  color: #ffffff;
}
.cid-sq38kjoikU .copyright > p {
  color: #ff3366;
}
.cid-sq38kjoikU .text2 {
  color: #ffffff;
}
.cid-sq38p9f2U6 {
  height: 0 !important;
}
.cid-sq38p9f2U6 .navbar {
  background: #a485fd;
  transition: none;
  z-index: 1001;
  left: auto;
}
.cid-sq38p9f2U6 .navbar .show {
  height: 100vh;
}
.cid-sq38p9f2U6 .navbar-collapse {
  max-height: 100vh !important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sq38p9f2U6 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sq38p9f2U6 .navbar-dropdown.bg-color.transparent.opened {
  background: #a485fd;
}
.cid-sq38p9f2U6 .bottom {
  padding-bottom: 2rem;
}
.cid-sq38p9f2U6 a {
  font-style: normal;
}
.cid-sq38p9f2U6 .dropdown-backdrop {
  display: none;
}
.cid-sq38p9f2U6 .dropdown-toggle::after {
  border-top: 0 !important;
  margin-left: 10px !important;
}
.cid-sq38p9f2U6 .nav-dropdown {
  padding-top: 8rem;
}
.cid-sq38p9f2U6 .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-sq38p9f2U6 .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-sq38p9f2U6 .nav-link:after {
  content: '';
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #3c159e;
  margin-left: 10px;
}
.cid-sq38p9f2U6 .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-sq38p9f2U6 .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sq38p9f2U6 .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sq38p9f2U6 .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}
.cid-sq38p9f2U6 .navbar-nav {
  width: 100% !important;
}
.cid-sq38p9f2U6 .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sq38p9f2U6 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sq38p9f2U6 .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-sq38p9f2U6 .dropdown-menu {
  position: absolute !important;
  width: fit-content !important;
}
.cid-sq38p9f2U6 .dropdown-item {
  background: #3c159e;
  color: #ffffff !important;
}
.cid-sq38p9f2U6 .dropdown-item:hover,
.cid-sq38p9f2U6 .dropdown-item:active {
  color: #ffffff !important;
}
.cid-sq38p9f2U6 .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-sq38p9f2U6 .soc-item {
  width: 45px;
  height: 45px;
  background: #3c159e;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-sq38p9f2U6 .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-sq38p9f2U6 .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-sq38p9f2U6 .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #3c159e;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-sq38p9f2U6 .navbar-logo {
  margin-right: 0 !important;
}
.cid-sq38p9f2U6 .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-sq38p9f2U6 .menu-logo {
  position: absolute !important;
}
.cid-sq38p9f2U6 .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1002;
  margin-right: auto;
}
.cid-sq38p9f2U6 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sq38p9f2U6 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sq38p9f2U6 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sq38p9f2U6 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sq38p9f2U6 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sq38p9f2U6 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sq38p9f2U6 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sq38p9f2U6 .navbar-toggler {
  background: #a485fd;
  width: 75px !important;
  height: 75px !important;
  border-radius: 0 !important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-sq38p9f2U6 .navbar-brand {
  background: transparent;
  margin: 0 !important;
  padding: 10px !important;
  padding-top: 20px;
}
.cid-sq38p9f2U6 .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-sq38p9f2U6 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sq38p9f2U6 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sq38p9f2U6 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sq38p9f2U6 .opened,
.cid-sq38p9f2U6 .show {
  height: 100%;
  width: 300px !important;
  right: 0;
  transition: none;
  background: #a485fd !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-sq38p9f2U6 .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-sq38p9f2U6 .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-sq38p9f2U6 .opened,
  .cid-sq38p9f2U6 .show,
  .cid-sq38p9f2U6 .navbar {
    width: 100% !important;
  }
  .cid-sq38p9f2U6 .dropdown-toggle {
    margin: auto !important;
  }
  .cid-sq38p9f2U6 .dropdown-menu {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: auto;
  }
  .cid-sq38p9f2U6 .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-sq38p9f2U6 .nav-item:focus,
.cid-sq38p9f2U6 .nav-link:focus {
  outline: none;
}
.cid-sq38p9f2U6 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-sq38p9f2U6 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sq38p9f2U6 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sq38p9f2U6 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sq38p9f2U6 .dropdown .dropdown-menu {
  background: #a485fd;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sq38p9f2U6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sq38p9f2U6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sq38p9f2U6 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sq38p9f2U6 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sq38p9f2U6 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sq38p9f2U6 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sq38p9f2U6 button.navbar-toggler:focus {
  outline: none;
}
.cid-sq38p9f2U6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sq38p9f2U6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sq38p9f2U6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq38p9f2U6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sq38p9f2U6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sq38p9f2U6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq38p9f2U6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sq38p9f2U6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sq38p9f2U6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sq38p9f2U6 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sq38p9f2U6 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sq38p9f2U6 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sq38p9f2U6 .collapsed .navbar-collapse.collapsing,
.cid-sq38p9f2U6 .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-sq38p9f2U6 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sq38p9f2U6 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sq38p9f2U6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sq38p9f2U6 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sq38p9f2U6 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sq38p9f2U6 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sq38p9f2U6 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sq38p9f2U6 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sq38p9f2U6 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 91.1875vh;
  }
}
.cid-sq38p9f2U6 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sq38p9f2U6 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sq38p9f2U6 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sq38p9f2U6 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sq38p9f2U6 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sq38p9f2U6 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sq38p9f2U6 img {
    height: 3.8rem !important;
  }
  .cid-sq38p9f2U6 .btn {
    display: -webkit-flex;
  }
  .cid-sq38p9f2U6 button.navbar-toggler {
    display: block;
  }
  .cid-sq38p9f2U6 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sq38p9f2U6 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sq38p9f2U6 .navbar-collapse.collapsing,
  .cid-sq38p9f2U6 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sq38p9f2U6 .navbar-collapse.collapsing .navbar-nav,
  .cid-sq38p9f2U6 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sq38p9f2U6 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sq38p9f2U6 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sq38p9f2U6 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sq38p9f2U6 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sq38p9f2U6 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sq38p9f2U6 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sq38p9f2U6 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sq38p9f2U6 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sq38p9f2U6 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sq38p9f2U6 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sq38p9F2X6 {
  background-image: url("../../../assets/images/mbr-1920x1555.jpg");
  background-position: right;
}
.cid-sq38p9F2X6 .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-sq38p9F2X6 .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-sq38p9F2X6 .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sq38p9F2X6 img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-sq38p9F2X6 .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sq38p9WCi3 {
  padding-top: 120px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sq38p9WCi3 .container {
  margin-bottom: 8%;
}
.cid-sq38p9WCi3 .content-container .btn-bgr {
  z-index: 0;
}
.cid-sq38p9WCi3 .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #f6fbff;
}
.cid-sq38p9WCi3 .icon-block-top span {
  background-color: #6b3df0;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sq38p9WCi3 .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sq38p9WCi3 .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sq38p9WCi3 .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sq38p9WCi3 .box-item:nth-child(3) {
  background-color: #ffffff;
}
.cid-sq38p9WCi3 .box-item:nth-child(4) {
  background-color: #ffffff;
}
.cid-sq38p9WCi3 .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sq38p9WCi3 .box-item-text,
.cid-sq38p9WCi3 .mbr-section-btn {
  color: #8d97ad;
  text-align: center;
}
.cid-sq38p9WCi3 .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sq38p9WCi3 .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sq38p9WCi3 .box-list li:last-child {
  border-bottom: none;
}
.cid-sq38p9WCi3 .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sq38p9WCi3 .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sq38p9WCi3 .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sq38p9WCi3 .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sq38p9WCi3 .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sq38p9WCi3 .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sq38p9WCi3 .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sq38p9WCi3 .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sq38p9WCi3 .mbr-text {
  color: #efefef;
}
.cid-sq38p9WCi3 H1 {
  color: #ffffff;
}
.cid-sq38p9WCi3 .box-item-title {
  text-align: center;
}
.cid-sq38paNkRj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-sq38paNkRj .mbr-overlay {
  background-color: #6a7c92;
  opacity: 0.5;
}
.cid-sq38paNkRj textarea {
  min-height: 150px;
}
.cid-sq38paNkRj .form-col {
  background: #a485fd;
  padding: 3rem 1rem;
}
.cid-sq38paNkRj .form-wrap {
  max-width: 520px;
  margin: auto;
}
.cid-sq38paNkRj .text-wrap {
  max-width: 400px;
  border: 2px solid #f6fbff;
  padding: 3rem;
  margin: 4rem auto!important;
}
@media (max-width: 992px) {
  .cid-sq38paNkRj .form-wrap {
    max-width: 690px;
  }
  .cid-sq38paNkRj .md-pb {
    padding-bottom: 3rem;
  }
  .cid-sq38paNkRj .text-wrap {
    max-width: 690px;
  }
}
.cid-sq38paNkRj .input-group-btn {
  margin: 0.4rem;
  padding-top: 1.5rem;
}
.cid-sq38paNkRj .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sq38paNkRj H2 {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sq38paNkRj .col-auto {
    margin: auto;
  }
}
.cid-sq38paNkRj H3 {
  color: #f6fbff;
  text-align: center;
}
.cid-sq38paNkRj H4 {
  color: #ffffff;
}
.cid-sq38pb6Q6q {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #051441;
  position: relative;
  overflow: hidden;
}
.cid-sq38pb6Q6q .container {
  max-width: 1400px;
}
.cid-sq38pb6Q6q .card-img2 span {
  padding-top: 6px;
}
.cid-sq38pb6Q6q .soc-item a {
  padding-top: 5px;
}
.cid-sq38pb6Q6q .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sq38pb6Q6q .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sq38pb6Q6q .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sq38pb6Q6q .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sq38pb6Q6q svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sq38pb6Q6q #e2_shape {
  fill: #051441 !important;
}
.cid-sq38pb6Q6q .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sq38pb6Q6q .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sq38pb6Q6q .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sq38pb6Q6q .card-img {
  width: auto;
}
.cid-sq38pb6Q6q .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sq38pb6Q6q .soc-item span {
  font-size: 1.4rem;
}
.cid-sq38pb6Q6q .soc-item:hover span {
  color: #4154f1 !important;
}
.cid-sq38pb6Q6q .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sq38pb6Q6q .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sq38pb6Q6q .media-wrap {
  margin-bottom: 1rem;
}
.cid-sq38pb6Q6q .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sq38pb6Q6q img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sq38pb6Q6q .item {
    justify-content: center;
  }
  .cid-sq38pb6Q6q .quote::after {
    left: 60px;
  }
}
.cid-sq38pb6Q6q .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sq38pb6Q6q .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sq38pb6Q6q .text1 {
  color: #ffffff;
}
.cid-sq38pb6Q6q .item-title {
  color: #ffffff;
}
.cid-sq38pb6Q6q H5 {
  color: #ffffff;
}
.cid-sq38pb6Q6q .theme {
  color: #ffffff;
}
.cid-sq38pb6Q6q .copyright > p {
  color: #ff3366;
}
.cid-sq38pb6Q6q .text2 {
  color: #ffffff;
}
