body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #5d3d8b !important;
}
.bg-success {
  background-color: #0eae9a !important;
}
.bg-info {
  background-color: #fec656 !important;
}
.bg-warning {
  background-color: #ee488c !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #5d3d8b !important;
  border-color: #5d3d8b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #392656 !important;
  border-color: #392656 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #392656 !important;
  border-color: #392656 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #5acbf5 !important;
  border-color: #5acbf5 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #12b4f1 !important;
  border-color: #12b4f1 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #12b4f1 !important;
  border-color: #12b4f1 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #fec656 !important;
  border-color: #fec656 !important;
  color: #553900 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #553900 !important;
  background-color: #feac0a !important;
  border-color: #feac0a !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #553900 !important;
  background-color: #feac0a !important;
  border-color: #feac0a !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #0eae9a !important;
  border-color: #0eae9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #08675b !important;
  border-color: #08675b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #08675b !important;
  border-color: #08675b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #ee488c !important;
  border-color: #ee488c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #d61463 !important;
  border-color: #d61463 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #d61463 !important;
  border-color: #d61463 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  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-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #2e1e44;
  color: #2e1e44 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #5d3d8b;
  border-color: #5d3d8b;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5d3d8b !important;
  border-color: #5d3d8b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #0da4dc;
  color: #0da4dc !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #5acbf5;
  border-color: #5acbf5;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5acbf5 !important;
  border-color: #5acbf5 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #ed9e01;
  color: #ed9e01 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #553900 !important;
  background-color: #fec656;
  border-color: #fec656;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #553900 !important;
  background-color: #fec656 !important;
  border-color: #fec656 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #065046;
  color: #065046 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #0eae9a;
  border-color: #0eae9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0eae9a !important;
  border-color: #0eae9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #be1258;
  color: #be1258 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #ee488c;
  border-color: #ee488c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ee488c !important;
  border-color: #ee488c !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  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,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #5d3d8b !important;
}
.text-secondary {
  color: #5acbf5 !important;
}
.text-success {
  color: #0eae9a !important;
}
.text-info {
  color: #fec656 !important;
}
.text-warning {
  color: #ee488c !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: #2e1e44 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0da4dc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #065046 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ed9e01 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #be1258 !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: #0eae9a;
}
.alert-info {
  background-color: #fec656;
}
.alert-warning {
  background-color: #ee488c;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5d3d8b;
  border-color: #5d3d8b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #5d3d8b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9d80c7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4bf1dc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #5d3d8b;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5d3d8b;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #5d3d8b;
  border-bottom-color: #5d3d8b;
}
.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: #5d3d8b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #5acbf5 !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='%235d3d8b' %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-sx8FerK7qQ .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sx8FerK7qQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sx8FerK7qQ a {
  font-style: normal;
}
.cid-sx8FerK7qQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sx8FerK7qQ .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sx8FerK7qQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-sx8FerK7qQ .content-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #5d3d8b;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sx8FerK7qQ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sx8FerK7qQ .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sx8FerK7qQ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .nav-dropdown .link {
  font-weight: 400;
}
.cid-sx8FerK7qQ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sx8FerK7qQ .content-right-side {
  text-align: center;
}
.cid-sx8FerK7qQ .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sx8FerK7qQ .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sx8FerK7qQ img {
    height: 1rem !important;
  }
  .cid-sx8FerK7qQ .btn {
    display: -webkit-flex;
  }
  .cid-sx8FerK7qQ button.navbar-toggler {
    display: block;
  }
  .cid-sx8FerK7qQ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sx8FerK7qQ .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing,
  .cid-sx8FerK7qQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sx8FerK7qQ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sx8FerK7qQ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sx8FerK7qQ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sx8FerK7qQ .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sx8FerK7qQ .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sx8FerK7qQ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sx8FerK7qQ .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sx8FerK7qQ .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sx8FerK7qQ .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sx8FerK7qQ .navbar {
    display: block;
    padding: 0;
  }
  .cid-sx8FerK7qQ .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sx8FerK7qQ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sx8FerK7qQ .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sx8FerK7qQ .navbar-toggler {
    display: none;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx8FerK7qQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sx8FerK7qQ .menu-logo {
  margin-right: auto;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8FerK7qQ .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-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sx8FerK7qQ .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sx8FerK7qQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ button.navbar-toggler:focus {
  outline: none;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sx8FerK7qQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sx8FerK7qQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sx8FerK7qQ .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sx8FerK7qQ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sx8FerK7qQ .nav-link:focus {
  outline: none;
}
.cid-sx8FerK7qQ .navbar-toggler {
  position: relative;
}
.cid-sx8FerK7qQ .dropdown-item.active,
.cid-sx8FerK7qQ .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sx8FerK7qQ .nav-link:hover,
.cid-sx8FerK7qQ .dropdown-item:hover {
  color: #4284df;
}
.cid-sx8FerK7qQ .widget-title,
.cid-sx8FerK7qQ .widget-icon {
  color: #777d74;
}
.cid-sx8FerK7qQ .widget-text {
  color: #777d74;
}
.cid-sQbGsY4bvE {
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/istock-1060937270-1254x837.jpg");
}
.cid-sQbGsY4bvE .mbr-section-title {
  margin: 0;
}
.cid-sQbGsY4bvE .container-fluid {
  padding: 0 0rem;
}
.cid-sQbGsY4bvE .underline .line {
  width: 1.5rem;
  height: 3px;
  background: linear-gradient(to right, #5d3d8b, #5acbf5);
  display: inline-block;
}
.cid-sQbGsY4bvE .row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQbGsY4bvE .form-1 {
  background-color: #e4d295;
  padding: 1.5rem;
  border-radius: 5px;
  margin-right: 10px;
}
.cid-sQbGsY4bvE .form-control-label {
  color: #000000;
}
.cid-sQbGsY4bvE .form-group {
  margin-bottom: 1.3em;
}
.cid-sQbGsY4bvE .form-control {
  background-color: #ffffff;
  border-radius: 10px;
  width: 100%;
  padding: .5rem .5rem;
}
.cid-sQbGsY4bvE input.form-control {
  border: 1px solid #ddd;
  min-height: 42px;
}
.cid-sQbGsY4bvE textarea.form-control {
  padding: .5rem;
}
.cid-sQbGsY4bvE .input-group-btn .btn {
  padding: 1rem 4rem;
}
.cid-sQbGsY4bvE .mbr-section-btn .btn {
  margin-left: 4px !important;
}
@media (min-width: 992px) {
  .cid-sQbGsY4bvE .container-fluid {
    padding: 0 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQbGsY4bvE .underline .line {
    height: 2px;
  }
  .cid-sQbGsY4bvE .text-element {
    padding-bottom: 1rem;
  }
  .cid-sQbGsY4bvE .form-1 {
    pading: .5rem;
    margin: .5rem;
  }
}
.cid-sQbGsY4bvE LABEL {
  color: #ffffff;
}
.cid-sQbGsY4bvE H3 {
  color: #ffffff;
  text-align: center;
}
.cid-sQbGsY4bvE .mbr-section-title,
.cid-sQbGsY4bvE .underline {
  text-align: left;
  color: #ffffff;
}
.cid-sQbIMwqba3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo02-1920x800.jpg");
}
.cid-sQbIMwqba3 .row {
  flex-direction: row-reverse;
}
.cid-sQbIMwqba3 .video-wrapper iframe {
  width: 100%;
}
.cid-sQbIMwqba3 .mbr-section-title,
.cid-sQbIMwqba3 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sQbIMwqba3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQbIMwqba3 .mbr-section-subtitle {
  color: #66458e;
}
.cid-sx8WvXcTij {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/nr-01-nova-treinamentos-1030x688.jpg");
}
.cid-sx8WvXcTij .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sx8WvXcTij .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sx8WvXcTij .card-img span {
  font-size: 100px;
}
.cid-sx8WvXcTij .mbr-text,
.cid-sx8WvXcTij .mbr-section-btn {
  color: #efefef;
  text-align: right;
}
.cid-sQfLpH2NIo {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  background-image: url("../../../assets/images/fundo04-1920x800.jpg");
}
.cid-sQfLpH2NIo .row {
  flex-direction: row-reverse;
}
.cid-sQfLpH2NIo .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQfLpH2NIo .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sQfLpH2NIo .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sQfLpH2NIo .align-bottom {
  margin-left: 3px;
  margin-bottom: 13px;
  padding-bottom: 10px;
}
.cid-sQfLpH2NIo .mbr-overlay {
  z-index: 1;
}
.cid-sQfLpH2NIo .carousel,
.cid-sQfLpH2NIo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sQfLpH2NIo .item-wrapper {
  width: 100%;
}
.cid-sQfLpH2NIo .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sQfLpH2NIo .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .cid-sQfLpH2NIo .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sQfLpH2NIo .carousel-control {
  top: 50%;
  width: 45px;
  height: 45px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #E8E8E8;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-sQfLpH2NIo .carousel-control span {
  color: #101019;
}
.cid-sQfLpH2NIo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .cid-sQfLpH2NIo .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
  }
}
.cid-sQfLpH2NIo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .cid-sQfLpH2NIo .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQfLpH2NIo .carousel-indicators {
    margin-left: 0;
    text-align: center;
  }
}
.cid-sQfLpH2NIo .carousel-indicators li {
  height: 8px;
  max-height: 8px;
  width: 8px;
  max-width: 8px;
  margin: 3px;
  background-color: #ffffff;
  border-radius: 50%;
}
.cid-sQfLpH2NIo .carousel-indicators li.active,
.cid-sQfLpH2NIo .carousel-indicators li:hover {
  opacity: 0.9;
  border: none;
  margin: 13px 3px;
}
.cid-sQfLpH2NIo .carousel-indicators li::after,
.cid-sQfLpH2NIo .carousel-indicators li::before {
  content: none;
}
.cid-sQfLpH2NIo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQfLpH2NIo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .cid-sQfLpH2NIo .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-sQfLpH2NIo .mbr-text,
.cid-sQfLpH2NIo .mbr-section-btn {
  color: #9b9ba5;
}
.cid-sQfLpH2NIo .mbr-section-title {
  color: #fec656;
}
.cid-sLUOwEbZcJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/fundo05-1920x800.jpg");
}
.cid-sLUOwEbZcJ .mbr-text {
  margin-top: 10px;
  margin-bottom: 50px;
  padding-right: 0px;
  text-align: center;
}
.cid-sLUOwEbZcJ .title__block {
  padding-left: 0px;
  margin-bottom: 20px;
}
.cid-sLUOwEbZcJ .title__block .mbr-section-title {
  justify-content: center;
  display: inline-block;
  margin-bottom: 35px;
}
.cid-sLUOwEbZcJ .carousel-item {
  justify-content: center;
  text-align: left;
}
.cid-sLUOwEbZcJ .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-sLUOwEbZcJ .carousel-item .slider__item {
  margin-right: 30px;
  position: relative;
  border-radius: 10px;
  border: 0px solid transparent;
  opacity: 1;
  transition: border .3s linear;
}
.cid-sLUOwEbZcJ .carousel-item .slider__item:hover {
  border: 0px solid #0eae9a;
}
.cid-sLUOwEbZcJ .carousel-item .slider__item:hover .slider__content {
  border: 0px solid transparent;
}
.cid-sLUOwEbZcJ .carousel-item .slider__item .slider__image {
  width: 100%;
}
.cid-sLUOwEbZcJ .carousel-item .slider__item .slider__image img {
  border-radius: 25px 25px 25px 25px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sLUOwEbZcJ .slider__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 250px;
  position: relative;
  padding: 20px 20px 20px;
  border-radius: 10 10 4px 4px;
  border: 0px solid #efefef;
  border-top: 0px solid transparent;
  transition: border .3s;
}
.cid-sLUOwEbZcJ .slider__content .slider__content-wrap {
  margin-bottom: 38px;
  min-height: 210px;
}
.cid-sLUOwEbZcJ .slider__content .slider__subtitle {
  margin-bottom: 8px;
  color: #0eae9a;
}
.cid-sLUOwEbZcJ .slider__content .slider__title {
  margin-bottom: 13px;
}
.cid-sLUOwEbZcJ .slider__content .slider__text {
  margin-bottom: 0;
}
.cid-sLUOwEbZcJ .mbr-section-btn {
  display: block;
  align-items: center;
  margin-bottom: 0;
  white-space: nowrap;
  text-align: center;
  color: #365c9a;
}
.cid-sLUOwEbZcJ .mbr-section-btn a {
  font-weight: 700;
}
.cid-sLUOwEbZcJ .mbr-section-btn span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-sLUOwEbZcJ .mbr-section-btn:hover span {
  transform: translateX(9px);
}
.cid-sLUOwEbZcJ .carousel-item.active,
.cid-sLUOwEbZcJ .carousel-item-next,
.cid-sLUOwEbZcJ .carousel-item-prev {
  display: flex;
}
.cid-sLUOwEbZcJ .mbr-iconfont {
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sLUOwEbZcJ .carousel-controls a {
  transition: all .3s;
  border-radius: 50%;
  border: 2px solid #66458e;
  background-color: transparent;
}
.cid-sLUOwEbZcJ .carousel-controls a span {
  color: #66458e;
  font-size: 18px;
}
.cid-sLUOwEbZcJ .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-sLUOwEbZcJ .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-sLUOwEbZcJ .carousel-controls .carousel-control-next,
.cid-sLUOwEbZcJ .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-sLUOwEbZcJ .carousel-controls .carousel-control-next {
  right: -40px;
  bottom: auto;
  top: 44%;
}
.cid-sLUOwEbZcJ .carousel-controls .carousel-control-prev {
  left: -70px;
  bottom: auto;
  top: 44%;
}
.cid-sLUOwEbZcJ .cloneditem-1,
.cid-sLUOwEbZcJ .cloneditem-2,
.cid-sLUOwEbZcJ .cloneditem-3,
.cid-sLUOwEbZcJ .cloneditem-4,
.cid-sLUOwEbZcJ .cloneditem-5 {
  display: none;
}
.cid-sLUOwEbZcJ .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sLUOwEbZcJ .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-sLUOwEbZcJ .carousel-inner {
    padding-bottom: 3px;
  }
  .cid-sLUOwEbZcJ .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-sLUOwEbZcJ .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(50%, 0, 0);
  }
  .cid-sLUOwEbZcJ .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-sLUOwEbZcJ .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-50%, 0, 0);
  }
  .cid-sLUOwEbZcJ .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-sLUOwEbZcJ .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sLUOwEbZcJ .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-sLUOwEbZcJ .carousel-inner.slides2 .cloneditem-1,
  .cid-sLUOwEbZcJ .carousel-inner.slides2 .cloneditem-2,
  .cid-sLUOwEbZcJ .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-sLUOwEbZcJ .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-sLUOwEbZcJ .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-sLUOwEbZcJ .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-sLUOwEbZcJ .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-sLUOwEbZcJ .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-sLUOwEbZcJ .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sLUOwEbZcJ .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-sLUOwEbZcJ .carousel-inner.slides3 .cloneditem-1,
  .cid-sLUOwEbZcJ .carousel-inner.slides3 .cloneditem-2,
  .cid-sLUOwEbZcJ .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
}
@media (max-width: 1200px) {
  .cid-sLUOwEbZcJ .carousel-inner .carousel-item .cloneditem-2 {
    display: none !important;
  }
}
@media (max-width: 1440px) {
  .cid-sLUOwEbZcJ .slider__content .slider__title {
    font-size: 25px;
    line-height: 30px;
  }
  .cid-sLUOwEbZcJ .slider__content {
    min-height: 235px;
  }
}
@media (max-width: 991px) {
  .cid-sLUOwEbZcJ .title__block {
    padding-left: 63px;
  }
  .cid-sLUOwEbZcJ .title__block .mbr-section-title {
    margin-bottom: 0;
  }
  .cid-sLUOwEbZcJ .mbr-text {
    padding-right: 0;
    margin-bottom: 10px;
  }
  .cid-sLUOwEbZcJ .carousel-item .slider__item {
    margin-right: 0;
  }
  .cid-sLUOwEbZcJ .slider__content {
    padding: 18px 18px 22px;
    min-height: 197px;
  }
  .cid-sLUOwEbZcJ .carousel-controls .carousel-control-next {
    right: -35px;
    bottom: auto;
    top: 44%;
  }
  .cid-sLUOwEbZcJ .carousel-controls .carousel-control-prev {
    left: -35px;
    bottom: auto;
    top: 44%;
  }
}
@media (max-width: 767px) {
  .cid-sLUOwEbZcJ .carousel-controls {
    display: none;
  }
}
.cid-sLUOwEbZcJ .slider__content .slider__text,
.cid-sLUOwEbZcJ .link {
  text-align: center;
}
.cid-sLUOwEbZcJ .slider__content .slider__title {
  text-align: center;
  color: #66458e;
}
.cid-sLUOwEbZcJ .mbr-section-title {
  text-align: center;
  color: #5d3d8b;
}
.cid-sEiFDh7d1t {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/exame-admissional-3-1280x756.jpg");
}
.cid-sEiFDh7d1t .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sEiFDh7d1t .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sEiFDh7d1t .card-img span {
  font-size: 100px;
}
.cid-sEiFDh7d1t .mbr-text,
.cid-sEiFDh7d1t .mbr-section-btn {
  color: #efefef;
  text-align: right;
}
.cid-sQbpinscHi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sQbpinscHi .google-map {
  height: 350px;
  position: relative;
}
.cid-sQbpinscHi .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sQbpinscHi .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sQbpinscHi .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sQbpinscHi .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sQbpUif9HF {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-sQbpUif9HF .mbr-overlay {
  background-color: #fff7e7;
  opacity: 0.9;
}
.cid-sQbpUif9HF form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sQbpUif9HF form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sQbpUif9HF form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sQbpUif9HF .mbr-section-title {
  color: #0eae9a;
}
.cid-sxcoavPLTB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ee488c;
}
@media (max-width: 1400px) {
  .cid-sxcoavPLTB .content {
    text-align: center;
  }
  .cid-sxcoavPLTB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sxcoavPLTB .logo-subtitle {
  color: #8d97ad;
}
.cid-sxcoavPLTB .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sxcoavPLTB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sxcoavPLTB .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-sxcoavPLTB .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sxcoavPLTB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sxcoavPLTB .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sxcoavPLTB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sxcoavPLTB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sxcoavPLTB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxcoavPLTB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sxcoavPLTB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxcoavPLTB .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxcoavPLTB .list-item {
  display: flex;
}
.cid-sxcoavPLTB .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-sxcoavPLTB ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sxcoavPLTB ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sxcoavPLTB ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sxcoavPLTB .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-sxcoavPLTB P {
  color: #ffffff;
  text-align: left;
}
.cid-sxcoavPLTB .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-sxcoavPLTB .mbr-text DIV {
  text-align: left;
}
.cid-sxcoavPLTB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-sxcoavPLTB .logo-subtitle,
.cid-sxcoavPLTB .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sxcyqJ4lkR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ee488c;
}
.cid-sxcyqJ4lkR .mbr-flex {
  display: flex;
  justify-content: flex-start;
}
.cid-sxcyqJ4lkR section {
  position: relative;
}
.cid-sxcyqJ4lkR h4 {
  margin: 0;
}
.cid-sxcyqJ4lkR a {
  font-weight: 300;
}
.cid-sxcyqJ4lkR .row {
  align-items: center;
}
.cid-sxcyqJ4lkR .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sxcyqJ4lkR .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sxcyqJ4lkR .img1 {
  color: #ffffff;
}
.cid-sxcyqJ4lkR .card-img {
  width: auto;
}
@media (max-width: 992px) {
  .cid-sxcyqJ4lkR .content > div:not(.order-2) {
    margin-bottom: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sxcyqJ4lkR .align-left,
  .cid-sxcyqJ4lkR .align-right {
    text-align: center;
  }
  .cid-sxcyqJ4lkR .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sxcyqJ4lkR .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sxcyqJ4lkR .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sxcyqJ4lkR .item-title {
  color: #ffffff;
}
.cid-sxcyqJ4lkR H4 {
  color: #ffffff;
}
.cid-sx8FerK7qQ .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sx8FerK7qQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sx8FerK7qQ a {
  font-style: normal;
}
.cid-sx8FerK7qQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sx8FerK7qQ .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sx8FerK7qQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-sx8FerK7qQ .content-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #5d3d8b;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sx8FerK7qQ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sx8FerK7qQ .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sx8FerK7qQ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .nav-dropdown .link {
  font-weight: 400;
}
.cid-sx8FerK7qQ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sx8FerK7qQ .content-right-side {
  text-align: center;
}
.cid-sx8FerK7qQ .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sx8FerK7qQ .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sx8FerK7qQ img {
    height: 1rem !important;
  }
  .cid-sx8FerK7qQ .btn {
    display: -webkit-flex;
  }
  .cid-sx8FerK7qQ button.navbar-toggler {
    display: block;
  }
  .cid-sx8FerK7qQ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sx8FerK7qQ .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing,
  .cid-sx8FerK7qQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sx8FerK7qQ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sx8FerK7qQ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sx8FerK7qQ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sx8FerK7qQ .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sx8FerK7qQ .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sx8FerK7qQ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sx8FerK7qQ .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sx8FerK7qQ .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sx8FerK7qQ .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sx8FerK7qQ .navbar {
    display: block;
    padding: 0;
  }
  .cid-sx8FerK7qQ .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sx8FerK7qQ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sx8FerK7qQ .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sx8FerK7qQ .navbar-toggler {
    display: none;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx8FerK7qQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sx8FerK7qQ .menu-logo {
  margin-right: auto;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8FerK7qQ .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-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sx8FerK7qQ .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sx8FerK7qQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ button.navbar-toggler:focus {
  outline: none;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sx8FerK7qQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sx8FerK7qQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sx8FerK7qQ .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sx8FerK7qQ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sx8FerK7qQ .nav-link:focus {
  outline: none;
}
.cid-sx8FerK7qQ .navbar-toggler {
  position: relative;
}
.cid-sx8FerK7qQ .dropdown-item.active,
.cid-sx8FerK7qQ .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sx8FerK7qQ .nav-link:hover,
.cid-sx8FerK7qQ .dropdown-item:hover {
  color: #4284df;
}
.cid-sx8FerK7qQ .widget-title,
.cid-sx8FerK7qQ .widget-icon {
  color: #777d74;
}
.cid-sx8FerK7qQ .widget-text {
  color: #777d74;
}
.cid-sxpsDzKF9F {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxpsDzKF9F .mbr-text {
  color: #767676;
}
.cid-sxcyqJ4lkR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ee488c;
}
.cid-sxcyqJ4lkR .mbr-flex {
  display: flex;
  justify-content: flex-start;
}
.cid-sxcyqJ4lkR section {
  position: relative;
}
.cid-sxcyqJ4lkR h4 {
  margin: 0;
}
.cid-sxcyqJ4lkR a {
  font-weight: 300;
}
.cid-sxcyqJ4lkR .row {
  align-items: center;
}
.cid-sxcyqJ4lkR .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sxcyqJ4lkR .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sxcyqJ4lkR .img1 {
  color: #ffffff;
}
.cid-sxcyqJ4lkR .card-img {
  width: auto;
}
@media (max-width: 992px) {
  .cid-sxcyqJ4lkR .content > div:not(.order-2) {
    margin-bottom: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sxcyqJ4lkR .align-left,
  .cid-sxcyqJ4lkR .align-right {
    text-align: center;
  }
  .cid-sxcyqJ4lkR .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sxcyqJ4lkR .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sxcyqJ4lkR .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sxcyqJ4lkR .item-title {
  color: #ffffff;
}
.cid-sxcyqJ4lkR H4 {
  color: #ffffff;
}
.cid-sxpEp8S0px {
  padding-top: 18rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sxpEp8S0px .mbr-text,
.cid-sxpEp8S0px .mbr-section-btn {
  color: #369eca;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sxpEp8S0px .mbr-section-title,
  .cid-sxpEp8S0px .mbr-section-btn,
  .cid-sxpEp8S0px .mbr-text {
    text-align: center;
  }
}
.cid-sxpEp8S0px .mbr-section-subtitle {
  color: #ffffff;
  letter-spacing: 6px;
}
.cid-sxpEp8S0px .mbr-section-btn {
  padding-top: 13rem;
}
.cid-sx8FerK7qQ .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sx8FerK7qQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sx8FerK7qQ a {
  font-style: normal;
}
.cid-sx8FerK7qQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sx8FerK7qQ .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sx8FerK7qQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-sx8FerK7qQ .content-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #5d3d8b;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sx8FerK7qQ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sx8FerK7qQ .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sx8FerK7qQ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .nav-dropdown .link {
  font-weight: 400;
}
.cid-sx8FerK7qQ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sx8FerK7qQ .content-right-side {
  text-align: center;
}
.cid-sx8FerK7qQ .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sx8FerK7qQ .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sx8FerK7qQ img {
    height: 1rem !important;
  }
  .cid-sx8FerK7qQ .btn {
    display: -webkit-flex;
  }
  .cid-sx8FerK7qQ button.navbar-toggler {
    display: block;
  }
  .cid-sx8FerK7qQ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sx8FerK7qQ .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing,
  .cid-sx8FerK7qQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sx8FerK7qQ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sx8FerK7qQ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sx8FerK7qQ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sx8FerK7qQ .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sx8FerK7qQ .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sx8FerK7qQ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sx8FerK7qQ .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sx8FerK7qQ .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sx8FerK7qQ .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sx8FerK7qQ .navbar {
    display: block;
    padding: 0;
  }
  .cid-sx8FerK7qQ .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sx8FerK7qQ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sx8FerK7qQ .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sx8FerK7qQ .navbar-toggler {
    display: none;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx8FerK7qQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sx8FerK7qQ .menu-logo {
  margin-right: auto;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8FerK7qQ .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-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sx8FerK7qQ .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sx8FerK7qQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ button.navbar-toggler:focus {
  outline: none;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sx8FerK7qQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sx8FerK7qQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sx8FerK7qQ .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sx8FerK7qQ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sx8FerK7qQ .nav-link:focus {
  outline: none;
}
.cid-sx8FerK7qQ .navbar-toggler {
  position: relative;
}
.cid-sx8FerK7qQ .dropdown-item.active,
.cid-sx8FerK7qQ .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sx8FerK7qQ .nav-link:hover,
.cid-sx8FerK7qQ .dropdown-item:hover {
  color: #4284df;
}
.cid-sx8FerK7qQ .widget-title,
.cid-sx8FerK7qQ .widget-icon {
  color: #777d74;
}
.cid-sx8FerK7qQ .widget-text {
  color: #777d74;
}
.cid-sxcyqJ4lkR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ee488c;
}
.cid-sxcyqJ4lkR .mbr-flex {
  display: flex;
  justify-content: flex-start;
}
.cid-sxcyqJ4lkR section {
  position: relative;
}
.cid-sxcyqJ4lkR h4 {
  margin: 0;
}
.cid-sxcyqJ4lkR a {
  font-weight: 300;
}
.cid-sxcyqJ4lkR .row {
  align-items: center;
}
.cid-sxcyqJ4lkR .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-sxcyqJ4lkR .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sxcyqJ4lkR .img1 {
  color: #ffffff;
}
.cid-sxcyqJ4lkR .card-img {
  width: auto;
}
@media (max-width: 992px) {
  .cid-sxcyqJ4lkR .content > div:not(.order-2) {
    margin-bottom: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sxcyqJ4lkR .align-left,
  .cid-sxcyqJ4lkR .align-right {
    text-align: center;
  }
  .cid-sxcyqJ4lkR .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sxcyqJ4lkR .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-sxcyqJ4lkR .item {
    padding-bottom: 0.5rem;
  }
}
.cid-sxcyqJ4lkR .item-title {
  color: #ffffff;
}
.cid-sxcyqJ4lkR H4 {
  color: #ffffff;
}
