body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2.2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.75rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- 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: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.6rem;
    font-size: calc( 0.9125rem + (0.75 - 0.9125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9125rem + (0.75 - 0.9125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #e83e8c !important;
}
.bg-success {
  background-color: #e83e8c !important;
}
.bg-info {
  background-color: #179eda !important;
}
.bg-warning {
  background-color: #179eda !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e83e8c !important;
  border-color: #e83e8c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #c21766 !important;
  border-color: #c21766 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c21766 !important;
  border-color: #c21766 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #179eda !important;
  border-color: #179eda !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #106c95 !important;
  border-color: #106c95 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #106c95 !important;
  border-color: #106c95 !important;
}
.btn-info,
.btn-info:active {
  background-color: #179eda !important;
  border-color: #179eda !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #106c95 !important;
  border-color: #106c95 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #106c95 !important;
  border-color: #106c95 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e83e8c !important;
  border-color: #e83e8c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #c21766 !important;
  border-color: #c21766 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c21766 !important;
  border-color: #c21766 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #179eda !important;
  border-color: #179eda !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #106c95 !important;
  border-color: #106c95 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #106c95 !important;
  border-color: #106c95 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white {
  color: #333333 !important;
}
.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: #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-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  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-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #ac145a;
  color: #ac145a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #e83e8c;
  border-color: #e83e8c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e83e8c !important;
  border-color: #e83e8c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #0d5b7e;
  color: #0d5b7e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #179eda;
  border-color: #179eda;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #179eda !important;
  border-color: #179eda !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #0d5b7e;
  color: #0d5b7e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #179eda;
  border-color: #179eda;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #179eda !important;
  border-color: #179eda !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #ac145a;
  color: #ac145a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #e83e8c;
  border-color: #e83e8c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #e83e8c !important;
  border-color: #e83e8c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #0d5b7e;
  color: #0d5b7e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #179eda;
  border-color: #179eda;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #179eda !important;
  border-color: #179eda !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  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;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #e83e8c !important;
}
.text-secondary {
  color: #179eda !important;
}
.text-success {
  color: #e83e8c !important;
}
.text-info {
  color: #179eda !important;
}
.text-warning {
  color: #179eda !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ac145a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0d5b7e !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ac145a !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #0d5b7e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #0d5b7e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !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: #70c770;
}
.alert-info {
  background-color: #179eda;
}
.alert-warning {
  background-color: #179eda;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.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);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e83e8c;
  border-color: #e83e8c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e83e8c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef4f9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fef4f9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c4e9f9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c4e9f9;
}
.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: 'IBM Plex Sans', sans-serif;
  font-size: 0.75rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.2rem;
  font-weight: 400;
}
blockquote {
  border-color: #e83e8c;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 6px 16px 0 #e83e8c !important;
  -webkit-box-shadow: 0 6px 16px 0 #e83e8c !important;
  background-color: #e83e8c !important;
  border-color: #e83e8c !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #179eda !important;
  -webkit-box-shadow: 0 6px 16px 0 #179eda !important;
  background-color: #179eda !important;
  border-color: #179eda !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #e83e8c !important;
  -webkit-box-shadow: 0 6px 16px 0 #e83e8c !important;
  background-color: #e83e8c !important;
  border-color: #e83e8c !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e83e8c;
  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-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e83e8c;
  border-bottom-color: #e83e8c;
}
.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: #e83e8c !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: #179eda !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='%23e83e8c' %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-rD9VukkgFg .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-rD9VukkgFg .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rD9VukkgFg .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-rD9VukkgFg .nav-item:focus,
.cid-rD9VukkgFg .nav-link:focus {
  outline: none;
}
.cid-rD9VukkgFg .text-white:hover,
.cid-rD9VukkgFg .text-white:active,
.cid-rD9VukkgFg .text-white:focus {
  color: white!important;
}
.cid-rD9VukkgFg .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rD9VukkgFg .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-rD9VukkgFg .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rD9VukkgFg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rD9VukkgFg .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-rD9VukkgFg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rD9VukkgFg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rD9VukkgFg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rD9VukkgFg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rD9VukkgFg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rD9VukkgFg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rD9VukkgFg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rD9VukkgFg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rD9VukkgFg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-rD9VukkgFg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rD9VukkgFg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rD9VukkgFg .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rD9VukkgFg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rD9VukkgFg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rD9VukkgFg .section {
  position: relative;
  overflow: visible!important;
}
.cid-rD9VukkgFg .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-rD9VukkgFg .dropdown-item:hover {
  color: black!important;
}
.cid-rD9VukkgFg .dropdown-menu {
  background-color: white!important;
}
.cid-rD9VukkgFg .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-rD9VukkgFg .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rD9VukkgFg .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-rD9VukkgFg .nav-item .nav-link {
    position: relative;
  }
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rD9VukkgFg .collapsed {
  flex-direction: row!important;
}
.cid-rD9VukkgFg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rD9VukkgFg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rD9VukkgFg .navbar-caption {
  font-weight: 600!important;
}
.cid-rD9VukkgFg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rD9VukkgFg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rD9VukkgFg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rD9VukkgFg .dropdown-item.active,
.cid-rD9VukkgFg .dropdown-item:active {
  background-color: transparent;
}
.cid-rD9VukkgFg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rD9VukkgFg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rD9VukkgFg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rD9VukkgFg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rD9VukkgFg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rD9VukkgFg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rD9VukkgFg .navbar-buttons {
  text-align: center;
}
.cid-rD9VukkgFg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rD9VukkgFg .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rD9VukkgFg .nav-link {
  font-weight: 600!important;
}
.cid-rD9VukkgFg a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rD9VukkgFg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rD9VukkgFg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rD9VukkgFg .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rD9VukkgFg .navbar {
    height: 77px;
  }
  .cid-rD9VukkgFg .navbar.opened {
    height: auto;
  }
  .cid-rD9VukkgFg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t65ntGHxib {
  padding-top: 165px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t65ntGHxib section {
  position: relative;
}
.cid-t65ntGHxib svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-t65ntGHxib H1 {
  color: #232323;
}
.cid-t65ntGHxib .mbr-text,
.cid-t65ntGHxib .mbr-section-btn {
  color: #232323;
}
.cid-t65ntGHxib #e1_ellipse {
  fill: #f9ecf8 !important;
}
.cid-t65ntGHxib img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
}
@media (max-width: 576px) {
  .cid-t65ntGHxib img {
    width: 100%;
  }
}
.cid-t65ntGHxib p {
  text-align: justify;
}
.cid-t65ntGHxib H3 {
  color: #232323;
}
.cid-tfk8Qub8KF {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tfk8Qub8KF H1 {
  color: #232323;
  text-align: center;
}
.cid-tfk8Qub8KF .mbr-text,
.cid-tfk8Qub8KF .mbr-section-btn {
  color: #716c80;
}
.cid-tfk8Qub8KF H3 {
  color: #716c80;
}
.cid-tfk2p5L5Oo {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #f9ecf8;
  position: relative;
  overflow: hidden;
}
.cid-tfk2p5L5Oo .container {
  max-width: 1400px;
}
.cid-tfk2p5L5Oo svg {
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(-1.9, 1.3);
}
.cid-tfk2p5L5Oo #e1_ellipse {
  fill: #ffffff !important;
}
.cid-tfk2p5L5Oo .mbr-text {
  color: #000000;
}
.cid-tfk2p5L5Oo .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-tfk2p5L5Oo .card-img .img1 {
  background-color: #e83e8c;
}
.cid-tfk2p5L5Oo .card-img .img2 {
  background-color: #e83e8c;
}
.cid-tfk2p5L5Oo .card-img .img3 {
  background-color: #e83e8c;
}
.cid-tfk2p5L5Oo .card-img .img4 {
  background-color: #e62e3c;
}
.cid-tfk2p5L5Oo .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-tfk2p5L5Oo .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-tfk2p5L5Oo .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
  background-color: #ffffff;
}
.cid-tfk2p5L5Oo .card-title,
.cid-tfk2p5L5Oo .card-img {
  color: #57468b;
}
.cid-tfk2p5L5Oo img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-tfk2p5L5Oo img {
    margin-bottom: 3rem;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-tfk2p5L5Oo .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem!important;
  }
  .cid-tfk2p5L5Oo .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-tfk2p5L5Oo .card:hover {
    box-shadow: none;
    transform: none;
    background-color: transparent;
  }
  .cid-tfk2p5L5Oo .card-img span {
    margin-right: 0rem;
  }
  .cid-tfk2p5L5Oo svg {
    top: -9rem;
  }
}
.cid-tfk2p5L5Oo .card-img {
  width: auto;
}
.cid-tfk2p5L5Oo .card-title {
  color: #232323;
}
.cid-rDbbidf6qp {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ecf8;
}
.cid-rDbbidf6qp H1 {
  color: #232323;
}
.cid-rDbbidf6qp .mbr-text,
.cid-rDbbidf6qp .mbr-section-btn {
  color: #716c80;
}
.cid-rDbbidf6qp H3 {
  color: #716c80;
}
.cid-tyzqNVrLdY {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #f9ecf8;
}
.cid-tyzqNVrLdY .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-tyzqNVrLdY .mbr-section-title {
  margin: 0;
}
.cid-tyzqNVrLdY .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tyzqNVrLdY .card-img {
  text-align: inherit;
}
.cid-tyzqNVrLdY .card-img span {
  background: linear-gradient(90deg, #2bdc9d, #1dc9cb);
}
.cid-tyzqNVrLdY .mbr-text {
  color: #000000;
}
.cid-tyzqNVrLdY .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-tyzqNVrLdY .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-tyzqNVrLdY .mbr-card-title {
  text-align: left;
}
.cid-tyzrYvZP8N {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tyzrYvZP8N H1 {
  color: #232323;
}
.cid-tyzrYvZP8N .mbr-text,
.cid-tyzrYvZP8N .mbr-section-btn {
  color: #716c80;
}
.cid-tyzrYvZP8N H3 {
  color: #716c80;
}
.cid-tyAxfIkHXe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tyAxfIkHXe .mbr-text {
  color: #000000;
}
.cid-tyAxfIkHXe .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-tyAxfIkHXe .card-img .img1 {
  background-color: #e83e8c;
}
.cid-tyAxfIkHXe .card-img .img2 {
  background-color: #e83e8c;
}
.cid-tyAxfIkHXe .card-img .img3 {
  background-color: #e83e8c;
}
.cid-tyAxfIkHXe .card-img .img4 {
  background-color: #ff8a73;
}
.cid-tyAxfIkHXe .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-tyAxfIkHXe .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-tyAxfIkHXe .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-tyAxfIkHXe .card-title,
.cid-tyAxfIkHXe .card-img {
  color: #57468b;
}
@media (max-width: 576px) {
  .cid-tyAxfIkHXe .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-tyAxfIkHXe .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-tyAxfIkHXe .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-tyAxfIkHXe .card-img span {
    margin-right: 0rem;
  }
}
.cid-tyAxfIkHXe .card-img {
  width: auto;
}
.cid-tyAxfIkHXe .card-title {
  color: #000000;
}
.cid-teLLDIdT51 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ecf8;
}
.cid-teLLDIdT51 H1 {
  color: #232323;
}
.cid-teLLDIdT51 .mbr-text,
.cid-teLLDIdT51 .mbr-section-btn {
  color: #716c80;
}
.cid-teLLDIdT51 H3 {
  color: #716c80;
}
.cid-tyzvRj9U1D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9ecf8;
}
.cid-tyzvRj9U1D .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-tyzvRj9U1D .mbr-section-title {
  margin: 0;
}
.cid-tyzvRj9U1D .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tyzvRj9U1D .card-img span {
  color: #e62e3c;
}
.cid-tyzvRj9U1D .row-item {
  margin-bottom: 2rem;
}
.cid-tyzvRj9U1D .row-item:hover .wrapper {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-tyzvRj9U1D .row-item:hover .card-img span {
  color: #000000 !important;
}
.cid-tyzvRj9U1D .row-item:hover .mbr-card-title {
  color: #000000 !important;
}
.cid-tyzvRj9U1D .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tyzZ3dube9 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9ecf8;
}
.cid-tyzZ3dube9 .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-tyzZ3dube9 .mbr-section-title {
  margin: 0;
}
.cid-tyzZ3dube9 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tyzZ3dube9 .card-img span {
  color: #e62e3c;
}
.cid-tyzZ3dube9 .row-item {
  margin-bottom: 2rem;
}
.cid-tyzZ3dube9 .row-item:hover .wrapper {
  background: linear-gradient(90deg, #f9ecf8, #f9ecf8);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-tyzZ3dube9 .row-item:hover .card-img span {
  color: #000000 !important;
}
.cid-tyzZ3dube9 .row-item:hover .mbr-card-title {
  color: #000000 !important;
}
.cid-tyzZ3dube9 .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tyAsmsRrvt {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tyAsmsRrvt .mbr-text,
.cid-tyAsmsRrvt .mbr-section-btn {
  color: #e83e8c;
}
.cid-tyAsmsRrvt p {
  z-index: 2;
  position: relative;
}
.cid-tyAsmsRrvt .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tyAsmsRrvt .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  padding: 1rem 1.5rem;
}
.cid-tyAsmsRrvt .ico1 {
  font-size: 2rem;
}
.cid-tyAsmsRrvt .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-tyAsmsRrvt H3 {
  color: #57468b;
}
.cid-tyAsmsRrvt H4 {
  color: #716c80;
}
.cid-rDg9hWJle5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ecf8;
}
.cid-rDg9hWJle5 H1 {
  color: #000000;
  text-align: center;
}
.cid-rDg9hWJle5 .mbr-text,
.cid-rDg9hWJle5 .mbr-section-btn {
  color: #000000;
}
.cid-rDg9hWJle5 .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rDg9hWJle5 .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-rDg9hWJle5 .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-rDg9hWJle5 h3,
.cid-rDg9hWJle5 h4 {
  margin: 0;
  padding: 0;
}
.cid-rDg9hWJle5 H3 {
  color: #ffffff;
}
.cid-rDg9hWJle5 H4 {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-rDg9hWJle5 .author-box {
    justify-content: center;
  }
}
.cid-rDg9hWJle5 p {
  text-align: center !important;
}
.cid-tfkbM2PhtH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tfkbM2PhtH section {
  position: relative;
}
.cid-tfkbM2PhtH .container {
  max-width: 1400px;
}
.cid-tfkbM2PhtH .card-img2 span {
  padding-top: 6px;
}
.cid-tfkbM2PhtH .soc-item a {
  padding-top: 5px;
}
.cid-tfkbM2PhtH .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tfkbM2PhtH .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tfkbM2PhtH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tfkbM2PhtH .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tfkbM2PhtH .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-tfkbM2PhtH .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tfkbM2PhtH .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tfkbM2PhtH .soc-item span {
  font-size: 1.4rem;
}
.cid-tfkbM2PhtH .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tfkbM2PhtH .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tfkbM2PhtH .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tfkbM2PhtH .media-wrap {
  margin-bottom: 1rem;
}
.cid-tfkbM2PhtH .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tfkbM2PhtH img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tfkbM2PhtH .item {
    justify-content: center;
  }
  .cid-tfkbM2PhtH .quote::after {
    left: 60px;
  }
}
.cid-tfkbM2PhtH .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tfkbM2PhtH .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tfkbM2PhtH .text1 {
  color: #232323;
}
.cid-tfkbM2PhtH .item-title {
  color: #232323;
}
.cid-tfkbM2PhtH H5 {
  color: #232323;
}
.cid-tfkbM2PhtH .theme {
  color: #ffffff;
}
.cid-tfkbM2PhtH .copyright > p {
  color: #ff3366;
}
.cid-tfkbM2PhtH .text2 {
  color: #232323;
}
.cid-t4RpjMlbHC .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-t4RpjMlbHC .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t4RpjMlbHC .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-t4RpjMlbHC .nav-item:focus,
.cid-t4RpjMlbHC .nav-link:focus {
  outline: none;
}
.cid-t4RpjMlbHC .text-white:hover,
.cid-t4RpjMlbHC .text-white:active,
.cid-t4RpjMlbHC .text-white:focus {
  color: white!important;
}
.cid-t4RpjMlbHC .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4RpjMlbHC .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-t4RpjMlbHC .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4RpjMlbHC .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-t4RpjMlbHC .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t4RpjMlbHC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4RpjMlbHC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t4RpjMlbHC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4RpjMlbHC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4RpjMlbHC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4RpjMlbHC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4RpjMlbHC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4RpjMlbHC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t4RpjMlbHC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4RpjMlbHC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4RpjMlbHC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4RpjMlbHC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4RpjMlbHC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4RpjMlbHC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4RpjMlbHC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4RpjMlbHC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t4RpjMlbHC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4RpjMlbHC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t4RpjMlbHC .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-t4RpjMlbHC .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4RpjMlbHC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4RpjMlbHC .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4RpjMlbHC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t4RpjMlbHC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t4RpjMlbHC .section {
  position: relative;
  overflow: visible!important;
}
.cid-t4RpjMlbHC .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-t4RpjMlbHC .dropdown-item:hover {
  color: black!important;
}
.cid-t4RpjMlbHC .dropdown-menu {
  background-color: white!important;
}
.cid-t4RpjMlbHC .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-t4RpjMlbHC .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-t4RpjMlbHC .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-t4RpjMlbHC .nav-item .nav-link {
    position: relative;
  }
}
.cid-t4RpjMlbHC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t4RpjMlbHC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4RpjMlbHC .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-t4RpjMlbHC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t4RpjMlbHC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t4RpjMlbHC .collapsed {
  flex-direction: row!important;
}
.cid-t4RpjMlbHC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4RpjMlbHC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4RpjMlbHC .navbar-caption {
  font-weight: 600!important;
}
.cid-t4RpjMlbHC .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4RpjMlbHC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4RpjMlbHC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4RpjMlbHC .dropdown-item.active,
.cid-t4RpjMlbHC .dropdown-item:active {
  background-color: transparent;
}
.cid-t4RpjMlbHC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4RpjMlbHC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t4RpjMlbHC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4RpjMlbHC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4RpjMlbHC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4RpjMlbHC ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4RpjMlbHC .navbar-buttons {
  text-align: center;
}
.cid-t4RpjMlbHC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4RpjMlbHC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-t4RpjMlbHC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4RpjMlbHC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4RpjMlbHC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4RpjMlbHC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4RpjMlbHC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4RpjMlbHC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4RpjMlbHC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4RpjMlbHC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4RpjMlbHC .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t4RpjMlbHC .nav-link {
  font-weight: 600!important;
}
.cid-t4RpjMlbHC a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4RpjMlbHC .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t4RpjMlbHC .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t4RpjMlbHC .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4RpjMlbHC .navbar {
    height: 77px;
  }
  .cid-t4RpjMlbHC .navbar.opened {
    height: auto;
  }
  .cid-t4RpjMlbHC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyA932kVN6 {
  padding-top: 165px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tyA932kVN6 section {
  position: relative;
}
.cid-tyA932kVN6 svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-tyA932kVN6 H1 {
  color: #232323;
}
.cid-tyA932kVN6 .mbr-text,
.cid-tyA932kVN6 .mbr-section-btn {
  color: #232323;
}
.cid-tyA932kVN6 #e1_ellipse {
  fill: #f9ecf8 !important;
}
.cid-tyA932kVN6 img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
}
@media (max-width: 576px) {
  .cid-tyA932kVN6 img {
    width: 100%;
  }
}
.cid-tyA932kVN6 p {
  text-align: justify;
}
.cid-tyA932kVN6 H3 {
  color: #232323;
}
.cid-tfkfHl3OKi {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tfkfHl3OKi H1 {
  color: #232323;
}
.cid-tfkfHl3OKi .mbr-text,
.cid-tfkfHl3OKi .mbr-section-btn {
  color: #000000;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-tfkfHl3OKi img {
  width: 90%;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 100, 0.7) -10px 10px 35px 5px;
  animation: line 3s ease-in-out infinite;
}
@media (max-width: 992px) {
  .cid-tfkfHl3OKi img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-tfkfHl3OKi H3 {
  color: #716c80;
}
.cid-tyAaQmZHPv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9ecf8;
}
.cid-tyAaQmZHPv H1 {
  color: #000000;
}
.cid-tyAaQmZHPv .align-left {
  margin: auto;
}
.cid-tyAaQmZHPv .row {
  justify-content: space-between;
}
.cid-tyAaQmZHPv .mbr-text,
.cid-tyAaQmZHPv .mbr-section-btn {
  color: #716c80;
}
.cid-tyAaQmZHPv .block-border {
  border-left: 2px solid #efefef;
  padding-left: 4rem;
}
.cid-tyAaQmZHPv .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tyAaQmZHPv .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tyAaQmZHPv .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tyAaQmZHPv .link:hover {
  color: #e83e8c !important;
}
.cid-tyAaQmZHPv .link:hover .link-ico {
  color: #e83e8c !important;
  padding-left: 10px;
}
.cid-tyAaQmZHPv DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tyAaQmZHPv .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tyAaQmZHPv h1 {
    padding-bottom: 1rem;
  }
}
.cid-tyAaQmZHPv .mbr-text,
.cid-tyAaQmZHPv .media-content {
  color: #000000;
}
.cid-tyFiBeGRuU {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tyFiBeGRuU .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-tyFiBeGRuU .mbr-section-title {
  margin: 0;
}
.cid-tyFiBeGRuU .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tyFiBeGRuU .card-img {
  text-align: inherit;
}
.cid-tyFiBeGRuU .card-img span {
  background: linear-gradient(90deg, #2bdc9d, #1dc9cb);
}
.cid-tyFiBeGRuU .mbr-text {
  color: #000000;
}
.cid-tyFiBeGRuU .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #f9ecf8;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-tyFiBeGRuU .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-tyFiBeGRuU .mbr-card-title {
  color: #000000;
}
.cid-tyAlIW2iHa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9ecf8;
}
.cid-tyAlIW2iHa H1 {
  color: #000000;
}
.cid-tyAlIW2iHa .align-left {
  margin: auto;
}
.cid-tyAlIW2iHa .row {
  justify-content: space-between;
}
.cid-tyAlIW2iHa .mbr-text,
.cid-tyAlIW2iHa .mbr-section-btn {
  color: #716c80;
}
.cid-tyAlIW2iHa .block-border {
  border-left: 2px solid #efefef;
  padding-left: 4rem;
}
.cid-tyAlIW2iHa .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tyAlIW2iHa .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tyAlIW2iHa .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tyAlIW2iHa .link:hover {
  color: #e83e8c !important;
}
.cid-tyAlIW2iHa .link:hover .link-ico {
  color: #e83e8c !important;
  padding-left: 10px;
}
.cid-tyAlIW2iHa DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tyAlIW2iHa .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tyAlIW2iHa h1 {
    padding-bottom: 1rem;
  }
}
.cid-tyAlIW2iHa .mbr-text,
.cid-tyAlIW2iHa .media-content {
  color: #000000;
}
.cid-tfki3MWkNW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tfki3MWkNW .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-tfki3MWkNW .content-panel {
  padding: 3rem;
  background-color: #444444;
}
@media (min-width: 767px) {
  .cid-tfki3MWkNW .text-block {
    padding-right: 0;
  }
}
.cid-tfki3MWkNW .google-map {
  width: 100%;
  height: 30rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-tfki3MWkNW .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tfki3MWkNW .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-tfki3MWkNW .google-map .place-card {
  margin-left: 40px !important;
}
.cid-tfkiHmV2mm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/shutterstock-587762948-2000x682.webp");
}
.cid-tfkiHmV2mm H1 {
  color: #000000;
  text-align: center;
}
.cid-tfkiHmV2mm .mbr-text,
.cid-tfkiHmV2mm .mbr-section-btn {
  color: #000000;
}
.cid-tfkiHmV2mm .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tfkiHmV2mm .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-tfkiHmV2mm .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-tfkiHmV2mm h3,
.cid-tfkiHmV2mm h4 {
  margin: 0;
  padding: 0;
}
.cid-tfkiHmV2mm H3 {
  color: #ffffff;
}
.cid-tfkiHmV2mm H4 {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tfkiHmV2mm .author-box {
    justify-content: center;
  }
}
.cid-tfkiHmV2mm p {
  text-align: center !important;
}
.cid-tIW7gSP13h {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIW7gSP13h section {
  position: relative;
}
.cid-tIW7gSP13h .container {
  max-width: 1400px;
}
.cid-tIW7gSP13h .card-img2 span {
  padding-top: 6px;
}
.cid-tIW7gSP13h .soc-item a {
  padding-top: 5px;
}
.cid-tIW7gSP13h .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIW7gSP13h .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIW7gSP13h .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIW7gSP13h .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIW7gSP13h .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-tIW7gSP13h .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIW7gSP13h .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIW7gSP13h .soc-item span {
  font-size: 1.4rem;
}
.cid-tIW7gSP13h .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIW7gSP13h .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIW7gSP13h .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIW7gSP13h .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIW7gSP13h .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIW7gSP13h img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIW7gSP13h .item {
    justify-content: center;
  }
  .cid-tIW7gSP13h .quote::after {
    left: 60px;
  }
}
.cid-tIW7gSP13h .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIW7gSP13h .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIW7gSP13h .text1 {
  color: #232323;
}
.cid-tIW7gSP13h .item-title {
  color: #232323;
}
.cid-tIW7gSP13h H5 {
  color: #232323;
}
.cid-tIW7gSP13h .theme {
  color: #ffffff;
}
.cid-tIW7gSP13h .copyright > p {
  color: #ff3366;
}
.cid-tIW7gSP13h .text2 {
  color: #232323;
}
.cid-teRKqPDpAN .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-teRKqPDpAN .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-teRKqPDpAN .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-teRKqPDpAN .nav-item:focus,
.cid-teRKqPDpAN .nav-link:focus {
  outline: none;
}
.cid-teRKqPDpAN .text-white:hover,
.cid-teRKqPDpAN .text-white:active,
.cid-teRKqPDpAN .text-white:focus {
  color: white!important;
}
.cid-teRKqPDpAN .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-teRKqPDpAN .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-teRKqPDpAN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-teRKqPDpAN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-teRKqPDpAN .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-teRKqPDpAN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teRKqPDpAN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-teRKqPDpAN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-teRKqPDpAN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teRKqPDpAN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teRKqPDpAN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-teRKqPDpAN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teRKqPDpAN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-teRKqPDpAN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-teRKqPDpAN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teRKqPDpAN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teRKqPDpAN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-teRKqPDpAN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teRKqPDpAN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teRKqPDpAN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-teRKqPDpAN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-teRKqPDpAN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teRKqPDpAN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teRKqPDpAN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-teRKqPDpAN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-teRKqPDpAN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-teRKqPDpAN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-teRKqPDpAN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-teRKqPDpAN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-teRKqPDpAN .section {
  position: relative;
  overflow: visible!important;
}
.cid-teRKqPDpAN .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-teRKqPDpAN .dropdown-item:hover {
  color: black!important;
}
.cid-teRKqPDpAN .dropdown-menu {
  background-color: white!important;
}
.cid-teRKqPDpAN .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-teRKqPDpAN .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-teRKqPDpAN .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-teRKqPDpAN .nav-item .nav-link {
    position: relative;
  }
}
.cid-teRKqPDpAN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-teRKqPDpAN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teRKqPDpAN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-teRKqPDpAN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-teRKqPDpAN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-teRKqPDpAN .collapsed {
  flex-direction: row!important;
}
.cid-teRKqPDpAN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teRKqPDpAN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teRKqPDpAN .navbar-caption {
  font-weight: 600!important;
}
.cid-teRKqPDpAN .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-teRKqPDpAN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teRKqPDpAN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teRKqPDpAN .dropdown-item.active,
.cid-teRKqPDpAN .dropdown-item:active {
  background-color: transparent;
}
.cid-teRKqPDpAN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teRKqPDpAN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teRKqPDpAN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teRKqPDpAN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teRKqPDpAN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teRKqPDpAN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-teRKqPDpAN .navbar-buttons {
  text-align: center;
}
.cid-teRKqPDpAN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-teRKqPDpAN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-teRKqPDpAN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teRKqPDpAN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teRKqPDpAN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teRKqPDpAN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teRKqPDpAN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teRKqPDpAN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teRKqPDpAN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teRKqPDpAN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teRKqPDpAN .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-teRKqPDpAN .nav-link {
  font-weight: 600!important;
}
.cid-teRKqPDpAN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-teRKqPDpAN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-teRKqPDpAN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-teRKqPDpAN .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-teRKqPDpAN .navbar {
    height: 77px;
  }
  .cid-teRKqPDpAN .navbar.opened {
    height: auto;
  }
  .cid-teRKqPDpAN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teRKI51hQd {
  padding-top: 210px;
  padding-bottom: 45px;
  background-color: #f9ecf8;
}
.cid-teRKI51hQd H1 {
  color: #000000;
}
.cid-teRKI51hQd .mbr-text,
.cid-teRKI51hQd .mbr-section-btn {
  color: #000000;
}
.cid-teRKI51hQd H3 {
  color: #716c80;
}
.cid-teRLNzDVgE {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-teRLNzDVgE H1 {
  color: #232323;
}
.cid-teRLNzDVgE .mbr-text,
.cid-teRLNzDVgE .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-teRLNzDVgE H3 {
  color: #716c80;
}
.cid-tDRQ2oPkxW {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tDRQ2oPkxW .mbr-overlay {
  background-color: #232323;
  opacity: 0.5;
}
.cid-tDRQ2oPkxW input,
.cid-tDRQ2oPkxW textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-tDRQ2oPkxW .col-auto {
  width: 100%;
  text-align: center;
}
.cid-tDRQ2oPkxW img {
  width: 90%;
  border-radius: 8px;
}
.cid-tDRQ2oPkxW .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-tDRQ2oPkxW textarea {
  min-height: 160px;
}
.cid-tDRQ2oPkxW .form-control,
.cid-tDRQ2oPkxW .field-input {
  padding: 0.5rem;
  background-color: #f5f6ff;
  border-color: #f5f6ff;
  color: #f9ecf8;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tDRQ2oPkxW .form-control:hover,
.cid-tDRQ2oPkxW .field-input:hover,
.cid-tDRQ2oPkxW .form-control:focus,
.cid-tDRQ2oPkxW .field-input:focus {
  background-color: #f5f6ff;
  border-color: #f5f6ff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tDRQ2oPkxW input::-webkit-input-placeholder,
.cid-tDRQ2oPkxW textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-tDRQ2oPkxW input:-moz-placeholder,
.cid-tDRQ2oPkxW textarea:-moz-placeholder {
  color: #807d78;
}
.cid-tDRQ2oPkxW .jq-selectbox li,
.cid-tDRQ2oPkxW .jq-selectbox li {
  background-color: #f5f6ff;
  color: #000000;
}
.cid-tDRQ2oPkxW .jq-selectbox li:hover,
.cid-tDRQ2oPkxW .jq-selectbox li.selected {
  background-color: #f5f6ff;
  color: #000000;
}
.cid-tDRQ2oPkxW .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f6ff;
}
.cid-tDRQ2oPkxW .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f6ff;
}
.cid-tDRQ2oPkxW H5 {
  color: #232323;
  padding-bottom: 2rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tDRQ2oPkxW img {
    width: 100%;
  }
}
.cid-tIW7rlG4Io {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIW7rlG4Io section {
  position: relative;
}
.cid-tIW7rlG4Io .container {
  max-width: 1400px;
}
.cid-tIW7rlG4Io .card-img2 span {
  padding-top: 6px;
}
.cid-tIW7rlG4Io .soc-item a {
  padding-top: 5px;
}
.cid-tIW7rlG4Io .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIW7rlG4Io .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIW7rlG4Io .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIW7rlG4Io .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIW7rlG4Io .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-tIW7rlG4Io .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIW7rlG4Io .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIW7rlG4Io .soc-item span {
  font-size: 1.4rem;
}
.cid-tIW7rlG4Io .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIW7rlG4Io .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIW7rlG4Io .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIW7rlG4Io .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIW7rlG4Io .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIW7rlG4Io img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIW7rlG4Io .item {
    justify-content: center;
  }
  .cid-tIW7rlG4Io .quote::after {
    left: 60px;
  }
}
.cid-tIW7rlG4Io .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIW7rlG4Io .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIW7rlG4Io .text1 {
  color: #232323;
}
.cid-tIW7rlG4Io .item-title {
  color: #232323;
}
.cid-tIW7rlG4Io H5 {
  color: #232323;
}
.cid-tIW7rlG4Io .theme {
  color: #ffffff;
}
.cid-tIW7rlG4Io .copyright > p {
  color: #ff3366;
}
.cid-tIW7rlG4Io .text2 {
  color: #232323;
}
.cid-tffnnPzEpw .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-tffnnPzEpw .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tffnnPzEpw .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tffnnPzEpw .nav-item:focus,
.cid-tffnnPzEpw .nav-link:focus {
  outline: none;
}
.cid-tffnnPzEpw .text-white:hover,
.cid-tffnnPzEpw .text-white:active,
.cid-tffnnPzEpw .text-white:focus {
  color: white!important;
}
.cid-tffnnPzEpw .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tffnnPzEpw .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tffnnPzEpw .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tffnnPzEpw .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tffnnPzEpw .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tffnnPzEpw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tffnnPzEpw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tffnnPzEpw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tffnnPzEpw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tffnnPzEpw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tffnnPzEpw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tffnnPzEpw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tffnnPzEpw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tffnnPzEpw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tffnnPzEpw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tffnnPzEpw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tffnnPzEpw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tffnnPzEpw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tffnnPzEpw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tffnnPzEpw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tffnnPzEpw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tffnnPzEpw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tffnnPzEpw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tffnnPzEpw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-tffnnPzEpw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tffnnPzEpw .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tffnnPzEpw .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tffnnPzEpw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tffnnPzEpw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tffnnPzEpw .section {
  position: relative;
  overflow: visible!important;
}
.cid-tffnnPzEpw .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tffnnPzEpw .dropdown-item:hover {
  color: black!important;
}
.cid-tffnnPzEpw .dropdown-menu {
  background-color: white!important;
}
.cid-tffnnPzEpw .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-tffnnPzEpw .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tffnnPzEpw .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tffnnPzEpw .nav-item .nav-link {
    position: relative;
  }
}
.cid-tffnnPzEpw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tffnnPzEpw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tffnnPzEpw .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tffnnPzEpw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tffnnPzEpw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tffnnPzEpw .collapsed {
  flex-direction: row!important;
}
.cid-tffnnPzEpw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tffnnPzEpw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tffnnPzEpw .navbar-caption {
  font-weight: 600!important;
}
.cid-tffnnPzEpw .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tffnnPzEpw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tffnnPzEpw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tffnnPzEpw .dropdown-item.active,
.cid-tffnnPzEpw .dropdown-item:active {
  background-color: transparent;
}
.cid-tffnnPzEpw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tffnnPzEpw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tffnnPzEpw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tffnnPzEpw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tffnnPzEpw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tffnnPzEpw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tffnnPzEpw .navbar-buttons {
  text-align: center;
}
.cid-tffnnPzEpw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tffnnPzEpw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-tffnnPzEpw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tffnnPzEpw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tffnnPzEpw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tffnnPzEpw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tffnnPzEpw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tffnnPzEpw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tffnnPzEpw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tffnnPzEpw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tffnnPzEpw .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tffnnPzEpw .nav-link {
  font-weight: 600!important;
}
.cid-tffnnPzEpw a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tffnnPzEpw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tffnnPzEpw .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tffnnPzEpw .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tffnnPzEpw .navbar {
    height: 77px;
  }
  .cid-tffnnPzEpw .navbar.opened {
    height: auto;
  }
  .cid-tffnnPzEpw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tffnnQCEmh {
  padding-top: 210px;
  padding-bottom: 45px;
  background-color: #f9ecf8;
}
.cid-tffnnQCEmh H1 {
  color: #000000;
}
.cid-tffnnQCEmh .mbr-text,
.cid-tffnnQCEmh .mbr-section-btn {
  color: #000000;
}
.cid-tffnnQCEmh H3 {
  color: #716c80;
}
#custom-html-qc {
  /* Type valid CSS here */
}
#custom-html-qc .content {
  display: flex;
  justify-content: center;
  height: 700px;
  background-color: white;
}
#custom-html-qc p {
  font-size: 60px;
  color: #777;
}
#custom-html-qc .lmtWIHO_gkbTeeyuvoJC.mOUYF5ZmuNL6I7t0mSFg {
  background-color: white;
}
.cid-tIW7EK7bKv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIW7EK7bKv section {
  position: relative;
}
.cid-tIW7EK7bKv .container {
  max-width: 1400px;
}
.cid-tIW7EK7bKv .card-img2 span {
  padding-top: 6px;
}
.cid-tIW7EK7bKv .soc-item a {
  padding-top: 5px;
}
.cid-tIW7EK7bKv .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIW7EK7bKv .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIW7EK7bKv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIW7EK7bKv .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIW7EK7bKv .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-tIW7EK7bKv .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIW7EK7bKv .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIW7EK7bKv .soc-item span {
  font-size: 1.4rem;
}
.cid-tIW7EK7bKv .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIW7EK7bKv .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIW7EK7bKv .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIW7EK7bKv .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIW7EK7bKv .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIW7EK7bKv img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIW7EK7bKv .item {
    justify-content: center;
  }
  .cid-tIW7EK7bKv .quote::after {
    left: 60px;
  }
}
.cid-tIW7EK7bKv .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIW7EK7bKv .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIW7EK7bKv .text1 {
  color: #232323;
}
.cid-tIW7EK7bKv .item-title {
  color: #232323;
}
.cid-tIW7EK7bKv H5 {
  color: #232323;
}
.cid-tIW7EK7bKv .theme {
  color: #ffffff;
}
.cid-tIW7EK7bKv .copyright > p {
  color: #ff3366;
}
.cid-tIW7EK7bKv .text2 {
  color: #232323;
}
.cid-tyAoHc6Kfp .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-tyAoHc6Kfp .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tyAoHc6Kfp .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tyAoHc6Kfp .nav-item:focus,
.cid-tyAoHc6Kfp .nav-link:focus {
  outline: none;
}
.cid-tyAoHc6Kfp .text-white:hover,
.cid-tyAoHc6Kfp .text-white:active,
.cid-tyAoHc6Kfp .text-white:focus {
  color: white!important;
}
.cid-tyAoHc6Kfp .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tyAoHc6Kfp .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tyAoHc6Kfp .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tyAoHc6Kfp .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tyAoHc6Kfp .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tyAoHc6Kfp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyAoHc6Kfp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tyAoHc6Kfp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tyAoHc6Kfp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyAoHc6Kfp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyAoHc6Kfp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tyAoHc6Kfp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyAoHc6Kfp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tyAoHc6Kfp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tyAoHc6Kfp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyAoHc6Kfp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyAoHc6Kfp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tyAoHc6Kfp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyAoHc6Kfp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyAoHc6Kfp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tyAoHc6Kfp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tyAoHc6Kfp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyAoHc6Kfp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyAoHc6Kfp .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-tyAoHc6Kfp .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tyAoHc6Kfp .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tyAoHc6Kfp .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tyAoHc6Kfp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyAoHc6Kfp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyAoHc6Kfp .section {
  position: relative;
  overflow: visible!important;
}
.cid-tyAoHc6Kfp .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tyAoHc6Kfp .dropdown-item:hover {
  color: black!important;
}
.cid-tyAoHc6Kfp .dropdown-menu {
  background-color: white!important;
}
.cid-tyAoHc6Kfp .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-tyAoHc6Kfp .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tyAoHc6Kfp .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tyAoHc6Kfp .nav-item .nav-link {
    position: relative;
  }
}
.cid-tyAoHc6Kfp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyAoHc6Kfp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyAoHc6Kfp .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tyAoHc6Kfp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tyAoHc6Kfp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyAoHc6Kfp .collapsed {
  flex-direction: row!important;
}
.cid-tyAoHc6Kfp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyAoHc6Kfp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyAoHc6Kfp .navbar-caption {
  font-weight: 600!important;
}
.cid-tyAoHc6Kfp .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyAoHc6Kfp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyAoHc6Kfp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyAoHc6Kfp .dropdown-item.active,
.cid-tyAoHc6Kfp .dropdown-item:active {
  background-color: transparent;
}
.cid-tyAoHc6Kfp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tyAoHc6Kfp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tyAoHc6Kfp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tyAoHc6Kfp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tyAoHc6Kfp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyAoHc6Kfp ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tyAoHc6Kfp .navbar-buttons {
  text-align: center;
}
.cid-tyAoHc6Kfp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyAoHc6Kfp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-tyAoHc6Kfp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tyAoHc6Kfp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tyAoHc6Kfp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tyAoHc6Kfp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tyAoHc6Kfp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tyAoHc6Kfp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tyAoHc6Kfp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tyAoHc6Kfp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tyAoHc6Kfp .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tyAoHc6Kfp .nav-link {
  font-weight: 600!important;
}
.cid-tyAoHc6Kfp a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tyAoHc6Kfp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tyAoHc6Kfp .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tyAoHc6Kfp .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyAoHc6Kfp .navbar {
    height: 77px;
  }
  .cid-tyAoHc6Kfp .navbar.opened {
    height: auto;
  }
  .cid-tyAoHc6Kfp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyAoHcyyKu {
  padding-top: 210px;
  padding-bottom: 45px;
  background-color: #f9ecf8;
}
.cid-tyAoHcyyKu H1 {
  color: #000000;
}
.cid-tyAoHcyyKu .mbr-text,
.cid-tyAoHcyyKu .mbr-section-btn {
  color: #000000;
}
.cid-tyAoHcyyKu H3 {
  color: #716c80;
}
#custom-html-n3 {
  /* Type valid CSS here */
}
#custom-html-n3 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-n3 p {
  font-size: 60px;
  color: #777;
}
#custom-html-n4 {
  /* Type valid CSS here */
}
#custom-html-n4 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-n4 p {
  font-size: 60px;
  color: #777;
}
#custom-html-n5 {
  /* Type valid CSS here */
}
.cid-tyApeZNKJk {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tyApeZNKJk .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-tyApeZNKJk .mbr-section-title {
  margin: 0;
}
.cid-tyApeZNKJk .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tyApeZNKJk .card-img {
  text-align: inherit;
}
.cid-tyApeZNKJk .card-img span {
  background: linear-gradient(90deg, #f9ecf8, #f9ecf8);
}
.cid-tyApeZNKJk .mbr-text {
  color: #000000;
}
.cid-tyApeZNKJk .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-tyApeZNKJk .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-tyApTn0X8i {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tyApTn0X8i .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-tyApTn0X8i .mbr-section-title {
  margin: 0;
}
.cid-tyApTn0X8i .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tyApTn0X8i .card-img {
  text-align: inherit;
}
.cid-tyApTn0X8i .card-img span {
  background: linear-gradient(90deg, #f9ecf8, #f9ecf8);
}
.cid-tyApTn0X8i .mbr-text {
  color: #000000;
}
.cid-tyApTn0X8i .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-tyApTn0X8i .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-tDRQM7OA90 {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tDRQM7OA90 .mbr-overlay {
  background-color: #232323;
  opacity: 0.5;
}
.cid-tDRQM7OA90 input,
.cid-tDRQM7OA90 textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-tDRQM7OA90 .col-auto {
  width: 100%;
  text-align: center;
}
.cid-tDRQM7OA90 img {
  width: 90%;
  border-radius: 8px;
}
.cid-tDRQM7OA90 .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-tDRQM7OA90 textarea {
  min-height: 160px;
}
.cid-tDRQM7OA90 .form-control,
.cid-tDRQM7OA90 .field-input {
  padding: 0.5rem;
  background-color: #f5f6ff;
  border-color: #f5f6ff;
  color: #f9ecf8;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tDRQM7OA90 .form-control:hover,
.cid-tDRQM7OA90 .field-input:hover,
.cid-tDRQM7OA90 .form-control:focus,
.cid-tDRQM7OA90 .field-input:focus {
  background-color: #f5f6ff;
  border-color: #f5f6ff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tDRQM7OA90 input::-webkit-input-placeholder,
.cid-tDRQM7OA90 textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-tDRQM7OA90 input:-moz-placeholder,
.cid-tDRQM7OA90 textarea:-moz-placeholder {
  color: #807d78;
}
.cid-tDRQM7OA90 .jq-selectbox li,
.cid-tDRQM7OA90 .jq-selectbox li {
  background-color: #f5f6ff;
  color: #000000;
}
.cid-tDRQM7OA90 .jq-selectbox li:hover,
.cid-tDRQM7OA90 .jq-selectbox li.selected {
  background-color: #f5f6ff;
  color: #000000;
}
.cid-tDRQM7OA90 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f6ff;
}
.cid-tDRQM7OA90 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f6ff;
}
.cid-tDRQM7OA90 H5 {
  color: #232323;
  padding-bottom: 2rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tDRQM7OA90 img {
    width: 100%;
  }
}
.cid-tDXIvp3lDK {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tDXIvp3lDK section {
  position: relative;
}
.cid-tDXIvp3lDK .container {
  max-width: 1400px;
}
.cid-tDXIvp3lDK .card-img2 span {
  padding-top: 6px;
}
.cid-tDXIvp3lDK .soc-item a {
  padding-top: 5px;
}
.cid-tDXIvp3lDK .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tDXIvp3lDK .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tDXIvp3lDK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tDXIvp3lDK .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tDXIvp3lDK .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-tDXIvp3lDK .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDXIvp3lDK .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tDXIvp3lDK .soc-item span {
  font-size: 1.4rem;
}
.cid-tDXIvp3lDK .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tDXIvp3lDK .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tDXIvp3lDK .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tDXIvp3lDK .media-wrap {
  margin-bottom: 1rem;
}
.cid-tDXIvp3lDK .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tDXIvp3lDK img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tDXIvp3lDK .item {
    justify-content: center;
  }
  .cid-tDXIvp3lDK .quote::after {
    left: 60px;
  }
}
.cid-tDXIvp3lDK .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tDXIvp3lDK .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDXIvp3lDK .text1 {
  color: #232323;
}
.cid-tDXIvp3lDK .item-title {
  color: #232323;
}
.cid-tDXIvp3lDK H5 {
  color: #232323;
}
.cid-tDXIvp3lDK .theme {
  color: #ffffff;
}
.cid-tDXIvp3lDK .copyright > p {
  color: #ff3366;
}
.cid-tDXIvp3lDK .text2 {
  color: #232323;
}
#custom-html-n7 {
  /* Type valid CSS here */
}
#custom-html-n7 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-n7 p {
  font-size: 60px;
  color: #777;
}
#custom-html-n8 {
  /* Type valid CSS here */
}
#custom-html-n8 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-n8 p {
  font-size: 60px;
  color: #777;
}
.cid-tflfSqZxDs .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-tflfSqZxDs .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tflfSqZxDs .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tflfSqZxDs .nav-item:focus,
.cid-tflfSqZxDs .nav-link:focus {
  outline: none;
}
.cid-tflfSqZxDs .text-white:hover,
.cid-tflfSqZxDs .text-white:active,
.cid-tflfSqZxDs .text-white:focus {
  color: white!important;
}
.cid-tflfSqZxDs .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tflfSqZxDs .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tflfSqZxDs .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tflfSqZxDs .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tflfSqZxDs .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tflfSqZxDs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tflfSqZxDs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tflfSqZxDs .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tflfSqZxDs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tflfSqZxDs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tflfSqZxDs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tflfSqZxDs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tflfSqZxDs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tflfSqZxDs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tflfSqZxDs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tflfSqZxDs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tflfSqZxDs .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tflfSqZxDs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tflfSqZxDs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tflfSqZxDs .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tflfSqZxDs .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tflfSqZxDs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tflfSqZxDs .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tflfSqZxDs .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-tflfSqZxDs .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tflfSqZxDs .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tflfSqZxDs .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tflfSqZxDs .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tflfSqZxDs .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tflfSqZxDs .section {
  position: relative;
  overflow: visible!important;
}
.cid-tflfSqZxDs .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tflfSqZxDs .dropdown-item:hover {
  color: black!important;
}
.cid-tflfSqZxDs .dropdown-menu {
  background-color: white!important;
}
.cid-tflfSqZxDs .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-tflfSqZxDs .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tflfSqZxDs .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tflfSqZxDs .nav-item .nav-link {
    position: relative;
  }
}
.cid-tflfSqZxDs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tflfSqZxDs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tflfSqZxDs .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tflfSqZxDs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tflfSqZxDs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tflfSqZxDs .collapsed {
  flex-direction: row!important;
}
.cid-tflfSqZxDs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tflfSqZxDs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tflfSqZxDs .navbar-caption {
  font-weight: 600!important;
}
.cid-tflfSqZxDs .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tflfSqZxDs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tflfSqZxDs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tflfSqZxDs .dropdown-item.active,
.cid-tflfSqZxDs .dropdown-item:active {
  background-color: transparent;
}
.cid-tflfSqZxDs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tflfSqZxDs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tflfSqZxDs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tflfSqZxDs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tflfSqZxDs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tflfSqZxDs ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tflfSqZxDs .navbar-buttons {
  text-align: center;
}
.cid-tflfSqZxDs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tflfSqZxDs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-tflfSqZxDs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tflfSqZxDs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tflfSqZxDs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tflfSqZxDs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tflfSqZxDs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tflfSqZxDs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tflfSqZxDs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tflfSqZxDs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tflfSqZxDs .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tflfSqZxDs .nav-link {
  font-weight: 600!important;
}
.cid-tflfSqZxDs a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tflfSqZxDs .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tflfSqZxDs .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tflfSqZxDs .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tflfSqZxDs .navbar {
    height: 77px;
  }
  .cid-tflfSqZxDs .navbar.opened {
    height: auto;
  }
  .cid-tflfSqZxDs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyAAlmBG8M {
  padding-top: 165px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tyAAlmBG8M section {
  position: relative;
}
.cid-tyAAlmBG8M svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-tyAAlmBG8M H1 {
  color: #232323;
}
.cid-tyAAlmBG8M .mbr-text,
.cid-tyAAlmBG8M .mbr-section-btn {
  color: #232323;
}
.cid-tyAAlmBG8M #e1_ellipse {
  fill: #f9ecf8 !important;
}
.cid-tyAAlmBG8M img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
}
@media (max-width: 576px) {
  .cid-tyAAlmBG8M img {
    width: 100%;
  }
}
.cid-tyAAlmBG8M p {
  text-align: justify;
}
.cid-tyAAlmBG8M H3 {
  color: #232323;
}
.cid-tDmXxomTq5 {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #f9ecf8;
  position: relative;
  overflow: hidden;
}
.cid-tDmXxomTq5 .container {
  max-width: 1400px;
}
.cid-tDmXxomTq5 svg {
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(-1.9, 1.3);
}
.cid-tDmXxomTq5 #e1_ellipse {
  fill: #ffffff !important;
}
.cid-tDmXxomTq5 .mbr-text {
  color: #000000;
}
.cid-tDmXxomTq5 .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-tDmXxomTq5 .card-img .img1 {
  background-color: #e62e3c;
}
.cid-tDmXxomTq5 .card-img .img2 {
  background-color: #e62e3c;
}
.cid-tDmXxomTq5 .card-img .img3 {
  background-color: #e62e3c;
}
.cid-tDmXxomTq5 .card-img .img4 {
  background-color: #e62e3c;
}
.cid-tDmXxomTq5 .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-tDmXxomTq5 .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-tDmXxomTq5 .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
  background-color: #ffffff;
}
.cid-tDmXxomTq5 .card-title,
.cid-tDmXxomTq5 .card-img {
  color: #57468b;
}
.cid-tDmXxomTq5 img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-tDmXxomTq5 img {
    margin-bottom: 3rem;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-tDmXxomTq5 .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem!important;
  }
  .cid-tDmXxomTq5 .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-tDmXxomTq5 .card:hover {
    box-shadow: none;
    transform: none;
    background-color: transparent;
  }
  .cid-tDmXxomTq5 .card-img span {
    margin-right: 0rem;
  }
  .cid-tDmXxomTq5 svg {
    top: -9rem;
  }
}
.cid-tDmXxomTq5 .card-img {
  width: auto;
}
.cid-tDmXxomTq5 .card-title {
  color: #232323;
}
.cid-tDmYHGSaZE {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f9ecf8;
}
.cid-tDmYHGSaZE .mbr-text {
  color: #716c80;
}
.cid-tDmYHGSaZE .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-tDmYHGSaZE p {
  margin: 0;
  text-align: justify;
}
.cid-tDmYHGSaZE .card-img .img1 {
  background-color: #e62e3c;
}
.cid-tDmYHGSaZE .cardcolor:hover {
  background-color: #ffffff;
}
.cid-tDmYHGSaZE .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-tDmYHGSaZE .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-tDmYHGSaZE .card-title,
.cid-tDmYHGSaZE .card-img {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tDmYHGSaZE .card {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-tDmYHGSaZE .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-tDmYHGSaZE .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-tDmYHGSaZE .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-tDmYHGSaZE .card-img span {
    margin-right: 0rem;
  }
  .cid-tDmYHGSaZE .cardcolor:hover {
    background-color: transparent;
  }
}
.cid-tDmYHGSaZE .card-title {
  color: #232323;
}
.cid-tEl0HeG9Jq {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ecf8;
}
.cid-tEl0HeG9Jq H1 {
  color: #232323;
}
.cid-tEl0HeG9Jq .mbr-text,
.cid-tEl0HeG9Jq .mbr-section-btn {
  color: #716c80;
}
.cid-tEl0HeG9Jq H3 {
  color: #716c80;
}
.cid-tEl0FXLHUk {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9ecf8;
}
.cid-tEl0FXLHUk .mbr-section-subtitle {
  color: #716c80;
}
.cid-tEl0FXLHUk .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tEl0FXLHUk .mbr-text {
  color: #767676;
}
.cid-tEl0FXLHUk .mbr-author-desc {
  display: block;
  color: #716c80;
  text-align: center;
}
.cid-tEl0FXLHUk .mbr-author-name {
  color: #232323;
}
.cid-tEl0FXLHUk .mbr-testimonial .panel-item {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-tEl0FXLHUk .mbr-testimonial .panel-item:hover {
  transform: translateY(-1.5rem);
}
.cid-tEl0FXLHUk .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 1.4rem 1.4rem 0 1.4rem;
}
.cid-tEl0FXLHUk .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 135px;
  height: 135px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tEl0FXLHUk .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tEl0FXLHUk .mbr-testimonial .card-footer {
  padding-bottom: 1.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-tEl0FXLHUk .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tEl0FXLHUk .mbr-iconfont-social {
  font-size: 18px;
}
.cid-tEl0FXLHUk .icon1 {
  color: #ff8a73;
}
.cid-tEl0FXLHUk .icon2 {
  color: #57468b;
}
.cid-tEl0FXLHUk .icon3 {
  color: #5580ff;
}
.cid-tEl0FXLHUk .social-list a:focus {
  text-decoration: none;
}
.cid-tEl0FXLHUk H2 {
  color: #57468b;
}
.cid-tyAGAQwgHC {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-tyAGAQwgHC .card-header {
  background: transparent;
}
.cid-tyAGAQwgHC .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-tyAGAQwgHC .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tyAGAQwgHC .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tyAGAQwgHC .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tyAGAQwgHC .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tyAGAQwgHC .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tyAGAQwgHC .card .panel-body {
  color: #767676;
}
.cid-tyAGAQwgHC h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #f9ecf8;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-tyAGAQwgHC H4 {
  color: #000000;
  text-align: left;
}
.cid-tyAGAQwgHC H2 {
  color: #57468b;
}
.cid-tyAGAQwgHC .panel-text {
  color: #000000;
}
.cid-tflfStG4is {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/shutterstock-587762948-2000x682.webp");
}
.cid-tflfStG4is H1 {
  color: #000000;
  text-align: center;
}
.cid-tflfStG4is .mbr-text,
.cid-tflfStG4is .mbr-section-btn {
  color: #000000;
}
.cid-tflfStG4is .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tflfStG4is .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-tflfStG4is .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-tflfStG4is h3,
.cid-tflfStG4is h4 {
  margin: 0;
  padding: 0;
}
.cid-tflfStG4is H3 {
  color: #ffffff;
}
.cid-tflfStG4is H4 {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tflfStG4is .author-box {
    justify-content: center;
  }
}
.cid-tflfStG4is p {
  text-align: center !important;
}
.cid-tIW9MLz71X {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIW9MLz71X section {
  position: relative;
}
.cid-tIW9MLz71X .container {
  max-width: 1400px;
}
.cid-tIW9MLz71X .card-img2 span {
  padding-top: 6px;
}
.cid-tIW9MLz71X .soc-item a {
  padding-top: 5px;
}
.cid-tIW9MLz71X .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIW9MLz71X .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIW9MLz71X .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIW9MLz71X .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIW9MLz71X .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-tIW9MLz71X .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIW9MLz71X .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIW9MLz71X .soc-item span {
  font-size: 1.4rem;
}
.cid-tIW9MLz71X .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIW9MLz71X .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIW9MLz71X .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIW9MLz71X .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIW9MLz71X .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIW9MLz71X img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIW9MLz71X .item {
    justify-content: center;
  }
  .cid-tIW9MLz71X .quote::after {
    left: 60px;
  }
}
.cid-tIW9MLz71X .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIW9MLz71X .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIW9MLz71X .text1 {
  color: #232323;
}
.cid-tIW9MLz71X .item-title {
  color: #232323;
}
.cid-tIW9MLz71X H5 {
  color: #232323;
}
.cid-tIW9MLz71X .theme {
  color: #ffffff;
}
.cid-tIW9MLz71X .copyright > p {
  color: #ff3366;
}
.cid-tIW9MLz71X .text2 {
  color: #232323;
}
.cid-tyAHVCMHQE .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-tyAHVCMHQE .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tyAHVCMHQE .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tyAHVCMHQE .nav-item:focus,
.cid-tyAHVCMHQE .nav-link:focus {
  outline: none;
}
.cid-tyAHVCMHQE .text-white:hover,
.cid-tyAHVCMHQE .text-white:active,
.cid-tyAHVCMHQE .text-white:focus {
  color: white!important;
}
.cid-tyAHVCMHQE .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tyAHVCMHQE .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tyAHVCMHQE .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tyAHVCMHQE .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tyAHVCMHQE .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tyAHVCMHQE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyAHVCMHQE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tyAHVCMHQE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tyAHVCMHQE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyAHVCMHQE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyAHVCMHQE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tyAHVCMHQE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyAHVCMHQE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tyAHVCMHQE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tyAHVCMHQE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyAHVCMHQE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyAHVCMHQE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tyAHVCMHQE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyAHVCMHQE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyAHVCMHQE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tyAHVCMHQE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tyAHVCMHQE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyAHVCMHQE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyAHVCMHQE .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-tyAHVCMHQE .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tyAHVCMHQE .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tyAHVCMHQE .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tyAHVCMHQE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyAHVCMHQE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyAHVCMHQE .section {
  position: relative;
  overflow: visible!important;
}
.cid-tyAHVCMHQE .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tyAHVCMHQE .dropdown-item:hover {
  color: black!important;
}
.cid-tyAHVCMHQE .dropdown-menu {
  background-color: white!important;
}
.cid-tyAHVCMHQE .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-tyAHVCMHQE .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tyAHVCMHQE .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tyAHVCMHQE .nav-item .nav-link {
    position: relative;
  }
}
.cid-tyAHVCMHQE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyAHVCMHQE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyAHVCMHQE .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tyAHVCMHQE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tyAHVCMHQE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyAHVCMHQE .collapsed {
  flex-direction: row!important;
}
.cid-tyAHVCMHQE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyAHVCMHQE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyAHVCMHQE .navbar-caption {
  font-weight: 600!important;
}
.cid-tyAHVCMHQE .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyAHVCMHQE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyAHVCMHQE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyAHVCMHQE .dropdown-item.active,
.cid-tyAHVCMHQE .dropdown-item:active {
  background-color: transparent;
}
.cid-tyAHVCMHQE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tyAHVCMHQE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tyAHVCMHQE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tyAHVCMHQE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tyAHVCMHQE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyAHVCMHQE ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tyAHVCMHQE .navbar-buttons {
  text-align: center;
}
.cid-tyAHVCMHQE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyAHVCMHQE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-tyAHVCMHQE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tyAHVCMHQE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tyAHVCMHQE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tyAHVCMHQE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tyAHVCMHQE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tyAHVCMHQE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tyAHVCMHQE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tyAHVCMHQE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tyAHVCMHQE .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tyAHVCMHQE .nav-link {
  font-weight: 600!important;
}
.cid-tyAHVCMHQE a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tyAHVCMHQE .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tyAHVCMHQE .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tyAHVCMHQE .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyAHVCMHQE .navbar {
    height: 77px;
  }
  .cid-tyAHVCMHQE .navbar.opened {
    height: auto;
  }
  .cid-tyAHVCMHQE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyAHVDc7yK {
  padding-top: 165px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tyAHVDc7yK section {
  position: relative;
}
.cid-tyAHVDc7yK svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-tyAHVDc7yK H1 {
  color: #232323;
}
.cid-tyAHVDc7yK .mbr-text,
.cid-tyAHVDc7yK .mbr-section-btn {
  color: #232323;
}
.cid-tyAHVDc7yK #e1_ellipse {
  fill: #f9ecf8 !important;
}
.cid-tyAHVDc7yK img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
}
@media (max-width: 576px) {
  .cid-tyAHVDc7yK img {
    width: 100%;
  }
}
.cid-tyAHVDc7yK p {
  text-align: justify;
}
.cid-tyAHVDc7yK H3 {
  color: #232323;
}
.cid-tyAPLFXIB2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tyAPLFXIB2 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tyAPLFXIB2 H1 {
  color: #000000;
}
.cid-tyAPLFXIB2 .mbr-text,
.cid-tyAPLFXIB2 .mbr-section-btn {
  color: #716c80;
}
.cid-tyAPLFXIB2 H3 {
  color: #716c80;
}
.cid-tyAPLFXIB2 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tyAPLFXIB2 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tyAPLFXIB2 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tyAPLFXIB2 .link:hover {
  color: #e83e8c !important;
}
.cid-tyAPLFXIB2 .link:hover .link-ico {
  color: #e83e8c !important;
  padding-left: 10px;
}
.cid-tyAPLFXIB2 DIV {
  color: #57468b;
}
.cid-tyAHVDw536 {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-tyAHVDw536 .card-header {
  background: transparent;
}
.cid-tyAHVDw536 .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-tyAHVDw536 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tyAHVDw536 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tyAHVDw536 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tyAHVDw536 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tyAHVDw536 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tyAHVDw536 .card .panel-body {
  color: #767676;
}
.cid-tyAHVDw536 h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #f9ecf8;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-tyAHVDw536 H4 {
  color: #000000;
  text-align: left;
}
.cid-tyAHVDw536 H2 {
  color: #57468b;
}
.cid-tyAHVDw536 .panel-text {
  color: #000000;
}
.cid-tyAHVDRujz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/shutterstock-587762948-2000x682.webp");
}
.cid-tyAHVDRujz H1 {
  color: #000000;
  text-align: center;
}
.cid-tyAHVDRujz .mbr-text,
.cid-tyAHVDRujz .mbr-section-btn {
  color: #000000;
}
.cid-tyAHVDRujz .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tyAHVDRujz .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-tyAHVDRujz .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-tyAHVDRujz h3,
.cid-tyAHVDRujz h4 {
  margin: 0;
  padding: 0;
}
.cid-tyAHVDRujz H3 {
  color: #ffffff;
}
.cid-tyAHVDRujz H4 {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tyAHVDRujz .author-box {
    justify-content: center;
  }
}
.cid-tyAHVDRujz p {
  text-align: center !important;
}
.cid-tIW9WrrXx4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIW9WrrXx4 section {
  position: relative;
}
.cid-tIW9WrrXx4 .container {
  max-width: 1400px;
}
.cid-tIW9WrrXx4 .card-img2 span {
  padding-top: 6px;
}
.cid-tIW9WrrXx4 .soc-item a {
  padding-top: 5px;
}
.cid-tIW9WrrXx4 .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIW9WrrXx4 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIW9WrrXx4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIW9WrrXx4 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIW9WrrXx4 .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-tIW9WrrXx4 .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIW9WrrXx4 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIW9WrrXx4 .soc-item span {
  font-size: 1.4rem;
}
.cid-tIW9WrrXx4 .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIW9WrrXx4 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIW9WrrXx4 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIW9WrrXx4 .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIW9WrrXx4 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIW9WrrXx4 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIW9WrrXx4 .item {
    justify-content: center;
  }
  .cid-tIW9WrrXx4 .quote::after {
    left: 60px;
  }
}
.cid-tIW9WrrXx4 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIW9WrrXx4 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIW9WrrXx4 .text1 {
  color: #232323;
}
.cid-tIW9WrrXx4 .item-title {
  color: #232323;
}
.cid-tIW9WrrXx4 H5 {
  color: #232323;
}
.cid-tIW9WrrXx4 .theme {
  color: #ffffff;
}
.cid-tIW9WrrXx4 .copyright > p {
  color: #ff3366;
}
.cid-tIW9WrrXx4 .text2 {
  color: #232323;
}
.cid-tyF8M3GT7a .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-tyF8M3GT7a .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tyF8M3GT7a .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tyF8M3GT7a .nav-item:focus,
.cid-tyF8M3GT7a .nav-link:focus {
  outline: none;
}
.cid-tyF8M3GT7a .text-white:hover,
.cid-tyF8M3GT7a .text-white:active,
.cid-tyF8M3GT7a .text-white:focus {
  color: white!important;
}
.cid-tyF8M3GT7a .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tyF8M3GT7a .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tyF8M3GT7a .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tyF8M3GT7a .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tyF8M3GT7a .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tyF8M3GT7a .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyF8M3GT7a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tyF8M3GT7a .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tyF8M3GT7a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyF8M3GT7a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyF8M3GT7a .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tyF8M3GT7a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyF8M3GT7a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tyF8M3GT7a .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tyF8M3GT7a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyF8M3GT7a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyF8M3GT7a .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tyF8M3GT7a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyF8M3GT7a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyF8M3GT7a .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tyF8M3GT7a .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tyF8M3GT7a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyF8M3GT7a .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyF8M3GT7a .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-tyF8M3GT7a .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tyF8M3GT7a .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tyF8M3GT7a .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tyF8M3GT7a .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyF8M3GT7a .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyF8M3GT7a .section {
  position: relative;
  overflow: visible!important;
}
.cid-tyF8M3GT7a .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tyF8M3GT7a .dropdown-item:hover {
  color: black!important;
}
.cid-tyF8M3GT7a .dropdown-menu {
  background-color: white!important;
}
.cid-tyF8M3GT7a .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-tyF8M3GT7a .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tyF8M3GT7a .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tyF8M3GT7a .nav-item .nav-link {
    position: relative;
  }
}
.cid-tyF8M3GT7a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyF8M3GT7a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyF8M3GT7a .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tyF8M3GT7a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tyF8M3GT7a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyF8M3GT7a .collapsed {
  flex-direction: row!important;
}
.cid-tyF8M3GT7a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyF8M3GT7a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyF8M3GT7a .navbar-caption {
  font-weight: 600!important;
}
.cid-tyF8M3GT7a .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyF8M3GT7a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyF8M3GT7a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyF8M3GT7a .dropdown-item.active,
.cid-tyF8M3GT7a .dropdown-item:active {
  background-color: transparent;
}
.cid-tyF8M3GT7a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tyF8M3GT7a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tyF8M3GT7a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tyF8M3GT7a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tyF8M3GT7a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyF8M3GT7a ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tyF8M3GT7a .navbar-buttons {
  text-align: center;
}
.cid-tyF8M3GT7a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyF8M3GT7a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-tyF8M3GT7a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tyF8M3GT7a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tyF8M3GT7a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tyF8M3GT7a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tyF8M3GT7a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tyF8M3GT7a nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tyF8M3GT7a nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tyF8M3GT7a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tyF8M3GT7a .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tyF8M3GT7a .nav-link {
  font-weight: 600!important;
}
.cid-tyF8M3GT7a a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tyF8M3GT7a .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tyF8M3GT7a .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tyF8M3GT7a .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyF8M3GT7a .navbar {
    height: 77px;
  }
  .cid-tyF8M3GT7a .navbar.opened {
    height: auto;
  }
  .cid-tyF8M3GT7a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyF8M8dqpA {
  padding-top: 165px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tyF8M8dqpA section {
  position: relative;
}
.cid-tyF8M8dqpA svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-tyF8M8dqpA H1 {
  color: #232323;
}
.cid-tyF8M8dqpA .mbr-text,
.cid-tyF8M8dqpA .mbr-section-btn {
  color: #232323;
}
.cid-tyF8M8dqpA #e1_ellipse {
  fill: #f9ecf8 !important;
}
.cid-tyF8M8dqpA img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
}
@media (max-width: 576px) {
  .cid-tyF8M8dqpA img {
    width: 100%;
  }
}
.cid-tyF8M8dqpA p {
  text-align: justify;
}
.cid-tyF8M8dqpA H3 {
  color: #232323;
}
.cid-tyFcRs5BuI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tyFcRs5BuI H1 {
  color: #000000;
}
.cid-tyFcRs5BuI .align-left {
  margin: auto;
}
.cid-tyFcRs5BuI .row {
  justify-content: space-between;
}
.cid-tyFcRs5BuI .mbr-text,
.cid-tyFcRs5BuI .mbr-section-btn {
  color: #716c80;
}
.cid-tyFcRs5BuI .block-border {
  border-left: 2px solid #efefef;
  padding-left: 4rem;
}
.cid-tyFcRs5BuI .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tyFcRs5BuI .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tyFcRs5BuI .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tyFcRs5BuI .link:hover {
  color: #e83e8c !important;
}
.cid-tyFcRs5BuI .link:hover .link-ico {
  color: #e83e8c !important;
  padding-left: 10px;
}
.cid-tyFcRs5BuI DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tyFcRs5BuI .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tyFcRs5BuI h1 {
    padding-bottom: 1rem;
  }
}
.cid-tyFcRs5BuI .mbr-text,
.cid-tyFcRs5BuI .media-content {
  color: #000000;
}
.cid-tyFeJ1sbNl {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tyFeJ1sbNl H1 {
  color: #232323;
}
.cid-tyFeJ1sbNl .mbr-text,
.cid-tyFeJ1sbNl .mbr-section-btn {
  color: #716c80;
}
.cid-tyFeJ1sbNl H3 {
  color: #716c80;
}
.cid-tyFdlwjGnC {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tyFdlwjGnC .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tyFdlwjGnC h4 {
  text-align: center;
}
.cid-tyFdlwjGnC p {
  text-align: center;
}
.cid-tyFdlwjGnC .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tyFdlwjGnC .mbr-iconfont {
  transition: all 0.3s;
  color: #e83e8c !important;
  font-size: 3rem !important;
}
.cid-tyFdlwjGnC .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-tyFdlwjGnC .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-tyFdlwjGnC .card:hover .mbr-iconfont {
  color: #e83e8c !important;
}
.cid-tyFdlwjGnC .card-title,
.cid-tyFdlwjGnC .card-img {
  color: #000000;
}
.cid-tyFdlwjGnC .card-img {
  width: auto;
}
@media (max-width: 576px) {
  .cid-tyFdlwjGnC .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
  .cid-tyFdlwjGnC .card:hover {
    box-shadow: none;
    transform: none;
  }
}
.cid-tyFfbEtsub {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ecf8;
}
.cid-tyFfbEtsub H1 {
  color: #000000;
  text-align: center;
}
.cid-tyFfbEtsub .mbr-text,
.cid-tyFfbEtsub .mbr-section-btn {
  color: #000000;
}
.cid-tyFfbEtsub .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tyFfbEtsub .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-tyFfbEtsub .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-tyFfbEtsub h3,
.cid-tyFfbEtsub h4 {
  margin: 0;
  padding: 0;
}
.cid-tyFfbEtsub H3 {
  color: #ffffff;
}
.cid-tyFfbEtsub H4 {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tyFfbEtsub .author-box {
    justify-content: center;
  }
}
.cid-tyFfbEtsub p {
  text-align: center !important;
}
.cid-tyF8MawF0K {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-tyF8MawF0K .card-header {
  background: transparent;
}
.cid-tyF8MawF0K .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-tyF8MawF0K .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tyF8MawF0K .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tyF8MawF0K .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tyF8MawF0K .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tyF8MawF0K .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tyF8MawF0K .card .panel-body {
  color: #767676;
}
.cid-tyF8MawF0K h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #f9ecf8;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-tyF8MawF0K H4 {
  color: #000000;
  text-align: left;
}
.cid-tyF8MawF0K H2 {
  color: #57468b;
}
.cid-tyF8MawF0K .panel-text {
  color: #000000;
}
.cid-tyF8MbCptO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/shutterstock-587762948-2000x682.webp");
}
.cid-tyF8MbCptO H1 {
  color: #000000;
  text-align: center;
}
.cid-tyF8MbCptO .mbr-text,
.cid-tyF8MbCptO .mbr-section-btn {
  color: #000000;
}
.cid-tyF8MbCptO .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tyF8MbCptO .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-tyF8MbCptO .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-tyF8MbCptO h3,
.cid-tyF8MbCptO h4 {
  margin: 0;
  padding: 0;
}
.cid-tyF8MbCptO H3 {
  color: #ffffff;
}
.cid-tyF8MbCptO H4 {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tyF8MbCptO .author-box {
    justify-content: center;
  }
}
.cid-tyF8MbCptO p {
  text-align: center !important;
}
.cid-tIWa6TnNeF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIWa6TnNeF section {
  position: relative;
}
.cid-tIWa6TnNeF .container {
  max-width: 1400px;
}
.cid-tIWa6TnNeF .card-img2 span {
  padding-top: 6px;
}
.cid-tIWa6TnNeF .soc-item a {
  padding-top: 5px;
}
.cid-tIWa6TnNeF .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIWa6TnNeF .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIWa6TnNeF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIWa6TnNeF .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIWa6TnNeF .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-tIWa6TnNeF .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIWa6TnNeF .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIWa6TnNeF .soc-item span {
  font-size: 1.4rem;
}
.cid-tIWa6TnNeF .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIWa6TnNeF .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIWa6TnNeF .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIWa6TnNeF .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIWa6TnNeF .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIWa6TnNeF img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIWa6TnNeF .item {
    justify-content: center;
  }
  .cid-tIWa6TnNeF .quote::after {
    left: 60px;
  }
}
.cid-tIWa6TnNeF .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIWa6TnNeF .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIWa6TnNeF .text1 {
  color: #232323;
}
.cid-tIWa6TnNeF .item-title {
  color: #232323;
}
.cid-tIWa6TnNeF H5 {
  color: #232323;
}
.cid-tIWa6TnNeF .theme {
  color: #ffffff;
}
.cid-tIWa6TnNeF .copyright > p {
  color: #ff3366;
}
.cid-tIWa6TnNeF .text2 {
  color: #232323;
}
.cid-tyLCWIxYAS .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-tyLCWIxYAS .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tyLCWIxYAS .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tyLCWIxYAS .nav-item:focus,
.cid-tyLCWIxYAS .nav-link:focus {
  outline: none;
}
.cid-tyLCWIxYAS .text-white:hover,
.cid-tyLCWIxYAS .text-white:active,
.cid-tyLCWIxYAS .text-white:focus {
  color: white!important;
}
.cid-tyLCWIxYAS .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tyLCWIxYAS .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tyLCWIxYAS .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tyLCWIxYAS .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tyLCWIxYAS .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tyLCWIxYAS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyLCWIxYAS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tyLCWIxYAS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tyLCWIxYAS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyLCWIxYAS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyLCWIxYAS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tyLCWIxYAS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyLCWIxYAS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tyLCWIxYAS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tyLCWIxYAS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyLCWIxYAS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyLCWIxYAS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tyLCWIxYAS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyLCWIxYAS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyLCWIxYAS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tyLCWIxYAS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tyLCWIxYAS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyLCWIxYAS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyLCWIxYAS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-tyLCWIxYAS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tyLCWIxYAS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tyLCWIxYAS .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tyLCWIxYAS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyLCWIxYAS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyLCWIxYAS .section {
  position: relative;
  overflow: visible!important;
}
.cid-tyLCWIxYAS .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tyLCWIxYAS .dropdown-item:hover {
  color: black!important;
}
.cid-tyLCWIxYAS .dropdown-menu {
  background-color: white!important;
}
.cid-tyLCWIxYAS .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-tyLCWIxYAS .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tyLCWIxYAS .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tyLCWIxYAS .nav-item .nav-link {
    position: relative;
  }
}
.cid-tyLCWIxYAS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyLCWIxYAS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyLCWIxYAS .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tyLCWIxYAS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tyLCWIxYAS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyLCWIxYAS .collapsed {
  flex-direction: row!important;
}
.cid-tyLCWIxYAS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyLCWIxYAS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyLCWIxYAS .navbar-caption {
  font-weight: 600!important;
}
.cid-tyLCWIxYAS .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyLCWIxYAS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyLCWIxYAS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyLCWIxYAS .dropdown-item.active,
.cid-tyLCWIxYAS .dropdown-item:active {
  background-color: transparent;
}
.cid-tyLCWIxYAS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tyLCWIxYAS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tyLCWIxYAS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tyLCWIxYAS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tyLCWIxYAS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyLCWIxYAS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tyLCWIxYAS .navbar-buttons {
  text-align: center;
}
.cid-tyLCWIxYAS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyLCWIxYAS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-tyLCWIxYAS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tyLCWIxYAS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tyLCWIxYAS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tyLCWIxYAS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tyLCWIxYAS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tyLCWIxYAS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tyLCWIxYAS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tyLCWIxYAS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tyLCWIxYAS .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tyLCWIxYAS .nav-link {
  font-weight: 600!important;
}
.cid-tyLCWIxYAS a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tyLCWIxYAS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tyLCWIxYAS .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tyLCWIxYAS .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyLCWIxYAS .navbar {
    height: 77px;
  }
  .cid-tyLCWIxYAS .navbar.opened {
    height: auto;
  }
  .cid-tyLCWIxYAS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyLCWIUr4m {
  padding-top: 210px;
  padding-bottom: 45px;
  background-color: #f9ecf8;
}
.cid-tyLCWIUr4m H1 {
  color: #000000;
}
.cid-tyLCWIUr4m .mbr-text,
.cid-tyLCWIUr4m .mbr-section-btn {
  color: #000000;
}
.cid-tyLCWIUr4m H3 {
  color: #716c80;
}
.cid-tyLDdB5LbM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tyLDdB5LbM img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tyLDdB5LbM H1 {
  color: #57468b;
}
.cid-tyLDdB5LbM .mbr-text,
.cid-tyLDdB5LbM .mbr-section-btn {
  color: #716c80;
}
.cid-tyLDdB5LbM H3 {
  color: #716c80;
}
.cid-tyLDdB5LbM .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tyLDdB5LbM .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tyLDdB5LbM .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tyLDdB5LbM .link:hover {
  color: #e83e8c !important;
}
.cid-tyLDdB5LbM .link:hover .link-ico {
  color: #e83e8c !important;
  padding-left: 10px;
}
.cid-tyLDdB5LbM DIV {
  color: #57468b;
}
.cid-tyLDdB5LbM .mbr-text,
.cid-tyLDdB5LbM .media-content {
  color: #000000;
}
.cid-tIW9DNr1Zi {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIW9DNr1Zi section {
  position: relative;
}
.cid-tIW9DNr1Zi .container {
  max-width: 1400px;
}
.cid-tIW9DNr1Zi .card-img2 span {
  padding-top: 6px;
}
.cid-tIW9DNr1Zi .soc-item a {
  padding-top: 5px;
}
.cid-tIW9DNr1Zi .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIW9DNr1Zi .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIW9DNr1Zi .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIW9DNr1Zi .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIW9DNr1Zi .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-tIW9DNr1Zi .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIW9DNr1Zi .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIW9DNr1Zi .soc-item span {
  font-size: 1.4rem;
}
.cid-tIW9DNr1Zi .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIW9DNr1Zi .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIW9DNr1Zi .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIW9DNr1Zi .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIW9DNr1Zi .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIW9DNr1Zi img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIW9DNr1Zi .item {
    justify-content: center;
  }
  .cid-tIW9DNr1Zi .quote::after {
    left: 60px;
  }
}
.cid-tIW9DNr1Zi .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIW9DNr1Zi .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIW9DNr1Zi .text1 {
  color: #232323;
}
.cid-tIW9DNr1Zi .item-title {
  color: #232323;
}
.cid-tIW9DNr1Zi H5 {
  color: #232323;
}
.cid-tIW9DNr1Zi .theme {
  color: #ffffff;
}
.cid-tIW9DNr1Zi .copyright > p {
  color: #ff3366;
}
.cid-tIW9DNr1Zi .text2 {
  color: #232323;
}
.cid-tz2hKkE5Y3 .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-tz2hKkE5Y3 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tz2hKkE5Y3 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tz2hKkE5Y3 .nav-item:focus,
.cid-tz2hKkE5Y3 .nav-link:focus {
  outline: none;
}
.cid-tz2hKkE5Y3 .text-white:hover,
.cid-tz2hKkE5Y3 .text-white:active,
.cid-tz2hKkE5Y3 .text-white:focus {
  color: white!important;
}
.cid-tz2hKkE5Y3 .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tz2hKkE5Y3 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tz2hKkE5Y3 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tz2hKkE5Y3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tz2hKkE5Y3 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tz2hKkE5Y3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tz2hKkE5Y3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tz2hKkE5Y3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tz2hKkE5Y3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tz2hKkE5Y3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tz2hKkE5Y3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tz2hKkE5Y3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tz2hKkE5Y3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tz2hKkE5Y3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tz2hKkE5Y3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tz2hKkE5Y3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tz2hKkE5Y3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tz2hKkE5Y3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tz2hKkE5Y3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tz2hKkE5Y3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tz2hKkE5Y3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tz2hKkE5Y3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tz2hKkE5Y3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tz2hKkE5Y3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-tz2hKkE5Y3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tz2hKkE5Y3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tz2hKkE5Y3 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tz2hKkE5Y3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tz2hKkE5Y3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tz2hKkE5Y3 .section {
  position: relative;
  overflow: visible!important;
}
.cid-tz2hKkE5Y3 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tz2hKkE5Y3 .dropdown-item:hover {
  color: black!important;
}
.cid-tz2hKkE5Y3 .dropdown-menu {
  background-color: white!important;
}
.cid-tz2hKkE5Y3 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-tz2hKkE5Y3 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tz2hKkE5Y3 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tz2hKkE5Y3 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tz2hKkE5Y3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tz2hKkE5Y3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tz2hKkE5Y3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tz2hKkE5Y3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tz2hKkE5Y3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tz2hKkE5Y3 .collapsed {
  flex-direction: row!important;
}
.cid-tz2hKkE5Y3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tz2hKkE5Y3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tz2hKkE5Y3 .navbar-caption {
  font-weight: 600!important;
}
.cid-tz2hKkE5Y3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tz2hKkE5Y3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tz2hKkE5Y3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tz2hKkE5Y3 .dropdown-item.active,
.cid-tz2hKkE5Y3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tz2hKkE5Y3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tz2hKkE5Y3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tz2hKkE5Y3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tz2hKkE5Y3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tz2hKkE5Y3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tz2hKkE5Y3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tz2hKkE5Y3 .navbar-buttons {
  text-align: center;
}
.cid-tz2hKkE5Y3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz2hKkE5Y3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-tz2hKkE5Y3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tz2hKkE5Y3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tz2hKkE5Y3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tz2hKkE5Y3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tz2hKkE5Y3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tz2hKkE5Y3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tz2hKkE5Y3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tz2hKkE5Y3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tz2hKkE5Y3 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tz2hKkE5Y3 .nav-link {
  font-weight: 600!important;
}
.cid-tz2hKkE5Y3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tz2hKkE5Y3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tz2hKkE5Y3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tz2hKkE5Y3 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tz2hKkE5Y3 .navbar {
    height: 77px;
  }
  .cid-tz2hKkE5Y3 .navbar.opened {
    height: auto;
  }
  .cid-tz2hKkE5Y3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tz2hKlnoHj {
  padding-top: 165px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tz2hKlnoHj section {
  position: relative;
}
.cid-tz2hKlnoHj svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-tz2hKlnoHj H1 {
  color: #232323;
}
.cid-tz2hKlnoHj .mbr-text,
.cid-tz2hKlnoHj .mbr-section-btn {
  color: #232323;
}
.cid-tz2hKlnoHj #e1_ellipse {
  fill: #f9ecf8 !important;
}
.cid-tz2hKlnoHj img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
}
@media (max-width: 576px) {
  .cid-tz2hKlnoHj img {
    width: 100%;
  }
}
.cid-tz2hKlnoHj p {
  text-align: justify;
}
.cid-tz2hKlnoHj H3 {
  color: #232323;
}
.cid-tz2hKlDhwB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tz2hKlDhwB H1 {
  color: #000000;
}
.cid-tz2hKlDhwB .align-left {
  margin: auto;
}
.cid-tz2hKlDhwB .row {
  justify-content: space-between;
}
.cid-tz2hKlDhwB .mbr-text,
.cid-tz2hKlDhwB .mbr-section-btn {
  color: #716c80;
}
.cid-tz2hKlDhwB .block-border {
  border-left: 2px solid #efefef;
  padding-left: 4rem;
}
.cid-tz2hKlDhwB .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tz2hKlDhwB .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tz2hKlDhwB .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tz2hKlDhwB .link:hover {
  color: #e83e8c !important;
}
.cid-tz2hKlDhwB .link:hover .link-ico {
  color: #e83e8c !important;
  padding-left: 10px;
}
.cid-tz2hKlDhwB DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tz2hKlDhwB .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tz2hKlDhwB h1 {
    padding-bottom: 1rem;
  }
}
.cid-tz2hKlDhwB .mbr-text,
.cid-tz2hKlDhwB .media-content {
  color: #000000;
}
.cid-tz2jgobp3K {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #f9ecf8;
  position: relative;
  overflow: hidden;
}
.cid-tz2jgobp3K .container {
  max-width: 1400px;
}
.cid-tz2jgobp3K svg {
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(-1.9, 1.3);
}
.cid-tz2jgobp3K #e1_ellipse {
  fill: #ffffff !important;
}
.cid-tz2jgobp3K .mbr-text {
  color: #000000;
}
.cid-tz2jgobp3K .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-tz2jgobp3K .card-img .img1 {
  background-color: #e62e3c;
}
.cid-tz2jgobp3K .card-img .img2 {
  background-color: #e62e3c;
}
.cid-tz2jgobp3K .card-img .img3 {
  background-color: #e62e3c;
}
.cid-tz2jgobp3K .card-img .img4 {
  background-color: #e62e3c;
}
.cid-tz2jgobp3K .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-tz2jgobp3K .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-tz2jgobp3K .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
  background-color: #ffffff;
}
.cid-tz2jgobp3K .card-title,
.cid-tz2jgobp3K .card-img {
  color: #57468b;
}
.cid-tz2jgobp3K img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-tz2jgobp3K img {
    margin-bottom: 3rem;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-tz2jgobp3K .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem!important;
  }
  .cid-tz2jgobp3K .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-tz2jgobp3K .card:hover {
    box-shadow: none;
    transform: none;
    background-color: transparent;
  }
  .cid-tz2jgobp3K .card-img span {
    margin-right: 0rem;
  }
  .cid-tz2jgobp3K svg {
    top: -9rem;
  }
}
.cid-tz2jgobp3K .card-img {
  width: auto;
}
.cid-tz2jgobp3K .card-title {
  color: #232323;
}
.cid-tz2o0igA1B {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tz2o0igA1B .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-tz2o0igA1B .content-panel {
  padding: 3rem;
  background-color: #444444;
}
@media (min-width: 767px) {
  .cid-tz2o0igA1B .text-block {
    padding-right: 0;
  }
}
.cid-tz2o0igA1B .google-map {
  width: 100%;
  height: 30rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-tz2o0igA1B .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tz2o0igA1B .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-tz2o0igA1B .google-map .place-card {
  margin-left: 40px !important;
}
.cid-tz2hKn0BTg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/shutterstock-587762948-2000x682.webp");
}
.cid-tz2hKn0BTg H1 {
  color: #000000;
  text-align: center;
}
.cid-tz2hKn0BTg .mbr-text,
.cid-tz2hKn0BTg .mbr-section-btn {
  color: #000000;
}
.cid-tz2hKn0BTg .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tz2hKn0BTg .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-tz2hKn0BTg .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-tz2hKn0BTg h3,
.cid-tz2hKn0BTg h4 {
  margin: 0;
  padding: 0;
}
.cid-tz2hKn0BTg H3 {
  color: #ffffff;
}
.cid-tz2hKn0BTg H4 {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tz2hKn0BTg .author-box {
    justify-content: center;
  }
}
.cid-tz2hKn0BTg p {
  text-align: center !important;
}
.cid-tIWag7cNRj {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIWag7cNRj section {
  position: relative;
}
.cid-tIWag7cNRj .container {
  max-width: 1400px;
}
.cid-tIWag7cNRj .card-img2 span {
  padding-top: 6px;
}
.cid-tIWag7cNRj .soc-item a {
  padding-top: 5px;
}
.cid-tIWag7cNRj .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIWag7cNRj .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIWag7cNRj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIWag7cNRj .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIWag7cNRj .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-tIWag7cNRj .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIWag7cNRj .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIWag7cNRj .soc-item span {
  font-size: 1.4rem;
}
.cid-tIWag7cNRj .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIWag7cNRj .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIWag7cNRj .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIWag7cNRj .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIWag7cNRj .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIWag7cNRj img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIWag7cNRj .item {
    justify-content: center;
  }
  .cid-tIWag7cNRj .quote::after {
    left: 60px;
  }
}
.cid-tIWag7cNRj .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIWag7cNRj .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIWag7cNRj .text1 {
  color: #232323;
}
.cid-tIWag7cNRj .item-title {
  color: #232323;
}
.cid-tIWag7cNRj H5 {
  color: #232323;
}
.cid-tIWag7cNRj .theme {
  color: #ffffff;
}
.cid-tIWag7cNRj .copyright > p {
  color: #ff3366;
}
.cid-tIWag7cNRj .text2 {
  color: #232323;
}
.cid-tDRS5JCTfX .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-tDRS5JCTfX .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tDRS5JCTfX .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tDRS5JCTfX .nav-item:focus,
.cid-tDRS5JCTfX .nav-link:focus {
  outline: none;
}
.cid-tDRS5JCTfX .text-white:hover,
.cid-tDRS5JCTfX .text-white:active,
.cid-tDRS5JCTfX .text-white:focus {
  color: white!important;
}
.cid-tDRS5JCTfX .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tDRS5JCTfX .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tDRS5JCTfX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tDRS5JCTfX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tDRS5JCTfX .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tDRS5JCTfX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDRS5JCTfX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tDRS5JCTfX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tDRS5JCTfX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDRS5JCTfX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDRS5JCTfX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tDRS5JCTfX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDRS5JCTfX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tDRS5JCTfX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tDRS5JCTfX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDRS5JCTfX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDRS5JCTfX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tDRS5JCTfX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDRS5JCTfX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDRS5JCTfX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tDRS5JCTfX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tDRS5JCTfX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDRS5JCTfX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDRS5JCTfX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-tDRS5JCTfX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tDRS5JCTfX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tDRS5JCTfX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tDRS5JCTfX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tDRS5JCTfX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tDRS5JCTfX .section {
  position: relative;
  overflow: visible!important;
}
.cid-tDRS5JCTfX .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tDRS5JCTfX .dropdown-item:hover {
  color: black!important;
}
.cid-tDRS5JCTfX .dropdown-menu {
  background-color: white!important;
}
.cid-tDRS5JCTfX .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-tDRS5JCTfX .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tDRS5JCTfX .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tDRS5JCTfX .nav-item .nav-link {
    position: relative;
  }
}
.cid-tDRS5JCTfX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tDRS5JCTfX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDRS5JCTfX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tDRS5JCTfX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tDRS5JCTfX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tDRS5JCTfX .collapsed {
  flex-direction: row!important;
}
.cid-tDRS5JCTfX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDRS5JCTfX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDRS5JCTfX .navbar-caption {
  font-weight: 600!important;
}
.cid-tDRS5JCTfX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDRS5JCTfX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDRS5JCTfX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDRS5JCTfX .dropdown-item.active,
.cid-tDRS5JCTfX .dropdown-item:active {
  background-color: transparent;
}
.cid-tDRS5JCTfX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDRS5JCTfX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDRS5JCTfX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDRS5JCTfX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDRS5JCTfX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDRS5JCTfX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tDRS5JCTfX .navbar-buttons {
  text-align: center;
}
.cid-tDRS5JCTfX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tDRS5JCTfX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-tDRS5JCTfX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDRS5JCTfX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDRS5JCTfX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDRS5JCTfX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDRS5JCTfX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDRS5JCTfX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDRS5JCTfX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDRS5JCTfX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDRS5JCTfX .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tDRS5JCTfX .nav-link {
  font-weight: 600!important;
}
.cid-tDRS5JCTfX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tDRS5JCTfX .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tDRS5JCTfX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tDRS5JCTfX .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDRS5JCTfX .navbar {
    height: 77px;
  }
  .cid-tDRS5JCTfX .navbar.opened {
    height: auto;
  }
  .cid-tDRS5JCTfX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDRS5JZDeu {
  padding-top: 165px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tDRS5JZDeu section {
  position: relative;
}
.cid-tDRS5JZDeu svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8, 1.8);
}
.cid-tDRS5JZDeu H1 {
  color: #232323;
}
.cid-tDRS5JZDeu .mbr-text,
.cid-tDRS5JZDeu .mbr-section-btn {
  color: #232323;
}
.cid-tDRS5JZDeu #e1_ellipse {
  fill: #f9ecf8 !important;
}
.cid-tDRS5JZDeu img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
}
@media (max-width: 576px) {
  .cid-tDRS5JZDeu img {
    width: 100%;
  }
}
.cid-tDRS5JZDeu p {
  text-align: justify;
}
.cid-tDRS5JZDeu H3 {
  color: #232323;
}
.cid-tDRS5KfOId {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tDRS5KfOId H1 {
  color: #000000;
}
.cid-tDRS5KfOId .align-left {
  margin: auto;
}
.cid-tDRS5KfOId .row {
  justify-content: space-between;
}
.cid-tDRS5KfOId .mbr-text,
.cid-tDRS5KfOId .mbr-section-btn {
  color: #716c80;
}
.cid-tDRS5KfOId .block-border {
  border-left: 2px solid #efefef;
  padding-left: 4rem;
}
.cid-tDRS5KfOId .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tDRS5KfOId .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tDRS5KfOId .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tDRS5KfOId .link:hover {
  color: #e83e8c !important;
}
.cid-tDRS5KfOId .link:hover .link-ico {
  color: #e83e8c !important;
  padding-left: 10px;
}
.cid-tDRS5KfOId DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tDRS5KfOId .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tDRS5KfOId h1 {
    padding-bottom: 1rem;
  }
}
.cid-tDRS5KfOId .mbr-text,
.cid-tDRS5KfOId .media-content {
  color: #000000;
}
.cid-tDRS5Ksun4 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #f9ecf8;
  position: relative;
  overflow: hidden;
}
.cid-tDRS5Ksun4 .container {
  max-width: 1400px;
}
.cid-tDRS5Ksun4 svg {
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(-1.9, 1.3);
}
.cid-tDRS5Ksun4 #e1_ellipse {
  fill: #ffffff !important;
}
.cid-tDRS5Ksun4 .mbr-text {
  color: #000000;
}
.cid-tDRS5Ksun4 .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-tDRS5Ksun4 .card-img .img1 {
  background-color: #e62e3c;
}
.cid-tDRS5Ksun4 .card-img .img2 {
  background-color: #e62e3c;
}
.cid-tDRS5Ksun4 .card-img .img3 {
  background-color: #e62e3c;
}
.cid-tDRS5Ksun4 .card-img .img4 {
  background-color: #e62e3c;
}
.cid-tDRS5Ksun4 .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-tDRS5Ksun4 .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-tDRS5Ksun4 .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
  background-color: #ffffff;
}
.cid-tDRS5Ksun4 .card-title,
.cid-tDRS5Ksun4 .card-img {
  color: #57468b;
}
.cid-tDRS5Ksun4 img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-tDRS5Ksun4 img {
    margin-bottom: 3rem;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-tDRS5Ksun4 .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem!important;
  }
  .cid-tDRS5Ksun4 .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-tDRS5Ksun4 .card:hover {
    box-shadow: none;
    transform: none;
    background-color: transparent;
  }
  .cid-tDRS5Ksun4 .card-img span {
    margin-right: 0rem;
  }
  .cid-tDRS5Ksun4 svg {
    top: -9rem;
  }
}
.cid-tDRS5Ksun4 .card-img {
  width: auto;
}
.cid-tDRS5Ksun4 .card-title {
  color: #232323;
}
.cid-tDRS5KQnBk {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tDRS5KQnBk .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-tDRS5KQnBk .content-panel {
  padding: 3rem;
  background-color: #444444;
}
@media (min-width: 767px) {
  .cid-tDRS5KQnBk .text-block {
    padding-right: 0;
  }
}
.cid-tDRS5KQnBk .google-map {
  width: 100%;
  height: 30rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-tDRS5KQnBk .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tDRS5KQnBk .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-tDRS5KQnBk .google-map .place-card {
  margin-left: 40px !important;
}
.cid-tDRS5LoOVU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/shutterstock-587762948-2000x682.webp");
}
.cid-tDRS5LoOVU H1 {
  color: #000000;
  text-align: center;
}
.cid-tDRS5LoOVU .mbr-text,
.cid-tDRS5LoOVU .mbr-section-btn {
  color: #000000;
}
.cid-tDRS5LoOVU .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tDRS5LoOVU .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-tDRS5LoOVU .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-tDRS5LoOVU h3,
.cid-tDRS5LoOVU h4 {
  margin: 0;
  padding: 0;
}
.cid-tDRS5LoOVU H3 {
  color: #ffffff;
}
.cid-tDRS5LoOVU H4 {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tDRS5LoOVU .author-box {
    justify-content: center;
  }
}
.cid-tDRS5LoOVU p {
  text-align: center !important;
}
.cid-tIWaw68KDH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIWaw68KDH section {
  position: relative;
}
.cid-tIWaw68KDH .container {
  max-width: 1400px;
}
.cid-tIWaw68KDH .card-img2 span {
  padding-top: 6px;
}
.cid-tIWaw68KDH .soc-item a {
  padding-top: 5px;
}
.cid-tIWaw68KDH .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIWaw68KDH .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIWaw68KDH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIWaw68KDH .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIWaw68KDH .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-tIWaw68KDH .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIWaw68KDH .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIWaw68KDH .soc-item span {
  font-size: 1.4rem;
}
.cid-tIWaw68KDH .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIWaw68KDH .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIWaw68KDH .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIWaw68KDH .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIWaw68KDH .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIWaw68KDH img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIWaw68KDH .item {
    justify-content: center;
  }
  .cid-tIWaw68KDH .quote::after {
    left: 60px;
  }
}
.cid-tIWaw68KDH .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIWaw68KDH .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIWaw68KDH .text1 {
  color: #232323;
}
.cid-tIWaw68KDH .item-title {
  color: #232323;
}
.cid-tIWaw68KDH H5 {
  color: #232323;
}
.cid-tIWaw68KDH .theme {
  color: #ffffff;
}
.cid-tIWaw68KDH .copyright > p {
  color: #ff3366;
}
.cid-tIWaw68KDH .text2 {
  color: #232323;
}
.cid-rD9VukkgFg .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-rD9VukkgFg .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rD9VukkgFg .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-rD9VukkgFg .nav-item:focus,
.cid-rD9VukkgFg .nav-link:focus {
  outline: none;
}
.cid-rD9VukkgFg .text-white:hover,
.cid-rD9VukkgFg .text-white:active,
.cid-rD9VukkgFg .text-white:focus {
  color: white!important;
}
.cid-rD9VukkgFg .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rD9VukkgFg .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-rD9VukkgFg .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rD9VukkgFg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rD9VukkgFg .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-rD9VukkgFg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rD9VukkgFg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rD9VukkgFg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rD9VukkgFg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rD9VukkgFg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rD9VukkgFg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rD9VukkgFg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rD9VukkgFg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rD9VukkgFg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-rD9VukkgFg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rD9VukkgFg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rD9VukkgFg .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rD9VukkgFg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rD9VukkgFg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rD9VukkgFg .section {
  position: relative;
  overflow: visible!important;
}
.cid-rD9VukkgFg .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-rD9VukkgFg .dropdown-item:hover {
  color: black!important;
}
.cid-rD9VukkgFg .dropdown-menu {
  background-color: white!important;
}
.cid-rD9VukkgFg .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-rD9VukkgFg .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rD9VukkgFg .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-rD9VukkgFg .nav-item .nav-link {
    position: relative;
  }
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rD9VukkgFg .collapsed {
  flex-direction: row!important;
}
.cid-rD9VukkgFg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rD9VukkgFg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rD9VukkgFg .navbar-caption {
  font-weight: 600!important;
}
.cid-rD9VukkgFg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rD9VukkgFg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rD9VukkgFg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rD9VukkgFg .dropdown-item.active,
.cid-rD9VukkgFg .dropdown-item:active {
  background-color: transparent;
}
.cid-rD9VukkgFg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rD9VukkgFg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rD9VukkgFg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rD9VukkgFg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rD9VukkgFg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rD9VukkgFg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rD9VukkgFg .navbar-buttons {
  text-align: center;
}
.cid-rD9VukkgFg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rD9VukkgFg .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rD9VukkgFg .nav-link {
  font-weight: 600!important;
}
.cid-rD9VukkgFg a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rD9VukkgFg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rD9VukkgFg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rD9VukkgFg .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rD9VukkgFg .navbar {
    height: 77px;
  }
  .cid-rD9VukkgFg .navbar.opened {
    height: auto;
  }
  .cid-rD9VukkgFg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIW5yjHwOG {
  padding-top: 135px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tIW5yjHwOG .box {
  max-width: 700px;
  margin: auto;
  padding: 0 3rem;
}
.cid-tIW5yjHwOG .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIW5yjHwOG .btn:hover,
.cid-tIW5yjHwOG .btn:active {
  box-shadow: none!important;
}
.cid-tIW5yjHwOG .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-tIW5yjHwOG .mbr-section-subtitle {
  color: black;
}
.cid-tIW5yjHwOG .img-col {
  padding: 0;
}
.cid-tIW5yjHwOG img {
  max-height: 30vh;
  object-fit: cover;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-tIW5yjHwOG .box {
    padding: 2rem;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-tIW5yjHwOG .box {
    padding: 1rem;
  }
}
.cid-tIW5yjHwOG .mbr-section-title {
  color: #232323;
}
.cid-tIW4HiltNv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIW4HiltNv section {
  position: relative;
}
.cid-tIW4HiltNv .container {
  max-width: 1400px;
}
.cid-tIW4HiltNv .card-img2 span {
  padding-top: 6px;
}
.cid-tIW4HiltNv .soc-item a {
  padding-top: 5px;
}
.cid-tIW4HiltNv .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIW4HiltNv .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIW4HiltNv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIW4HiltNv .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIW4HiltNv .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-tIW4HiltNv .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIW4HiltNv .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIW4HiltNv .soc-item span {
  font-size: 1.4rem;
}
.cid-tIW4HiltNv .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIW4HiltNv .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIW4HiltNv .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIW4HiltNv .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIW4HiltNv .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIW4HiltNv img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIW4HiltNv .item {
    justify-content: center;
  }
  .cid-tIW4HiltNv .quote::after {
    left: 60px;
  }
}
.cid-tIW4HiltNv .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIW4HiltNv .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIW4HiltNv .text1 {
  color: #232323;
}
.cid-tIW4HiltNv .item-title {
  color: #232323;
}
.cid-tIW4HiltNv H5 {
  color: #232323;
}
.cid-tIW4HiltNv .theme {
  color: #ffffff;
}
.cid-tIW4HiltNv .copyright > p {
  color: #ff3366;
}
.cid-tIW4HiltNv .text2 {
  color: #232323;
}
.cid-rD9VukkgFg .navbar-logo {
  margin: 0!important;
  padding-left: 50px!important;
}
.cid-rD9VukkgFg .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rD9VukkgFg .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-rD9VukkgFg .nav-item:focus,
.cid-rD9VukkgFg .nav-link:focus {
  outline: none;
}
.cid-rD9VukkgFg .text-white:hover,
.cid-rD9VukkgFg .text-white:active,
.cid-rD9VukkgFg .text-white:focus {
  color: white!important;
}
.cid-rD9VukkgFg .navbar {
  max-width: 1200px;
  margin: auto;
  margin-top: -10px;
  opacity: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rD9VukkgFg .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-rD9VukkgFg .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rD9VukkgFg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rD9VukkgFg .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-rD9VukkgFg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rD9VukkgFg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rD9VukkgFg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rD9VukkgFg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rD9VukkgFg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rD9VukkgFg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rD9VukkgFg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rD9VukkgFg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rD9VukkgFg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rD9VukkgFg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rD9VukkgFg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 21px 0;
  }
  .cid-rD9VukkgFg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rD9VukkgFg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rD9VukkgFg .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rD9VukkgFg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rD9VukkgFg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rD9VukkgFg .section {
  position: relative;
  overflow: visible!important;
}
.cid-rD9VukkgFg .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-rD9VukkgFg .dropdown-item:hover {
  color: black!important;
}
.cid-rD9VukkgFg .dropdown-menu {
  background-color: white!important;
}
.cid-rD9VukkgFg .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(100, 100, 100, 0.35);
  display: block;
}
.cid-rD9VukkgFg .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #e62e3c !important;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rD9VukkgFg .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-rD9VukkgFg .nav-item .nav-link {
    position: relative;
  }
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rD9VukkgFg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rD9VukkgFg .collapsed {
  flex-direction: row!important;
}
.cid-rD9VukkgFg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rD9VukkgFg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rD9VukkgFg .navbar-caption {
  font-weight: 600!important;
}
.cid-rD9VukkgFg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 21px 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rD9VukkgFg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rD9VukkgFg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rD9VukkgFg .dropdown-item.active,
.cid-rD9VukkgFg .dropdown-item:active {
  background-color: transparent;
}
.cid-rD9VukkgFg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rD9VukkgFg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rD9VukkgFg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rD9VukkgFg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rD9VukkgFg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rD9VukkgFg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rD9VukkgFg .navbar-buttons {
  text-align: center;
}
.cid-rD9VukkgFg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e62e3c;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rD9VukkgFg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rD9VukkgFg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rD9VukkgFg .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rD9VukkgFg .nav-link {
  font-weight: 600!important;
}
.cid-rD9VukkgFg a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rD9VukkgFg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rD9VukkgFg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rD9VukkgFg .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rD9VukkgFg .navbar {
    height: 77px;
  }
  .cid-rD9VukkgFg .navbar.opened {
    height: auto;
  }
  .cid-rD9VukkgFg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIW01qqPlE {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIW01qqPlE .box {
  max-width: 700px;
  margin: auto;
  padding: 0 3rem;
}
.cid-tIW01qqPlE .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIW01qqPlE .btn:hover,
.cid-tIW01qqPlE .btn:active {
  box-shadow: none!important;
}
.cid-tIW01qqPlE .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-tIW01qqPlE .mbr-section-subtitle {
  color: black;
}
.cid-tIW01qqPlE .img-col {
  padding: 0;
}
.cid-tIW01qqPlE img {
  object-fit: cover;
  width: 60%;
}
@media (max-width: 992px) {
  .cid-tIW01qqPlE .box {
    padding: 2rem;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-tIW01qqPlE .box {
    padding: 1rem;
  }
}
.cid-tIW01qqPlE .mbr-section-title {
  color: #232323;
}
.cid-tIW383zYgg {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIW383zYgg section {
  position: relative;
}
.cid-tIW383zYgg .container {
  max-width: 1400px;
}
.cid-tIW383zYgg .card-img2 span {
  padding-top: 6px;
}
.cid-tIW383zYgg .soc-item a {
  padding-top: 5px;
}
.cid-tIW383zYgg .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tIW383zYgg .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-tIW383zYgg .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tIW383zYgg .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tIW383zYgg .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-tIW383zYgg .card-img2 {
  width: 45px;
  height: 45px;
  background: #5580ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tIW383zYgg .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tIW383zYgg .soc-item span {
  font-size: 1.4rem;
}
.cid-tIW383zYgg .soc-item:hover span {
  color: #e83e8c !important;
}
.cid-tIW383zYgg .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tIW383zYgg .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tIW383zYgg .media-wrap {
  margin-bottom: 1rem;
}
.cid-tIW383zYgg .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tIW383zYgg img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tIW383zYgg .item {
    justify-content: center;
  }
  .cid-tIW383zYgg .quote::after {
    left: 60px;
  }
}
.cid-tIW383zYgg .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tIW383zYgg .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIW383zYgg .text1 {
  color: #232323;
}
.cid-tIW383zYgg .item-title {
  color: #232323;
}
.cid-tIW383zYgg H5 {
  color: #232323;
}
.cid-tIW383zYgg .theme {
  color: #ffffff;
}
.cid-tIW383zYgg .copyright > p {
  color: #ff3366;
}
.cid-tIW383zYgg .text2 {
  color: #232323;
}
