body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    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-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #66458e !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #66458e !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #352449 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #66458e;
  border-color: #66458e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a68cc7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.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: 'Rubik', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #66458e;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #66458e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #66458e;
  border-bottom-color: #66458e;
}
.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: #66458e !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: #ca4336 !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%;
}
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='%2366458e' %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;
}
.cid-sC09qzfu5T .nav-item:focus,
.cid-sC09qzfu5T .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sC09qzfu5T .nav-item {
    position: relative;
  }
}
.cid-sC09qzfu5T .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: #000000;
}
.cid-sC09qzfu5T .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #000000;
}
.cid-sC09qzfu5T .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sC09qzfu5T .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sC09qzfu5T .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sC09qzfu5T .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sC09qzfu5T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sC09qzfu5T .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC09qzfu5T .navbar.collapsed .navbar-collapse.show,
.cid-sC09qzfu5T .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sC09qzfu5T .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sC09qzfu5T .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sC09qzfu5T .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sC09qzfu5T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sC09qzfu5T .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sC09qzfu5T .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sC09qzfu5T .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sC09qzfu5T .navbar.collapsed .right-menu,
.cid-sC09qzfu5T .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sC09qzfu5T .navbar .navbar-collapse.show,
  .cid-sC09qzfu5T .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sC09qzfu5T .navbar .navbar-collapse.show .brand-container,
  .cid-sC09qzfu5T .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sC09qzfu5T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sC09qzfu5T .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sC09qzfu5T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sC09qzfu5T .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sC09qzfu5T .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sC09qzfu5T .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sC09qzfu5T .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sC09qzfu5T .navbar .right-menu,
  .cid-sC09qzfu5T .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sC09qzfu5T .navbar.navbar-short {
  min-height: 60px;
}
.cid-sC09qzfu5T .navbar.navbar-short .mbr-overlay {
  background: #000000 !important;
}
.cid-sC09qzfu5T .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sC09qzfu5T .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sC09qzfu5T .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sC09qzfu5T .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sC09qzfu5T .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sC09qzfu5T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sC09qzfu5T .dropdown-item.active,
.cid-sC09qzfu5T .dropdown-item:active {
  background-color: transparent;
}
.cid-sC09qzfu5T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sC09qzfu5T .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sC09qzfu5T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sC09qzfu5T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sC09qzfu5T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sC09qzfu5T ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sC09qzfu5T ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sC09qzfu5T .navbar-buttons {
  margin-left: auto;
}
.cid-sC09qzfu5T button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-sC09qzfu5T button.navbar-toggler:hover {
  outline: none;
}
.cid-sC09qzfu5T button.navbar-toggler:active {
  outline: none;
}
.cid-sC09qzfu5T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sC09qzfu5T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sC09qzfu5T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sC09qzfu5T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sC09qzfu5T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sC09qzfu5T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sC09qzfu5T nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sC09qzfu5T nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sC09qzfu5T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sC09qzfu5T a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sC09qzfu5T .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sC09qzfu5T .right-menu,
.cid-sC09qzfu5T .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sC09qzfu5T .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC09qzfu5T .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC09qzfu5T .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sC09qzfu5T .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sC09qzfu5T .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sC09qzfu5T .card-wrapper {
  z-index: 3;
}
.cid-sC09qzfu5T .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sC09qzfu5T .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sC09qzfu5T .nav-item:not(:last-child) {
  margin-right: 32px !important;
}
.cid-sC09qzfu5T .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-sC09qzfu5T .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-sC09qzfu5T .nav-link {
  position: relative;
  padding: 0;
  display: inline-block;
}
.cid-sC09qzfu5T .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
.cid-sC09qzfu5T .nav-link:hover .line-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-sC09qzfu5T .link {
  padding: 0;
  margin: 0;
}
.cid-sC09qzfu5T .dropdown-menu {
  margin-top: 0px;
}
.cid-sC09qzfu5T .navbar-caption {
  color: #ffffff;
}
.cid-sC09qzfu5T .navbar-caption:hover {
  color: #ffffff;
}
.cid-sC09qzfu5T .dropdown-item:hover {
  color: #66458e !important;
}
.cid-sC09qzfu5T .dropdown-toggle:after {
  display: none;
}
.cid-sC09qzfu5T a:hover .line-animation {
  opacity: 1;
}
.cid-sC09qzfu5T .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-sC09qzfu5T .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sC09qzfu5T .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-sC0gGlV4ox {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/young-woman-watching-tv-room-130111-88-626x417.jpg");
}
.cid-sC0gGlV4ox .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-sC0gGlV4ox .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-sC0ndWsJZ7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-sC0ndWsJZ7 img,
.cid-sC0ndWsJZ7 .item-img {
  border-radius: 2rem;
  transition: all 0.3s;
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sC0ndWsJZ7 .item:focus,
.cid-sC0ndWsJZ7 span:focus {
  outline: none;
}
.cid-sC0ndWsJZ7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sC0ndWsJZ7 .item-wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 3rem;
  background: #f2f3f7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-sC0ndWsJZ7 .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-sC0ndWsJZ7 .item-wrapper {
    border-radius: 2rem;
  }
}
.cid-sC0ndWsJZ7 .item-content {
  padding: 1.5rem 1rem;
}
@media (max-width: 767px) {
  .cid-sC0ndWsJZ7 .item-content {
    padding: 1rem 0;
  }
}
.cid-sC0ndWsJZ7 .mbr-section-title {
  color: #36187d;
}
.cid-sC0ndWsJZ7 .item-title {
  color: #36187d;
  text-align: center;
}
.cid-sC0ndWsJZ7 .item-subtitle {
  color: #bec2cf;
}
.cid-sC0ndWsJZ7 .mbr-text,
.cid-sC0ndWsJZ7 .mbr-section-btn {
  color: #6c758f;
  text-align: center;
}
.cid-sC0ndWsJZ7 .mbr-link {
  color: #0196e3;
  display: block;
}
.cid-sC0JN0I6PZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #6a96de;
}
.cid-sC0JN0I6PZ .mbr-section-subtitle {
  color: #767676;
}
.cid-sC0JN0I6PZ .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sC0JN0I6PZ .mbr-section-title DIV {
  text-align: left;
}
.cid-sC0pGwKiWb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sC0pGwKiWb .container {
    max-width: 1400px;
  }
}
.cid-sC0pGwKiWb .card-wrapper {
  background: #ffffff;
  padding: 30px;
}
.cid-sC0pGwKiWb .card-wrapper .image-wrap img {
  width: 100%;
}
.cid-sC0pGwKiWb .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ff2b09;
  margin-bottom: 2rem;
}
.cid-sC0pGwKiWb .row {
  justify-content: center;
}
.cid-sC0pGwKiWb img {
  padding-bottom: 20px;
  height: 140px;
  width: auto;
  margin: auto;
}
.cid-sC0pGwKiWb .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 70px;
}
.cid-sC0r3W90x2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-primary-outline {
  border: 1px solid #66458e;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-primary-outline:hover {
  background-color: #66458e !important;
  color: #ffffff !important;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-secondary-outline {
  border: 1px solid #ca4336;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-secondary-outline:hover {
  background-color: #ca4336 !important;
  color: #ffffff !important;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-success-outline {
  border: 1px solid #365c9a;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-success-outline:hover {
  background-color: #365c9a !important;
  color: #ffffff !important;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-info-outline {
  border: 1px solid #e96188;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-info-outline:hover {
  background-color: #e96188 !important;
  color: #ffffff !important;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-warning-outline {
  border: 1px solid #fac769;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-warning-outline:hover {
  background-color: #fac769 !important;
  color: #ffffff !important;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-danger-outline {
  border: 1px solid #b2ccd2;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-danger-outline:hover {
  background-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-black-outline {
  border: 1px solid #000000;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-sC0r3W90x2 .plan-body .btn-bgr.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-sC0r3W90x2 .plan-header {
  overflow: hidden;
  background-color: #196653;
  margin-left: -24px;
  margin-right: -24px;
  padding: 32px;
  background: linear-gradient(45deg, #196653, #1464e6);
}
.cid-sC0r3W90x2 .plan-header .plan-price .price-figure {
  color: #ffffff;
  margin-right: -10px;
  display: block;
  width: 100%;
}
.cid-sC0r3W90x2 .plan-header .plan-price .price-term {
  display: block;
  line-height: 1;
  color: #ffffff;
}
.cid-sC0r3W90x2 .plan-header .plan-price .price-free {
  color: #ffffff;
  margin-top: 20px;
  display: block;
}
.cid-sC0r3W90x2 .plan {
  position: relative;
  max-width: 330px;
  padding-right: 15px;
  padding-left: 15px;
  color: #232323;
}
.cid-sC0r3W90x2 .plan:hover .plan-wrap {
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s;
}
.cid-sC0r3W90x2 .plan .plan-wrap {
  border: 1px solid #e5e5e5;
  border-radius: .25rem;
  padding-right: 24px;
  padding-left: 24px;
}
.cid-sC0r3W90x2 .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 1rem 1.25rem;
}
.cid-sC0r3W90x2 .plan:nth-child(4) .plan-header {
  background: #2bd71b;
  background: linear-gradient(45deg, #2bd71b, #33b5ad);
}
.cid-sC0r3W90x2 .plan:nth-child(4) .plan-wrap {
  background-color: #ffffff;
}
.cid-sC0r3W90x2 .plan .mbr-section-btn {
  padding-bottom: 20px;
}
.cid-sC0r3W90x2 .plan .mbr-section-btn .btn {
  width: 100%;
  margin: 0;
}
.cid-sC0r3W90x2 .plan-wrap {
  background-color: #ffffff;
}
@media (max-width: 1199px) {
  .cid-sC0r3W90x2 .plan .list-group-item {
    padding: 1rem 0rem;
  }
}
@media (max-width: 550px) {
  .cid-sC0r3W90x2 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sC0vr0oXqD {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #eff2f7;
}
.cid-sC0vr0oXqD .container.main,
.cid-sC0vr0oXqD .container-fluid.main {
  padding-left: 30px;
  padding-right: 30px;
}
.cid-sC0vr0oXqD .container .mbr-section-subtitle,
.cid-sC0vr0oXqD .container-fluid .mbr-section-subtitle {
  color: #ca4336;
  margin-bottom: 10px;
}
.cid-sC0vr0oXqD .container .mbr-section-title,
.cid-sC0vr0oXqD .container-fluid .mbr-section-title {
  margin-bottom: 20px;
  color: #66458e;
}
.cid-sC0vr0oXqD .container .mbr-text,
.cid-sC0vr0oXqD .container-fluid .mbr-text {
  color: #e96188;
}
.cid-sC0vr0oXqD .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0rem;
}
.cid-sC0vr0oXqD .carousel-item > div {
  width: 100%;
}
.cid-sC0vr0oXqD .carousel-item.active,
.cid-sC0vr0oXqD .carousel-item-next,
.cid-sC0vr0oXqD .carousel-item-prev {
  display: flex;
}
.cid-sC0vr0oXqD .carousel-indicators {
  left: 0%;
  margin: 20px auto 0;
  align-items: center;
  bottom: -60px !important;
}
.cid-sC0vr0oXqD .carousel-indicators .active {
  border: 3px solid #ffffff;
  background-color: #ffffff !important;
}
.cid-sC0vr0oXqD .carousel-indicators li {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  transition: border 0.5s;
  background-color: #ffffff;
  font-size: 2rem;
  opacity: 1;
  border-width: 0px;
  margin: 6px;
}
.cid-sC0vr0oXqD .carousel-indicators li:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .cid-sC0vr0oXqD .carousel-controls {
    display: none;
  }
}
.cid-sC0vr0oXqD .carousel-controls .carousel-control-prev,
.cid-sC0vr0oXqD .carousel-controls .carousel-control-next {
  opacity: 1;
}
.cid-sC0vr0oXqD .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 15px;
}
.cid-sC0vr0oXqD .carousel-controls a span {
  padding: 16.5px;
  border-radius: 50%;
  color: #13287d;
  background: #ffffff;
  font-weight: bold;
  box-shadow: 0 10px 30px 0 #e7eaf2;
}
.cid-sC0vr0oXqD .carousel-controls a:hover span {
  opacity: 1;
}
.cid-sC0vr0oXqD .card {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 40px 40px 30px;
  position: relative;
}
.cid-sC0vr0oXqD .card .client-content {
  display: block;
}
.cid-sC0vr0oXqD .card .client-content .service-icon {
  text-align: left;
  position: relative;
  display: block;
}
.cid-sC0vr0oXqD .card .client-content .service-icon .front {
  color: #e3e5e6;
  font-size: 3.1875rem;
  position: relative;
  margin-bottom: 22px;
}
.cid-sC0vr0oXqD .card .client-content .service-icon:after {
  opacity: 0.5;
  width: 76px;
  height: 76px;
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  margin-left: -13%;
  border-radius: 50%;
  z-index: 0;
}
.cid-sC0vr0oXqD .card .client-content .card-text {
  margin-bottom: 25px;
  color: #e96188;
}
.cid-sC0vr0oXqD .card .client-info {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 30px;
}
.cid-sC0vr0oXqD .card .client-info::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -40px;
  right: -40px;
  height: 1px;
  background-color: #dcdfe2;
}
.cid-sC0vr0oXqD .card .client-info .client-image {
  margin-right: 20px;
  flex: none;
  display: block;
}
.cid-sC0vr0oXqD .card .client-info .client-image img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
  display: block;
  max-width: 100%;
}
.cid-sC0vr0oXqD .card .client-info .name-job .signature {
  margin-bottom: 0;
  color: #66458e;
}
.cid-sC0vr0oXqD .card .client-info .name-job .profession {
  color: #e96188;
}
@media (min-width: 768px) {
  .cid-sC0vr0oXqD .carousel-controls a {
    width: 5%;
  }
  .cid-sC0vr0oXqD .client-info {
    flex-direction: column;
    justify-content: center;
  }
  .cid-sC0vr0oXqD .client-info .client-image {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .cid-sC0vr0oXqD * {
    text-align: center;
  }
}
.cid-sC0ws79YFX {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sC0ws79YFX h3 {
  text-align: center;
}
.cid-sC0ws79YFX .mbr-section-subtitle {
  font-weight: 300;
}
.cid-sC0ws79YFX .card {
  word-wrap: break-word;
}
.cid-sC0ws79YFX .card:after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin: 0 auto;
  background-color: #66458e;
}
.cid-sC0ws79YFX .mbr-iconfont {
  font-size: 5rem;
  color: #66458e;
}
.cid-sC13yvBkQP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000814;
}
.cid-sC13yvBkQP .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-sC13yvBkQP .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0;
}
.cid-sC13yvBkQP .item p {
  margin: 0;
  padding-left: 0.5rem;
}
.cid-sC13yvBkQP .title {
  background: linear-gradient(to left, #ca4336, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1464e6;
  text-align: center;
}
.cid-sC13yvBkQP .container {
  max-width: 1400px;
}
.cid-sC13yvBkQP li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sC13yvBkQP .time {
  line-height: 2;
}
.cid-sC13yvBkQP .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sC13yvBkQP .text-wrap {
  width: 100%;
}
.cid-sC13yvBkQP .item-wrap {
  display: inline-block;
}
.cid-sC13yvBkQP .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-sC13yvBkQP .socicon-wrap .mbr-iconfont {
  font-size: 1.3rem;
  background: linear-gradient(to left, #ca4336, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  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-sC13yvBkQP .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-sC13yvBkQP .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sC13yvBkQP .socicon-wrap {
    margin: auto;
  }
}
.cid-sC13yvBkQP .mbr-text {
  color: #999999;
}
.cid-sC13yvBkQP .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-sC13yvBkQP .icon-title,
.cid-sC13yvBkQP .align-wrap {
  color: #ffffff;
  width: 100%;
  text-align: center;
}
.cid-sC13yvBkQP .item-text,
.cid-sC13yvBkQP .item-icon {
  color: #ffffff;
}
.cid-sC13yvBkQP .mbr-text,
.cid-sC13yvBkQP .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sC19mpPNpx {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-sC19mpPNpx .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sC19mpPNpx .form-control,
.cid-sC19mpPNpx .field-input {
  padding: 2rem 1rem;
  min-height: auto;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sC19mpPNpx .form-control::-webkit-input-placeholder,
.cid-sC19mpPNpx .field-input::-webkit-input-placeholder,
.cid-sC19mpPNpx .form-control::-webkit-input-placeholder,
.cid-sC19mpPNpx .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sC19mpPNpx .form-control:-moz-placeholder,
.cid-sC19mpPNpx .field-input:-moz-placeholder,
.cid-sC19mpPNpx .form-control:-moz-placeholder,
.cid-sC19mpPNpx .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sC19mpPNpx .form-control:hover,
.cid-sC19mpPNpx .field-input:hover,
.cid-sC19mpPNpx .form-control:focus,
.cid-sC19mpPNpx .field-input:focus {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sC19mpPNpx .form-control:hover::-webkit-input-placeholder,
.cid-sC19mpPNpx .field-input:hover::-webkit-input-placeholder,
.cid-sC19mpPNpx .form-control:focus::-webkit-input-placeholder,
.cid-sC19mpPNpx .field-input:focus::-webkit-input-placeholder,
.cid-sC19mpPNpx .form-control:hover::-webkit-input-placeholder,
.cid-sC19mpPNpx .field-input:hover::-webkit-input-placeholder,
.cid-sC19mpPNpx .form-control:focus::-webkit-input-placeholder,
.cid-sC19mpPNpx .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sC19mpPNpx .form-control:hover:-moz-placeholder,
.cid-sC19mpPNpx .field-input:hover:-moz-placeholder,
.cid-sC19mpPNpx .form-control:focus:-moz-placeholder,
.cid-sC19mpPNpx .field-input:focus:-moz-placeholder,
.cid-sC19mpPNpx .form-control:hover:-moz-placeholder,
.cid-sC19mpPNpx .field-input:hover:-moz-placeholder,
.cid-sC19mpPNpx .form-control:focus:-moz-placeholder,
.cid-sC19mpPNpx .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sC19mpPNpx textarea {
  padding-top: 1rem!important;
}
.cid-sC19mpPNpx .jq-number__spin:hover,
.cid-sC19mpPNpx .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sC19mpPNpx .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sC19mpPNpx .jq-selectbox li,
.cid-sC19mpPNpx .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sC19mpPNpx .jq-selectbox li:hover,
.cid-sC19mpPNpx .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sC19mpPNpx .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sC19mpPNpx .jq-number__spin.minus:hover:after,
.cid-sC19mpPNpx .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sC19mpPNpx .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sC19mpPNpx .jq-number__spin.minus:after,
.cid-sC19mpPNpx .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sC19mpPNpx input::-webkit-clear-button {
  display: none;
}
.cid-sC19mpPNpx input::-webkit-inner-spin-button {
  display: none;
}
.cid-sC19mpPNpx input::-webkit-outer-spin-button {
  display: none;
}
.cid-sC19mpPNpx input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sC19mpPNpx H5 {
  text-align: center;
}
.cid-sC18HNmK68 .nav-item:focus,
.cid-sC18HNmK68 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sC18HNmK68 .nav-item {
    position: relative;
  }
}
.cid-sC18HNmK68 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: #000000;
}
.cid-sC18HNmK68 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #000000;
}
.cid-sC18HNmK68 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sC18HNmK68 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sC18HNmK68 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sC18HNmK68 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sC18HNmK68 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sC18HNmK68 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC18HNmK68 .navbar.collapsed .navbar-collapse.show,
.cid-sC18HNmK68 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sC18HNmK68 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sC18HNmK68 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sC18HNmK68 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sC18HNmK68 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sC18HNmK68 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sC18HNmK68 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sC18HNmK68 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sC18HNmK68 .navbar.collapsed .right-menu,
.cid-sC18HNmK68 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sC18HNmK68 .navbar .navbar-collapse.show,
  .cid-sC18HNmK68 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sC18HNmK68 .navbar .navbar-collapse.show .brand-container,
  .cid-sC18HNmK68 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sC18HNmK68 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sC18HNmK68 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sC18HNmK68 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sC18HNmK68 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sC18HNmK68 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sC18HNmK68 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sC18HNmK68 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sC18HNmK68 .navbar .right-menu,
  .cid-sC18HNmK68 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sC18HNmK68 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sC18HNmK68 .navbar.navbar-short .mbr-overlay {
  background: #000000 !important;
}
.cid-sC18HNmK68 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sC18HNmK68 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sC18HNmK68 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sC18HNmK68 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sC18HNmK68 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sC18HNmK68 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sC18HNmK68 .dropdown-item.active,
.cid-sC18HNmK68 .dropdown-item:active {
  background-color: transparent;
}
.cid-sC18HNmK68 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sC18HNmK68 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sC18HNmK68 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sC18HNmK68 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sC18HNmK68 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sC18HNmK68 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sC18HNmK68 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sC18HNmK68 .navbar-buttons {
  margin-left: auto;
}
.cid-sC18HNmK68 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-sC18HNmK68 button.navbar-toggler:hover {
  outline: none;
}
.cid-sC18HNmK68 button.navbar-toggler:active {
  outline: none;
}
.cid-sC18HNmK68 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sC18HNmK68 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sC18HNmK68 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sC18HNmK68 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sC18HNmK68 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sC18HNmK68 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sC18HNmK68 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sC18HNmK68 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sC18HNmK68 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sC18HNmK68 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sC18HNmK68 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sC18HNmK68 .right-menu,
.cid-sC18HNmK68 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sC18HNmK68 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC18HNmK68 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC18HNmK68 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sC18HNmK68 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sC18HNmK68 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sC18HNmK68 .card-wrapper {
  z-index: 3;
}
.cid-sC18HNmK68 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sC18HNmK68 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sC18HNmK68 .nav-item:not(:last-child) {
  margin-right: 32px !important;
}
.cid-sC18HNmK68 .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-sC18HNmK68 .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-sC18HNmK68 .nav-link {
  position: relative;
  padding: 0;
  display: inline-block;
}
.cid-sC18HNmK68 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
.cid-sC18HNmK68 .nav-link:hover .line-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-sC18HNmK68 .link {
  padding: 0;
  margin: 0;
}
.cid-sC18HNmK68 .dropdown-menu {
  margin-top: 0px;
}
.cid-sC18HNmK68 .navbar-caption {
  color: #ffffff;
}
.cid-sC18HNmK68 .navbar-caption:hover {
  color: #ffffff;
}
.cid-sC18HNmK68 .dropdown-item:hover {
  color: #66458e !important;
}
.cid-sC18HNmK68 .dropdown-toggle:after {
  display: none;
}
.cid-sC18HNmK68 a:hover .line-animation {
  opacity: 1;
}
.cid-sC18HNmK68 .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-sC18HNmK68 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sC18HNmK68 .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-sC18HVcCfk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sC18HVcCfk h3 {
  text-align: center;
}
.cid-sC18HVcCfk .mbr-section-subtitle {
  font-weight: 300;
}
.cid-sC18HVcCfk .card {
  word-wrap: break-word;
}
.cid-sC18HVcCfk .card:after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin: 0 auto;
  background-color: #66458e;
}
.cid-sC18HVcCfk .mbr-iconfont {
  font-size: 5rem;
  color: #66458e;
}
.cid-sC18HWerRn {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000814;
}
.cid-sC18HWerRn .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-sC18HWerRn .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0;
}
.cid-sC18HWerRn .item p {
  margin: 0;
  padding-left: 0.5rem;
}
.cid-sC18HWerRn .title {
  background: linear-gradient(to left, #ca4336, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1464e6;
  text-align: center;
}
.cid-sC18HWerRn .container {
  max-width: 1400px;
}
.cid-sC18HWerRn li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sC18HWerRn .time {
  line-height: 2;
}
.cid-sC18HWerRn .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sC18HWerRn .text-wrap {
  width: 100%;
}
.cid-sC18HWerRn .item-wrap {
  display: inline-block;
}
.cid-sC18HWerRn .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-sC18HWerRn .socicon-wrap .mbr-iconfont {
  font-size: 1.3rem;
  background: linear-gradient(to left, #ca4336, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  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-sC18HWerRn .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-sC18HWerRn .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sC18HWerRn .socicon-wrap {
    margin: auto;
  }
}
.cid-sC18HWerRn .mbr-text {
  color: #999999;
}
.cid-sC18HWerRn .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-sC18HWerRn .icon-title,
.cid-sC18HWerRn .align-wrap {
  color: #ffffff;
  width: 100%;
  text-align: center;
}
.cid-sC18HWerRn .item-text,
.cid-sC18HWerRn .item-icon {
  color: #ffffff;
}
.cid-sC18HWerRn .mbr-text,
.cid-sC18HWerRn .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sC1aoqrNDP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sC1aoqrNDP img {
  border-radius: 0px;
}
.cid-sC1aoqrNDP .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sC1aoqrNDP .date {
  text-transform: uppercase;
  color: #66458e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sC1aoqrNDP .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sC1aoqrNDP .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sC1aoqrNDP .right {
  display: flex;
  flex-direction: column;
}
.cid-sC1aoqrNDP .mbr-section-btn {
  border: 2px solid #66458e;
  width: auto;
}
.cid-sC1aoqrNDP .mbr-section-btn:hover {
  background-color: #66458e;
  border: 2px solid #66458e;
}
.cid-sC1aoqrNDP .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sC1aoqrNDP .mbr-text {
  padding-top: 10px;
}
.cid-sC1a2N2yUu .nav-item:focus,
.cid-sC1a2N2yUu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sC1a2N2yUu .nav-item {
    position: relative;
  }
}
.cid-sC1a2N2yUu .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: #000000;
}
.cid-sC1a2N2yUu .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #000000;
}
.cid-sC1a2N2yUu .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sC1a2N2yUu .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sC1a2N2yUu .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sC1a2N2yUu .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sC1a2N2yUu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sC1a2N2yUu .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC1a2N2yUu .navbar.collapsed .navbar-collapse.show,
.cid-sC1a2N2yUu .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sC1a2N2yUu .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sC1a2N2yUu .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sC1a2N2yUu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sC1a2N2yUu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sC1a2N2yUu .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sC1a2N2yUu .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sC1a2N2yUu .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sC1a2N2yUu .navbar.collapsed .right-menu,
.cid-sC1a2N2yUu .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sC1a2N2yUu .navbar .navbar-collapse.show,
  .cid-sC1a2N2yUu .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sC1a2N2yUu .navbar .navbar-collapse.show .brand-container,
  .cid-sC1a2N2yUu .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sC1a2N2yUu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sC1a2N2yUu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sC1a2N2yUu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sC1a2N2yUu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sC1a2N2yUu .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sC1a2N2yUu .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sC1a2N2yUu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sC1a2N2yUu .navbar .right-menu,
  .cid-sC1a2N2yUu .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sC1a2N2yUu .navbar.navbar-short {
  min-height: 60px;
}
.cid-sC1a2N2yUu .navbar.navbar-short .mbr-overlay {
  background: #000000 !important;
}
.cid-sC1a2N2yUu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sC1a2N2yUu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sC1a2N2yUu .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sC1a2N2yUu .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sC1a2N2yUu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sC1a2N2yUu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sC1a2N2yUu .dropdown-item.active,
.cid-sC1a2N2yUu .dropdown-item:active {
  background-color: transparent;
}
.cid-sC1a2N2yUu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sC1a2N2yUu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sC1a2N2yUu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sC1a2N2yUu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sC1a2N2yUu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sC1a2N2yUu ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sC1a2N2yUu ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sC1a2N2yUu .navbar-buttons {
  margin-left: auto;
}
.cid-sC1a2N2yUu button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-sC1a2N2yUu button.navbar-toggler:hover {
  outline: none;
}
.cid-sC1a2N2yUu button.navbar-toggler:active {
  outline: none;
}
.cid-sC1a2N2yUu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sC1a2N2yUu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sC1a2N2yUu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sC1a2N2yUu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sC1a2N2yUu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sC1a2N2yUu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sC1a2N2yUu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sC1a2N2yUu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sC1a2N2yUu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sC1a2N2yUu a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sC1a2N2yUu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sC1a2N2yUu .right-menu,
.cid-sC1a2N2yUu .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sC1a2N2yUu .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC1a2N2yUu .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC1a2N2yUu .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sC1a2N2yUu .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sC1a2N2yUu .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sC1a2N2yUu .card-wrapper {
  z-index: 3;
}
.cid-sC1a2N2yUu .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sC1a2N2yUu .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sC1a2N2yUu .nav-item:not(:last-child) {
  margin-right: 32px !important;
}
.cid-sC1a2N2yUu .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-sC1a2N2yUu .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-sC1a2N2yUu .nav-link {
  position: relative;
  padding: 0;
  display: inline-block;
}
.cid-sC1a2N2yUu .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
.cid-sC1a2N2yUu .nav-link:hover .line-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-sC1a2N2yUu .link {
  padding: 0;
  margin: 0;
}
.cid-sC1a2N2yUu .dropdown-menu {
  margin-top: 0px;
}
.cid-sC1a2N2yUu .navbar-caption {
  color: #ffffff;
}
.cid-sC1a2N2yUu .navbar-caption:hover {
  color: #ffffff;
}
.cid-sC1a2N2yUu .dropdown-item:hover {
  color: #66458e !important;
}
.cid-sC1a2N2yUu .dropdown-toggle:after {
  display: none;
}
.cid-sC1a2N2yUu a:hover .line-animation {
  opacity: 1;
}
.cid-sC1a2N2yUu .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-sC1a2N2yUu .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sC1a2N2yUu .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-sC1a2O0xi4 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sC1a2O0xi4 h3 {
  text-align: center;
}
.cid-sC1a2O0xi4 .mbr-section-subtitle {
  font-weight: 300;
}
.cid-sC1a2O0xi4 .card {
  word-wrap: break-word;
}
.cid-sC1a2O0xi4 .card:after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin: 0 auto;
  background-color: #66458e;
}
.cid-sC1a2O0xi4 .mbr-iconfont {
  font-size: 5rem;
  color: #66458e;
}
.cid-sC1a2P1i22 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000814;
}
.cid-sC1a2P1i22 .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-sC1a2P1i22 .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0;
}
.cid-sC1a2P1i22 .item p {
  margin: 0;
  padding-left: 0.5rem;
}
.cid-sC1a2P1i22 .title {
  background: linear-gradient(to left, #ca4336, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1464e6;
  text-align: center;
}
.cid-sC1a2P1i22 .container {
  max-width: 1400px;
}
.cid-sC1a2P1i22 li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sC1a2P1i22 .time {
  line-height: 2;
}
.cid-sC1a2P1i22 .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sC1a2P1i22 .text-wrap {
  width: 100%;
}
.cid-sC1a2P1i22 .item-wrap {
  display: inline-block;
}
.cid-sC1a2P1i22 .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-sC1a2P1i22 .socicon-wrap .mbr-iconfont {
  font-size: 1.3rem;
  background: linear-gradient(to left, #ca4336, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  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-sC1a2P1i22 .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-sC1a2P1i22 .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sC1a2P1i22 .socicon-wrap {
    margin: auto;
  }
}
.cid-sC1a2P1i22 .mbr-text {
  color: #999999;
}
.cid-sC1a2P1i22 .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-sC1a2P1i22 .icon-title,
.cid-sC1a2P1i22 .align-wrap {
  color: #ffffff;
  width: 100%;
  text-align: center;
}
.cid-sC1a2P1i22 .item-text,
.cid-sC1a2P1i22 .item-icon {
  color: #ffffff;
}
.cid-sC1a2P1i22 .mbr-text,
.cid-sC1a2P1i22 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sC1aWDHb8j {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sC1aWDHb8j img {
  border-radius: 0px;
}
.cid-sC1aWDHb8j .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-sC1aWDHb8j .date {
  text-transform: uppercase;
  color: #66458e;
  text-align: left;
  padding-top: 1rem;
}
.cid-sC1aWDHb8j .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-sC1aWDHb8j .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sC1aWDHb8j .right {
  display: flex;
  flex-direction: column;
}
.cid-sC1aWDHb8j .mbr-section-btn {
  border: 2px solid #66458e;
  width: auto;
}
.cid-sC1aWDHb8j .mbr-section-btn:hover {
  background-color: #66458e;
  border: 2px solid #66458e;
}
.cid-sC1aWDHb8j .card-heading {
  padding-top: 0;
  text-align: center;
}
.cid-sC1aWDHb8j .mbr-text {
  padding-top: 10px;
}
.cid-sC1aWENxJw .nav-item:focus,
.cid-sC1aWENxJw .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sC1aWENxJw .nav-item {
    position: relative;
  }
}
.cid-sC1aWENxJw .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: #000000;
}
.cid-sC1aWENxJw .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #000000;
}
.cid-sC1aWENxJw .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sC1aWENxJw .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sC1aWENxJw .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sC1aWENxJw .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sC1aWENxJw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sC1aWENxJw .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC1aWENxJw .navbar.collapsed .navbar-collapse.show,
.cid-sC1aWENxJw .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sC1aWENxJw .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sC1aWENxJw .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sC1aWENxJw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sC1aWENxJw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sC1aWENxJw .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sC1aWENxJw .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sC1aWENxJw .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sC1aWENxJw .navbar.collapsed .right-menu,
.cid-sC1aWENxJw .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sC1aWENxJw .navbar .navbar-collapse.show,
  .cid-sC1aWENxJw .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sC1aWENxJw .navbar .navbar-collapse.show .brand-container,
  .cid-sC1aWENxJw .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sC1aWENxJw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sC1aWENxJw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sC1aWENxJw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sC1aWENxJw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sC1aWENxJw .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sC1aWENxJw .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sC1aWENxJw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sC1aWENxJw .navbar .right-menu,
  .cid-sC1aWENxJw .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sC1aWENxJw .navbar.navbar-short {
  min-height: 60px;
}
.cid-sC1aWENxJw .navbar.navbar-short .mbr-overlay {
  background: #000000 !important;
}
.cid-sC1aWENxJw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sC1aWENxJw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sC1aWENxJw .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sC1aWENxJw .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sC1aWENxJw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sC1aWENxJw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sC1aWENxJw .dropdown-item.active,
.cid-sC1aWENxJw .dropdown-item:active {
  background-color: transparent;
}
.cid-sC1aWENxJw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sC1aWENxJw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sC1aWENxJw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sC1aWENxJw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sC1aWENxJw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sC1aWENxJw ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sC1aWENxJw ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sC1aWENxJw .navbar-buttons {
  margin-left: auto;
}
.cid-sC1aWENxJw button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-sC1aWENxJw button.navbar-toggler:hover {
  outline: none;
}
.cid-sC1aWENxJw button.navbar-toggler:active {
  outline: none;
}
.cid-sC1aWENxJw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sC1aWENxJw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sC1aWENxJw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sC1aWENxJw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sC1aWENxJw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sC1aWENxJw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sC1aWENxJw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sC1aWENxJw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sC1aWENxJw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sC1aWENxJw a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sC1aWENxJw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sC1aWENxJw .right-menu,
.cid-sC1aWENxJw .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sC1aWENxJw .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC1aWENxJw .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sC1aWENxJw .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sC1aWENxJw .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sC1aWENxJw .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sC1aWENxJw .card-wrapper {
  z-index: 3;
}
.cid-sC1aWENxJw .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sC1aWENxJw .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sC1aWENxJw .nav-item:not(:last-child) {
  margin-right: 32px !important;
}
.cid-sC1aWENxJw .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-sC1aWENxJw .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-sC1aWENxJw .nav-link {
  position: relative;
  padding: 0;
  display: inline-block;
}
.cid-sC1aWENxJw .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
.cid-sC1aWENxJw .nav-link:hover .line-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-sC1aWENxJw .link {
  padding: 0;
  margin: 0;
}
.cid-sC1aWENxJw .dropdown-menu {
  margin-top: 0px;
}
.cid-sC1aWENxJw .navbar-caption {
  color: #ffffff;
}
.cid-sC1aWENxJw .navbar-caption:hover {
  color: #ffffff;
}
.cid-sC1aWENxJw .dropdown-item:hover {
  color: #66458e !important;
}
.cid-sC1aWENxJw .dropdown-toggle:after {
  display: none;
}
.cid-sC1aWENxJw a:hover .line-animation {
  opacity: 1;
}
.cid-sC1aWENxJw .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-sC1aWENxJw .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sC1aWENxJw .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-sC1aWFSRY1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sC1aWFSRY1 h3 {
  text-align: center;
}
.cid-sC1aWFSRY1 .mbr-section-subtitle {
  font-weight: 300;
}
.cid-sC1aWFSRY1 .card {
  word-wrap: break-word;
}
.cid-sC1aWFSRY1 .card:after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin: 0 auto;
  background-color: #66458e;
}
.cid-sC1aWFSRY1 .mbr-iconfont {
  font-size: 5rem;
  color: #66458e;
}
.cid-sC1aWGXaaN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000814;
}
.cid-sC1aWGXaaN .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-sC1aWGXaaN .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0;
}
.cid-sC1aWGXaaN .item p {
  margin: 0;
  padding-left: 0.5rem;
}
.cid-sC1aWGXaaN .title {
  background: linear-gradient(to left, #ca4336, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1464e6;
  text-align: center;
}
.cid-sC1aWGXaaN .container {
  max-width: 1400px;
}
.cid-sC1aWGXaaN li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sC1aWGXaaN .time {
  line-height: 2;
}
.cid-sC1aWGXaaN .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sC1aWGXaaN .text-wrap {
  width: 100%;
}
.cid-sC1aWGXaaN .item-wrap {
  display: inline-block;
}
.cid-sC1aWGXaaN .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-sC1aWGXaaN .socicon-wrap .mbr-iconfont {
  font-size: 1.3rem;
  background: linear-gradient(to left, #ca4336, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  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-sC1aWGXaaN .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-sC1aWGXaaN .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sC1aWGXaaN .socicon-wrap {
    margin: auto;
  }
}
.cid-sC1aWGXaaN .mbr-text {
  color: #999999;
}
.cid-sC1aWGXaaN .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-sC1aWGXaaN .icon-title,
.cid-sC1aWGXaaN .align-wrap {
  color: #ffffff;
  width: 100%;
  text-align: center;
}
.cid-sC1aWGXaaN .item-text,
.cid-sC1aWGXaaN .item-icon {
  color: #ffffff;
}
.cid-sC1aWGXaaN .mbr-text,
.cid-sC1aWGXaaN .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
