body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 3.125rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.375rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.2rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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.1875rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((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.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem !important;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1.2rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #55b4d4 !important;
}
.bg-success {
  background-color: #9ccd7e !important;
}
.bg-info {
  background-color: #999999 !important;
}
.bg-warning {
  background-color: #eceae4 !important;
}
.bg-danger {
  background-color: #166123 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #55b4d4 !important;
  border-color: #55b4d4 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2d8fb0 !important;
  border-color: #2d8fb0 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2d8fb0 !important;
  border-color: #2d8fb0 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #244f9f !important;
  border-color: #244f9f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #244f9f !important;
  border-color: #244f9f !important;
}
.btn-info,
.btn-info:active {
  background-color: #999999 !important;
  border-color: #999999 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #737373 !important;
  border-color: #737373 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #737373 !important;
  border-color: #737373 !important;
}
.btn-success,
.btn-success:active {
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #72b747 !important;
  border-color: #72b747 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #72b747 !important;
  border-color: #72b747 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #eceae4 !important;
  border-color: #eceae4 !important;
  color: #7b7256 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #7b7256 !important;
  background-color: #ccc7b7 !important;
  border-color: #ccc7b7 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #7b7256 !important;
  background-color: #ccc7b7 !important;
  border-color: #ccc7b7 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #166123 !important;
  border-color: #166123 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #08230d !important;
  border-color: #08230d !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #08230d !important;
  border-color: #08230d !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: #55b4d4;
  color: #55b4d4;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #55b4d4;
  border-color: #55b4d4;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #55b4d4 !important;
  border-color: #55b4d4 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #3c71d3;
  color: #3c71d3;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #3c71d3;
  border-color: #3c71d3;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #999999;
  color: #999999;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #999999;
  border-color: #999999;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #9ccd7e;
  color: #9ccd7e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #9ccd7e;
  border-color: #9ccd7e;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #eceae4;
  color: #eceae4;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #7b7256;
  background-color: #eceae4;
  border-color: #eceae4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #7b7256 !important;
  background-color: #eceae4 !important;
  border-color: #eceae4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #166123;
  color: #166123;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #166123;
  border-color: #166123;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #166123 !important;
  border-color: #166123 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.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;
}
.text-primary {
  color: #55b4d4 !important;
}
.text-secondary {
  color: #3c71d3 !important;
}
.text-success {
  color: #9ccd7e !important;
}
.text-info {
  color: #999999 !important;
}
.text-warning {
  color: #eceae4 !important;
}
.text-danger {
  color: #166123 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #a6d8e9 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8faee6 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d4e9c8 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #ffffff !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #29b441 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #999999;
}
.alert-warning {
  background-color: #eceae4;
}
.alert-danger {
  background-color: #166123;
}
.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: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #55b4d4;
  border-color: #55b4d4;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #55b4d4;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f8fcfd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9d9d9;
}
.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: #2ec949;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #55b4d4;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #55b4d4;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #55b4d4;
  border-bottom-color: #55b4d4;
}
.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: #000000 !important;
  background-color: #55b4d4 !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: #3c71d3 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2355b4d4' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-rVs6BwK6TX {
  padding-top: 300px;
  padding-bottom: 210px;
  background-image: url("../../../assets/images/wp-20171114-17-13-11-pro-2-2000x1125.jpeg");
}
.cid-rVs6BwK6TX .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-rVs6BwK6TX .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sxZ8xkZIT1 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sxZ8xkZIT1 .mbr-text,
.cid-sxZ8xkZIT1 .mbr-section-btn {
  color: #333333;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sxZ8xkZIT1 .mbr-section-title,
  .cid-sxZ8xkZIT1 .mbr-section-btn,
  .cid-sxZ8xkZIT1 .mbr-text {
    text-align: center;
  }
}
.cid-sxZ8xkZIT1 .mbr-section-subtitle {
  color: #ffffff;
  letter-spacing: 6px;
}
.cid-sxZ8xkZIT1 .mbr-section-btn {
  padding-top: 8rem;
}
.cid-sxZ50K3kHr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxZ50K3kHr nav.navbar {
  position: fixed;
}
.cid-sxZ50K3kHr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sxZ50K3kHr .dropdown-item:hover,
.cid-sxZ50K3kHr .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxZ50K3kHr .nav-link {
  position: relative;
  padding: 0;
}
.cid-sxZ50K3kHr .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sxZ50K3kHr .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown-menu,
.cid-sxZ50K3kHr .navbar.opened {
  background: #ffffff !important;
}
.cid-sxZ50K3kHr .nav-item:focus,
.cid-sxZ50K3kHr .nav-link:focus {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxZ50K3kHr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxZ50K3kHr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.opened {
  transition: all 0.3s;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxZ50K3kHr .navbar .navbar-logo img {
  width: auto;
}
.cid-sxZ50K3kHr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar.collapsed {
  justify-content: right;
}
.cid-sxZ50K3kHr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxZ50K3kHr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxZ50K3kHr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sxZ50K3kHr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxZ50K3kHr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxZ50K3kHr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxZ50K3kHr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sxZ50K3kHr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxZ50K3kHr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxZ50K3kHr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxZ50K3kHr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxZ50K3kHr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxZ50K3kHr .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxZ50K3kHr .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown-item.active,
.cid-sxZ50K3kHr .dropdown-item:active {
  background-color: transparent;
}
.cid-sxZ50K3kHr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxZ50K3kHr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxZ50K3kHr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxZ50K3kHr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxZ50K3kHr button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxZ50K3kHr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxZ50K3kHr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxZ50K3kHr .navbar {
    height: 70px;
  }
  .cid-sxZ50K3kHr .navbar.opened {
    height: auto;
  }
  .cid-sxZ50K3kHr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxZ50K3kHr .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sxZ50K3kHr .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sxZ50K3kHr a {
  display: inline;
  font-weight: bold;
}
.cid-sxZ50K3kHr img {
  display: inline;
  padding-right: 10px;
}
.cid-sxZ50K3kHr .dropdown-toggle:after {
  display: none;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sxZ50K3kHr .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sxZ50K3kHr .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4f7LbATX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4f7LbATX .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4f7LbATX .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4f7LbATX .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4f7LbATX .mbr-text {
  color: #444;
}
.cid-sy4f7LbATX h5 {
  margin-bottom: 0;
}
.cid-sy4f7LbATX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4f7LbATX .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4f7LbATX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4f7LbATX .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4f7LbATX .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4f7LbATX .social-list a:hover {
  opacity: .4;
}
.cid-sy4f7LbATX .media-container-row > div {
  padding: 0px;
}
.cid-sy4f7LbATX .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4f7LbATX .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4f7LbATX .group-title SPAN {
  color: #656565;
}
.cid-sy4f7LbATX .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4f7LbATX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4f7LbATX h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4f7LbATX .links SPAN {
  color: #9e9e9e;
}
.cid-sy4f7LbATX .links,
.cid-sy4f7LbATX .social-list {
  color: #ffffff;
}
.cid-sy4n4IU2X1 {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/10.jpg");
}
.cid-sy4n4IU2X1 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-sy4n4IU2X1 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sy4n4IU2X1 .mbr-section-title,
.cid-sy4n4IU2X1 .icon-wrap,
.cid-sy4n4IU2X1 .mbr-section-btn {
  text-align: left;
}
.cid-sy4lekTGKR {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sy4lekTGKR h2 {
  color: #000000;
}
.cid-sy4lekTGKR h1 {
  color: #000000;
}
.cid-sy4lekTGKR .mbr-text,
.cid-sy4lekTGKR .mbr-section-btn {
  color: #999999;
  text-align: left;
}
.cid-sy4lekTGKR H1 {
  color: #55b4d4;
  text-align: left;
}
.cid-sxZ50K3kHr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxZ50K3kHr nav.navbar {
  position: fixed;
}
.cid-sxZ50K3kHr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sxZ50K3kHr .dropdown-item:hover,
.cid-sxZ50K3kHr .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxZ50K3kHr .nav-link {
  position: relative;
  padding: 0;
}
.cid-sxZ50K3kHr .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sxZ50K3kHr .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown-menu,
.cid-sxZ50K3kHr .navbar.opened {
  background: #ffffff !important;
}
.cid-sxZ50K3kHr .nav-item:focus,
.cid-sxZ50K3kHr .nav-link:focus {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxZ50K3kHr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxZ50K3kHr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.opened {
  transition: all 0.3s;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxZ50K3kHr .navbar .navbar-logo img {
  width: auto;
}
.cid-sxZ50K3kHr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar.collapsed {
  justify-content: right;
}
.cid-sxZ50K3kHr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxZ50K3kHr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxZ50K3kHr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sxZ50K3kHr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxZ50K3kHr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxZ50K3kHr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxZ50K3kHr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sxZ50K3kHr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxZ50K3kHr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxZ50K3kHr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxZ50K3kHr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxZ50K3kHr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxZ50K3kHr .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxZ50K3kHr .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown-item.active,
.cid-sxZ50K3kHr .dropdown-item:active {
  background-color: transparent;
}
.cid-sxZ50K3kHr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxZ50K3kHr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxZ50K3kHr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxZ50K3kHr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxZ50K3kHr button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxZ50K3kHr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxZ50K3kHr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxZ50K3kHr .navbar {
    height: 70px;
  }
  .cid-sxZ50K3kHr .navbar.opened {
    height: auto;
  }
  .cid-sxZ50K3kHr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxZ50K3kHr .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sxZ50K3kHr .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sxZ50K3kHr a {
  display: inline;
  font-weight: bold;
}
.cid-sxZ50K3kHr img {
  display: inline;
  padding-right: 10px;
}
.cid-sxZ50K3kHr .dropdown-toggle:after {
  display: none;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sxZ50K3kHr .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sxZ50K3kHr .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4f7LbATX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4f7LbATX .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4f7LbATX .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4f7LbATX .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4f7LbATX .mbr-text {
  color: #444;
}
.cid-sy4f7LbATX h5 {
  margin-bottom: 0;
}
.cid-sy4f7LbATX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4f7LbATX .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4f7LbATX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4f7LbATX .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4f7LbATX .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4f7LbATX .social-list a:hover {
  opacity: .4;
}
.cid-sy4f7LbATX .media-container-row > div {
  padding: 0px;
}
.cid-sy4f7LbATX .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4f7LbATX .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4f7LbATX .group-title SPAN {
  color: #656565;
}
.cid-sy4f7LbATX .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4f7LbATX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4f7LbATX h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4f7LbATX .links SPAN {
  color: #9e9e9e;
}
.cid-sy4f7LbATX .links,
.cid-sy4f7LbATX .social-list {
  color: #ffffff;
}
.cid-sy4plbLaNJ {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/10.jpg");
}
.cid-sy4plbLaNJ .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-sy4plbLaNJ .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sy4plbLaNJ .mbr-section-title,
.cid-sy4plbLaNJ .icon-wrap,
.cid-sy4plbLaNJ .mbr-section-btn {
  text-align: left;
}
.cid-sy4plcgfkr {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sy4plcgfkr h2 {
  color: #000000;
}
.cid-sy4plcgfkr h1 {
  color: #000000;
}
.cid-sy4plcgfkr .mbr-text,
.cid-sy4plcgfkr .mbr-section-btn {
  color: #999999;
  text-align: left;
}
.cid-sy4plcgfkr H1 {
  color: #55b4d4;
  text-align: left;
}
.cid-sy4plcGe0a {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sy4plcGe0a nav.navbar {
  position: fixed;
}
.cid-sy4plcGe0a .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4plcGe0a .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sy4plcGe0a .dropdown-item:hover,
.cid-sy4plcGe0a .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sy4plcGe0a .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sy4plcGe0a .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sy4plcGe0a .nav-link {
  position: relative;
  padding: 0;
}
.cid-sy4plcGe0a .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sy4plcGe0a .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sy4plcGe0a .dropdown-menu,
.cid-sy4plcGe0a .navbar.opened {
  background: #ffffff !important;
}
.cid-sy4plcGe0a .nav-item:focus,
.cid-sy4plcGe0a .nav-link:focus {
  outline: none;
}
.cid-sy4plcGe0a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sy4plcGe0a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sy4plcGe0a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sy4plcGe0a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4plcGe0a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sy4plcGe0a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sy4plcGe0a .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sy4plcGe0a .navbar.opened {
  transition: all 0.3s;
}
.cid-sy4plcGe0a .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sy4plcGe0a .navbar .navbar-logo img {
  width: auto;
}
.cid-sy4plcGe0a .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sy4plcGe0a .navbar.collapsed {
  justify-content: right;
}
.cid-sy4plcGe0a .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sy4plcGe0a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sy4plcGe0a .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sy4plcGe0a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sy4plcGe0a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sy4plcGe0a .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sy4plcGe0a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sy4plcGe0a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sy4plcGe0a .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sy4plcGe0a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sy4plcGe0a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sy4plcGe0a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sy4plcGe0a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sy4plcGe0a .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sy4plcGe0a .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sy4plcGe0a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sy4plcGe0a .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sy4plcGe0a .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sy4plcGe0a .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sy4plcGe0a .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sy4plcGe0a .navbar.navbar-short {
  min-height: 60px;
}
.cid-sy4plcGe0a .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sy4plcGe0a .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sy4plcGe0a .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sy4plcGe0a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sy4plcGe0a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sy4plcGe0a .dropdown-item.active,
.cid-sy4plcGe0a .dropdown-item:active {
  background-color: transparent;
}
.cid-sy4plcGe0a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sy4plcGe0a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sy4plcGe0a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sy4plcGe0a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sy4plcGe0a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sy4plcGe0a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sy4plcGe0a ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sy4plcGe0a .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sy4plcGe0a button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sy4plcGe0a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sy4plcGe0a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sy4plcGe0a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4plcGe0a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4plcGe0a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sy4plcGe0a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4plcGe0a nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sy4plcGe0a nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sy4plcGe0a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4plcGe0a .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sy4plcGe0a a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sy4plcGe0a .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sy4plcGe0a .navbar {
    height: 70px;
  }
  .cid-sy4plcGe0a .navbar.opened {
    height: auto;
  }
  .cid-sy4plcGe0a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sy4plcGe0a .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sy4plcGe0a .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sy4plcGe0a a {
  display: inline;
  font-weight: bold;
}
.cid-sy4plcGe0a img {
  display: inline;
  padding-right: 10px;
}
.cid-sy4plcGe0a .dropdown-toggle:after {
  display: none;
}
.cid-sy4plcGe0a .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sy4plcGe0a .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sy4plcGe0a .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4pld8Sy9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4pld8Sy9 .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4pld8Sy9 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4pld8Sy9 .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4pld8Sy9 .mbr-text {
  color: #444;
}
.cid-sy4pld8Sy9 h5 {
  margin-bottom: 0;
}
.cid-sy4pld8Sy9 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4pld8Sy9 .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4pld8Sy9 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4pld8Sy9 .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4pld8Sy9 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4pld8Sy9 .social-list a:hover {
  opacity: .4;
}
.cid-sy4pld8Sy9 .media-container-row > div {
  padding: 0px;
}
.cid-sy4pld8Sy9 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4pld8Sy9 .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4pld8Sy9 .group-title SPAN {
  color: #656565;
}
.cid-sy4pld8Sy9 .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4pld8Sy9 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4pld8Sy9 h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4pld8Sy9 .links SPAN {
  color: #9e9e9e;
}
.cid-sy4pld8Sy9 .links,
.cid-sy4pld8Sy9 .social-list {
  color: #ffffff;
}
.cid-sy4qhKHW3A {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/10.jpg");
}
.cid-sy4qhKHW3A .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-sy4qhKHW3A .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sy4qhKHW3A .mbr-section-title,
.cid-sy4qhKHW3A .icon-wrap,
.cid-sy4qhKHW3A .mbr-section-btn {
  text-align: left;
}
.cid-sy4qhLx168 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sy4qhLx168 h2 {
  color: #000000;
}
.cid-sy4qhLx168 h1 {
  color: #000000;
}
.cid-sy4qhLx168 .mbr-text,
.cid-sy4qhLx168 .mbr-section-btn {
  color: #999999;
  text-align: left;
}
.cid-sy4qhLx168 H1 {
  color: #55b4d4;
  text-align: left;
}
.cid-sy4qhM8uaW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sy4qhM8uaW nav.navbar {
  position: fixed;
}
.cid-sy4qhM8uaW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4qhM8uaW .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sy4qhM8uaW .dropdown-item:hover,
.cid-sy4qhM8uaW .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sy4qhM8uaW .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sy4qhM8uaW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sy4qhM8uaW .nav-link {
  position: relative;
  padding: 0;
}
.cid-sy4qhM8uaW .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sy4qhM8uaW .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sy4qhM8uaW .dropdown-menu,
.cid-sy4qhM8uaW .navbar.opened {
  background: #ffffff !important;
}
.cid-sy4qhM8uaW .nav-item:focus,
.cid-sy4qhM8uaW .nav-link:focus {
  outline: none;
}
.cid-sy4qhM8uaW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sy4qhM8uaW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sy4qhM8uaW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sy4qhM8uaW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4qhM8uaW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sy4qhM8uaW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sy4qhM8uaW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sy4qhM8uaW .navbar.opened {
  transition: all 0.3s;
}
.cid-sy4qhM8uaW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sy4qhM8uaW .navbar .navbar-logo img {
  width: auto;
}
.cid-sy4qhM8uaW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sy4qhM8uaW .navbar.collapsed {
  justify-content: right;
}
.cid-sy4qhM8uaW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sy4qhM8uaW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sy4qhM8uaW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sy4qhM8uaW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sy4qhM8uaW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sy4qhM8uaW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sy4qhM8uaW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sy4qhM8uaW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sy4qhM8uaW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sy4qhM8uaW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sy4qhM8uaW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sy4qhM8uaW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sy4qhM8uaW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sy4qhM8uaW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sy4qhM8uaW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sy4qhM8uaW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sy4qhM8uaW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sy4qhM8uaW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sy4qhM8uaW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sy4qhM8uaW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sy4qhM8uaW .navbar.navbar-short {
  min-height: 60px;
}
.cid-sy4qhM8uaW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sy4qhM8uaW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sy4qhM8uaW .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sy4qhM8uaW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sy4qhM8uaW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sy4qhM8uaW .dropdown-item.active,
.cid-sy4qhM8uaW .dropdown-item:active {
  background-color: transparent;
}
.cid-sy4qhM8uaW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sy4qhM8uaW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sy4qhM8uaW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sy4qhM8uaW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sy4qhM8uaW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sy4qhM8uaW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sy4qhM8uaW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sy4qhM8uaW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sy4qhM8uaW button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sy4qhM8uaW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sy4qhM8uaW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sy4qhM8uaW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4qhM8uaW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4qhM8uaW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sy4qhM8uaW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4qhM8uaW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sy4qhM8uaW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sy4qhM8uaW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4qhM8uaW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sy4qhM8uaW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sy4qhM8uaW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sy4qhM8uaW .navbar {
    height: 70px;
  }
  .cid-sy4qhM8uaW .navbar.opened {
    height: auto;
  }
  .cid-sy4qhM8uaW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sy4qhM8uaW .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sy4qhM8uaW .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sy4qhM8uaW a {
  display: inline;
  font-weight: bold;
}
.cid-sy4qhM8uaW img {
  display: inline;
  padding-right: 10px;
}
.cid-sy4qhM8uaW .dropdown-toggle:after {
  display: none;
}
.cid-sy4qhM8uaW .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sy4qhM8uaW .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sy4qhM8uaW .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4qhMYbfn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4qhMYbfn .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4qhMYbfn .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4qhMYbfn .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4qhMYbfn .mbr-text {
  color: #444;
}
.cid-sy4qhMYbfn h5 {
  margin-bottom: 0;
}
.cid-sy4qhMYbfn .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4qhMYbfn .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4qhMYbfn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4qhMYbfn .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4qhMYbfn .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4qhMYbfn .social-list a:hover {
  opacity: .4;
}
.cid-sy4qhMYbfn .media-container-row > div {
  padding: 0px;
}
.cid-sy4qhMYbfn .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4qhMYbfn .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4qhMYbfn .group-title SPAN {
  color: #656565;
}
.cid-sy4qhMYbfn .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4qhMYbfn .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4qhMYbfn h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4qhMYbfn .links SPAN {
  color: #9e9e9e;
}
.cid-sy4qhMYbfn .links,
.cid-sy4qhMYbfn .social-list {
  color: #ffffff;
}
.cid-sy4qZrUjAy {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/10.jpg");
}
.cid-sy4qZrUjAy .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-sy4qZrUjAy .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sy4qZrUjAy .mbr-section-title,
.cid-sy4qZrUjAy .icon-wrap,
.cid-sy4qZrUjAy .mbr-section-btn {
  text-align: left;
}
.cid-sy4qZsAUHf {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sy4qZsAUHf h2 {
  color: #000000;
}
.cid-sy4qZsAUHf h1 {
  color: #000000;
}
.cid-sy4qZsAUHf .mbr-text,
.cid-sy4qZsAUHf .mbr-section-btn {
  color: #999999;
  text-align: left;
}
.cid-sy4qZsAUHf H1 {
  color: #55b4d4;
  text-align: left;
}
.cid-sy4qZti7re {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sy4qZti7re nav.navbar {
  position: fixed;
}
.cid-sy4qZti7re .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4qZti7re .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sy4qZti7re .dropdown-item:hover,
.cid-sy4qZti7re .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sy4qZti7re .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sy4qZti7re .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sy4qZti7re .nav-link {
  position: relative;
  padding: 0;
}
.cid-sy4qZti7re .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sy4qZti7re .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sy4qZti7re .dropdown-menu,
.cid-sy4qZti7re .navbar.opened {
  background: #ffffff !important;
}
.cid-sy4qZti7re .nav-item:focus,
.cid-sy4qZti7re .nav-link:focus {
  outline: none;
}
.cid-sy4qZti7re .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sy4qZti7re .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sy4qZti7re .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sy4qZti7re .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4qZti7re .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sy4qZti7re .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sy4qZti7re .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sy4qZti7re .navbar.opened {
  transition: all 0.3s;
}
.cid-sy4qZti7re .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sy4qZti7re .navbar .navbar-logo img {
  width: auto;
}
.cid-sy4qZti7re .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sy4qZti7re .navbar.collapsed {
  justify-content: right;
}
.cid-sy4qZti7re .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sy4qZti7re .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sy4qZti7re .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sy4qZti7re .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sy4qZti7re .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sy4qZti7re .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sy4qZti7re .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sy4qZti7re .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sy4qZti7re .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sy4qZti7re .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sy4qZti7re .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sy4qZti7re .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sy4qZti7re .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sy4qZti7re .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sy4qZti7re .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sy4qZti7re .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sy4qZti7re .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sy4qZti7re .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sy4qZti7re .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sy4qZti7re .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sy4qZti7re .navbar.navbar-short {
  min-height: 60px;
}
.cid-sy4qZti7re .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sy4qZti7re .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sy4qZti7re .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sy4qZti7re .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sy4qZti7re .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sy4qZti7re .dropdown-item.active,
.cid-sy4qZti7re .dropdown-item:active {
  background-color: transparent;
}
.cid-sy4qZti7re .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sy4qZti7re .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sy4qZti7re .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sy4qZti7re .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sy4qZti7re .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sy4qZti7re .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sy4qZti7re ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sy4qZti7re .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sy4qZti7re button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sy4qZti7re button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sy4qZti7re button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sy4qZti7re button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4qZti7re button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4qZti7re button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sy4qZti7re nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4qZti7re nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sy4qZti7re nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sy4qZti7re nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4qZti7re .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sy4qZti7re a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sy4qZti7re .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sy4qZti7re .navbar {
    height: 70px;
  }
  .cid-sy4qZti7re .navbar.opened {
    height: auto;
  }
  .cid-sy4qZti7re .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sy4qZti7re .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sy4qZti7re .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sy4qZti7re a {
  display: inline;
  font-weight: bold;
}
.cid-sy4qZti7re img {
  display: inline;
  padding-right: 10px;
}
.cid-sy4qZti7re .dropdown-toggle:after {
  display: none;
}
.cid-sy4qZti7re .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sy4qZti7re .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sy4qZti7re .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4qZu2F3e {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4qZu2F3e .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4qZu2F3e .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4qZu2F3e .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4qZu2F3e .mbr-text {
  color: #444;
}
.cid-sy4qZu2F3e h5 {
  margin-bottom: 0;
}
.cid-sy4qZu2F3e .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4qZu2F3e .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4qZu2F3e .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4qZu2F3e .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4qZu2F3e .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4qZu2F3e .social-list a:hover {
  opacity: .4;
}
.cid-sy4qZu2F3e .media-container-row > div {
  padding: 0px;
}
.cid-sy4qZu2F3e .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4qZu2F3e .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4qZu2F3e .group-title SPAN {
  color: #656565;
}
.cid-sy4qZu2F3e .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4qZu2F3e .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4qZu2F3e h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4qZu2F3e .links SPAN {
  color: #9e9e9e;
}
.cid-sy4qZu2F3e .links,
.cid-sy4qZu2F3e .social-list {
  color: #ffffff;
}
.cid-sy4s5JBhlD {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/10.jpg");
}
.cid-sy4s5JBhlD .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-sy4s5JBhlD .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sy4s5JBhlD .mbr-section-title,
.cid-sy4s5JBhlD .icon-wrap,
.cid-sy4s5JBhlD .mbr-section-btn {
  text-align: left;
}
.cid-sy4s5KezRH {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sy4s5KezRH h2 {
  color: #000000;
}
.cid-sy4s5KezRH h1 {
  color: #000000;
}
.cid-sy4s5KezRH .mbr-text,
.cid-sy4s5KezRH .mbr-section-btn {
  color: #999999;
  text-align: left;
}
.cid-sy4s5KezRH H1 {
  color: #55b4d4;
  text-align: left;
}
.cid-sy4s5KE3jj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sy4s5KE3jj nav.navbar {
  position: fixed;
}
.cid-sy4s5KE3jj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4s5KE3jj .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sy4s5KE3jj .dropdown-item:hover,
.cid-sy4s5KE3jj .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sy4s5KE3jj .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sy4s5KE3jj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sy4s5KE3jj .nav-link {
  position: relative;
  padding: 0;
}
.cid-sy4s5KE3jj .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sy4s5KE3jj .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sy4s5KE3jj .dropdown-menu,
.cid-sy4s5KE3jj .navbar.opened {
  background: #ffffff !important;
}
.cid-sy4s5KE3jj .nav-item:focus,
.cid-sy4s5KE3jj .nav-link:focus {
  outline: none;
}
.cid-sy4s5KE3jj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sy4s5KE3jj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sy4s5KE3jj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sy4s5KE3jj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4s5KE3jj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sy4s5KE3jj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sy4s5KE3jj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sy4s5KE3jj .navbar.opened {
  transition: all 0.3s;
}
.cid-sy4s5KE3jj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sy4s5KE3jj .navbar .navbar-logo img {
  width: auto;
}
.cid-sy4s5KE3jj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sy4s5KE3jj .navbar.collapsed {
  justify-content: right;
}
.cid-sy4s5KE3jj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sy4s5KE3jj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sy4s5KE3jj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sy4s5KE3jj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sy4s5KE3jj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sy4s5KE3jj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sy4s5KE3jj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sy4s5KE3jj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sy4s5KE3jj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sy4s5KE3jj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sy4s5KE3jj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sy4s5KE3jj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sy4s5KE3jj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sy4s5KE3jj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sy4s5KE3jj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sy4s5KE3jj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sy4s5KE3jj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sy4s5KE3jj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sy4s5KE3jj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sy4s5KE3jj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sy4s5KE3jj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sy4s5KE3jj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sy4s5KE3jj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sy4s5KE3jj .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sy4s5KE3jj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sy4s5KE3jj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sy4s5KE3jj .dropdown-item.active,
.cid-sy4s5KE3jj .dropdown-item:active {
  background-color: transparent;
}
.cid-sy4s5KE3jj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sy4s5KE3jj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sy4s5KE3jj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sy4s5KE3jj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sy4s5KE3jj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sy4s5KE3jj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sy4s5KE3jj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sy4s5KE3jj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sy4s5KE3jj button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sy4s5KE3jj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sy4s5KE3jj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sy4s5KE3jj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4s5KE3jj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4s5KE3jj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sy4s5KE3jj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4s5KE3jj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sy4s5KE3jj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sy4s5KE3jj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4s5KE3jj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sy4s5KE3jj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sy4s5KE3jj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sy4s5KE3jj .navbar {
    height: 70px;
  }
  .cid-sy4s5KE3jj .navbar.opened {
    height: auto;
  }
  .cid-sy4s5KE3jj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sy4s5KE3jj .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sy4s5KE3jj .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sy4s5KE3jj a {
  display: inline;
  font-weight: bold;
}
.cid-sy4s5KE3jj img {
  display: inline;
  padding-right: 10px;
}
.cid-sy4s5KE3jj .dropdown-toggle:after {
  display: none;
}
.cid-sy4s5KE3jj .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sy4s5KE3jj .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sy4s5KE3jj .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4s5L7Wx8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4s5L7Wx8 .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4s5L7Wx8 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4s5L7Wx8 .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4s5L7Wx8 .mbr-text {
  color: #444;
}
.cid-sy4s5L7Wx8 h5 {
  margin-bottom: 0;
}
.cid-sy4s5L7Wx8 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4s5L7Wx8 .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4s5L7Wx8 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4s5L7Wx8 .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4s5L7Wx8 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4s5L7Wx8 .social-list a:hover {
  opacity: .4;
}
.cid-sy4s5L7Wx8 .media-container-row > div {
  padding: 0px;
}
.cid-sy4s5L7Wx8 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4s5L7Wx8 .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4s5L7Wx8 .group-title SPAN {
  color: #656565;
}
.cid-sy4s5L7Wx8 .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4s5L7Wx8 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4s5L7Wx8 h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4s5L7Wx8 .links SPAN {
  color: #9e9e9e;
}
.cid-sy4s5L7Wx8 .links,
.cid-sy4s5L7Wx8 .social-list {
  color: #ffffff;
}
.cid-sy4sRzFIVE {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/10.jpg");
}
.cid-sy4sRzFIVE .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-sy4sRzFIVE .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sy4sRzFIVE .mbr-section-title,
.cid-sy4sRzFIVE .icon-wrap,
.cid-sy4sRzFIVE .mbr-section-btn {
  text-align: left;
}
.cid-sy4sRAkhPR {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sy4sRAkhPR h2 {
  color: #000000;
}
.cid-sy4sRAkhPR h1 {
  color: #000000;
}
.cid-sy4sRAkhPR .mbr-text,
.cid-sy4sRAkhPR .mbr-section-btn {
  color: #999999;
  text-align: left;
}
.cid-sy4sRAkhPR H1 {
  color: #55b4d4;
  text-align: left;
}
.cid-sy4sRAKOQV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sy4sRAKOQV nav.navbar {
  position: fixed;
}
.cid-sy4sRAKOQV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4sRAKOQV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sy4sRAKOQV .dropdown-item:hover,
.cid-sy4sRAKOQV .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sy4sRAKOQV .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sy4sRAKOQV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sy4sRAKOQV .nav-link {
  position: relative;
  padding: 0;
}
.cid-sy4sRAKOQV .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sy4sRAKOQV .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sy4sRAKOQV .dropdown-menu,
.cid-sy4sRAKOQV .navbar.opened {
  background: #ffffff !important;
}
.cid-sy4sRAKOQV .nav-item:focus,
.cid-sy4sRAKOQV .nav-link:focus {
  outline: none;
}
.cid-sy4sRAKOQV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sy4sRAKOQV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sy4sRAKOQV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sy4sRAKOQV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4sRAKOQV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sy4sRAKOQV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sy4sRAKOQV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sy4sRAKOQV .navbar.opened {
  transition: all 0.3s;
}
.cid-sy4sRAKOQV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sy4sRAKOQV .navbar .navbar-logo img {
  width: auto;
}
.cid-sy4sRAKOQV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sy4sRAKOQV .navbar.collapsed {
  justify-content: right;
}
.cid-sy4sRAKOQV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sy4sRAKOQV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sy4sRAKOQV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sy4sRAKOQV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sy4sRAKOQV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sy4sRAKOQV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sy4sRAKOQV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sy4sRAKOQV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sy4sRAKOQV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sy4sRAKOQV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sy4sRAKOQV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sy4sRAKOQV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sy4sRAKOQV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sy4sRAKOQV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sy4sRAKOQV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sy4sRAKOQV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sy4sRAKOQV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sy4sRAKOQV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sy4sRAKOQV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sy4sRAKOQV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sy4sRAKOQV .navbar.navbar-short {
  min-height: 60px;
}
.cid-sy4sRAKOQV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sy4sRAKOQV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sy4sRAKOQV .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sy4sRAKOQV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sy4sRAKOQV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sy4sRAKOQV .dropdown-item.active,
.cid-sy4sRAKOQV .dropdown-item:active {
  background-color: transparent;
}
.cid-sy4sRAKOQV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sy4sRAKOQV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sy4sRAKOQV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sy4sRAKOQV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sy4sRAKOQV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sy4sRAKOQV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sy4sRAKOQV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sy4sRAKOQV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sy4sRAKOQV button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sy4sRAKOQV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sy4sRAKOQV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sy4sRAKOQV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4sRAKOQV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4sRAKOQV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sy4sRAKOQV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4sRAKOQV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sy4sRAKOQV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sy4sRAKOQV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4sRAKOQV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sy4sRAKOQV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sy4sRAKOQV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sy4sRAKOQV .navbar {
    height: 70px;
  }
  .cid-sy4sRAKOQV .navbar.opened {
    height: auto;
  }
  .cid-sy4sRAKOQV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sy4sRAKOQV .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sy4sRAKOQV .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sy4sRAKOQV a {
  display: inline;
  font-weight: bold;
}
.cid-sy4sRAKOQV img {
  display: inline;
  padding-right: 10px;
}
.cid-sy4sRAKOQV .dropdown-toggle:after {
  display: none;
}
.cid-sy4sRAKOQV .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sy4sRAKOQV .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sy4sRAKOQV .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4sRBeWrH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4sRBeWrH .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4sRBeWrH .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4sRBeWrH .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4sRBeWrH .mbr-text {
  color: #444;
}
.cid-sy4sRBeWrH h5 {
  margin-bottom: 0;
}
.cid-sy4sRBeWrH .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4sRBeWrH .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4sRBeWrH .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4sRBeWrH .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4sRBeWrH .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4sRBeWrH .social-list a:hover {
  opacity: .4;
}
.cid-sy4sRBeWrH .media-container-row > div {
  padding: 0px;
}
.cid-sy4sRBeWrH .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4sRBeWrH .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4sRBeWrH .group-title SPAN {
  color: #656565;
}
.cid-sy4sRBeWrH .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4sRBeWrH .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4sRBeWrH h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4sRBeWrH .links SPAN {
  color: #9e9e9e;
}
.cid-sy4sRBeWrH .links,
.cid-sy4sRBeWrH .social-list {
  color: #ffffff;
}
.cid-sy4fiItGiT {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/10.jpg");
}
.cid-sy4fiItGiT .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-sy4fiItGiT .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sy4fiItGiT .mbr-section-title,
.cid-sy4fiItGiT .icon-wrap,
.cid-sy4fiItGiT .mbr-section-btn {
  text-align: left;
}
.cid-sxZ50K3kHr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxZ50K3kHr nav.navbar {
  position: fixed;
}
.cid-sxZ50K3kHr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sxZ50K3kHr .dropdown-item:hover,
.cid-sxZ50K3kHr .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxZ50K3kHr .nav-link {
  position: relative;
  padding: 0;
}
.cid-sxZ50K3kHr .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sxZ50K3kHr .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown-menu,
.cid-sxZ50K3kHr .navbar.opened {
  background: #ffffff !important;
}
.cid-sxZ50K3kHr .nav-item:focus,
.cid-sxZ50K3kHr .nav-link:focus {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxZ50K3kHr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxZ50K3kHr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.opened {
  transition: all 0.3s;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxZ50K3kHr .navbar .navbar-logo img {
  width: auto;
}
.cid-sxZ50K3kHr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar.collapsed {
  justify-content: right;
}
.cid-sxZ50K3kHr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxZ50K3kHr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxZ50K3kHr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sxZ50K3kHr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxZ50K3kHr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxZ50K3kHr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxZ50K3kHr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sxZ50K3kHr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxZ50K3kHr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxZ50K3kHr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxZ50K3kHr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxZ50K3kHr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxZ50K3kHr .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxZ50K3kHr .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown-item.active,
.cid-sxZ50K3kHr .dropdown-item:active {
  background-color: transparent;
}
.cid-sxZ50K3kHr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxZ50K3kHr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxZ50K3kHr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxZ50K3kHr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxZ50K3kHr button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxZ50K3kHr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxZ50K3kHr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxZ50K3kHr .navbar {
    height: 70px;
  }
  .cid-sxZ50K3kHr .navbar.opened {
    height: auto;
  }
  .cid-sxZ50K3kHr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxZ50K3kHr .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sxZ50K3kHr .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sxZ50K3kHr a {
  display: inline;
  font-weight: bold;
}
.cid-sxZ50K3kHr img {
  display: inline;
  padding-right: 10px;
}
.cid-sxZ50K3kHr .dropdown-toggle:after {
  display: none;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sxZ50K3kHr .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sxZ50K3kHr .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4iZCVSYC {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-sy4iZCVSYC .title {
  padding: 0 2rem;
  color: #36187d;
}
.cid-sy4iZCVSYC .card-title {
  max-width: 600px;
  color: #55b4d4;
}
.cid-sy4iZCVSYC .card-wrapper {
  overflow: visible;
  display: flex;
  padding: 3rem 4rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-sy4iZCVSYC .card-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}
.cid-sy4iZCVSYC .mbr-iconfont {
  font-size: 2.5rem;
  color: #0196e3;
  padding: 2rem;
  padding-top: 2.2rem;
  cursor: pointer;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sy4iZCVSYC .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-sy4iZCVSYC img {
  width: 150px;
  background: white;
  height: 150px;
  border-radius: 50%;
  padding: 1rem;
  object-fit: contain;
  margin: auto;
}
.cid-sy4iZCVSYC .card-box {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sy4iZCVSYC .card-box {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sy4iZCVSYC .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-sy4iZCVSYC .card-text {
  color: #0196e3;
}
.cid-sy4jnS0uBl {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-sy4jnS0uBl .title {
  padding: 0 2rem;
  color: #36187d;
}
.cid-sy4jnS0uBl .card-title {
  max-width: 600px;
  color: #55b4d4;
}
.cid-sy4jnS0uBl .card-wrapper {
  overflow: visible;
  display: flex;
  padding: 3rem 4rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-sy4jnS0uBl .card-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}
.cid-sy4jnS0uBl .mbr-iconfont {
  font-size: 2.5rem;
  color: #0196e3;
  padding: 2rem;
  padding-top: 2.2rem;
  cursor: pointer;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sy4jnS0uBl .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-sy4jnS0uBl img {
  width: 150px;
  background: white;
  height: 150px;
  border-radius: 50%;
  padding: 1rem;
  object-fit: contain;
  margin: auto;
}
.cid-sy4jnS0uBl .card-box {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sy4jnS0uBl .card-box {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sy4jnS0uBl .mt-5 {
    margin-top: 0.5rem!important;
  }
}
.cid-sy4jnS0uBl .card-text {
  color: #0196e3;
}
.cid-sy4f7LbATX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4f7LbATX .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4f7LbATX .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4f7LbATX .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4f7LbATX .mbr-text {
  color: #444;
}
.cid-sy4f7LbATX h5 {
  margin-bottom: 0;
}
.cid-sy4f7LbATX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4f7LbATX .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4f7LbATX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4f7LbATX .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4f7LbATX .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4f7LbATX .social-list a:hover {
  opacity: .4;
}
.cid-sy4f7LbATX .media-container-row > div {
  padding: 0px;
}
.cid-sy4f7LbATX .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4f7LbATX .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4f7LbATX .group-title SPAN {
  color: #656565;
}
.cid-sy4f7LbATX .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4f7LbATX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4f7LbATX h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4f7LbATX .links SPAN {
  color: #9e9e9e;
}
.cid-sy4f7LbATX .links,
.cid-sy4f7LbATX .social-list {
  color: #ffffff;
}
.cid-sy3jAqUvCo {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bgpsicologia-852x334.jpg");
}
.cid-sy3jAqUvCo .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sy3jAqUvCo .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sy3jAqUvCo .card-img span {
  font-size: 100px;
}
.cid-sy3jAqUvCo .mbr-text,
.cid-sy3jAqUvCo .mbr-section-btn {
  color: #efefef;
}
.cid-sy3jAqUvCo .mbr-section-title,
.cid-sy3jAqUvCo .card-img DIV {
  text-align: left;
}
.cid-sy3ldl947I {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sy3ldl947I .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sy3ldl947I .text-wrapper {
    padding: 2rem;
  }
}
.cid-sy3ldl947I .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sy3ldl947I .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-sy3ldl947I .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #55b4d4;
}
.cid-sy3ldl947I .name {
  margin-top: 0.70rem;
  color: #47a15d;
  text-align: left;
}
.cid-sy3ldl947I .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-sy3ldl947I .mbr-text,
.cid-sy3ldl947I .mbr-section-data {
  text-align: left;
}
.cid-sy3ldl947I .mbr-text,
.cid-sy3ldl947I .mbr-section-btn {
  text-align: left;
  color: #8d8d8d;
}
.cid-sy3ldl947I .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-sy3lJH6hOS {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sy3lJH6hOS .text-wrapper {
    padding: 2rem;
  }
}
.cid-sy3lJH6hOS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sy3lJH6hOS .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-sy3lJH6hOS .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #55b4d4;
}
.cid-sy3lJH6hOS .name {
  margin-top: 0.70rem;
  color: #47a15d;
  text-align: left;
}
.cid-sy3lJH6hOS .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-sy3lJH6hOS .mbr-text,
.cid-sy3lJH6hOS .mbr-section-data {
  text-align: left;
}
.cid-sy3lJH6hOS .mbr-text,
.cid-sy3lJH6hOS .mbr-section-btn {
  text-align: left;
  color: #8d8d8d;
}
.cid-sy3lJH6hOS .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-sy3zC32ady {
  padding-top: 0px;
  padding-bottom: 15px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-sy3zC32ady .mbr-overlay {
  background: linear-gradient(90deg, #d3cffb, #d7e8f6);
}
.cid-sy3zC32ady .card-wrap {
  background-color: #55b4d4;
  padding: 1rem;
  margin: 0;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (min-width: 1200px) {
  .cid-sy3zC32ady .card-wrap {
    width: calc(70% + 10rem);
    margin-left: 2rem;
  }
}
.cid-sy3zC32ady .img-wrap img {
  width: 50%;
  border-radius: .25rem;
}
.cid-sy3zC32ady .mbr-section-subtitle,
.cid-sy3zC32ady .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sy3CKQ46io {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-sy3CKQ46io .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-sy3CKQ46io .panel-group {
  border: none;
}
.cid-sy3CKQ46io .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-sy3CKQ46io .card-header {
    padding: 1rem 0rem;
  }
}
.cid-sy3CKQ46io .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-sy3CKQ46io .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-sy3CKQ46io .content {
  margin: 5rem auto;
}
.cid-sy3CKQ46io .img-col {
  padding: 0;
}
.cid-sy3CKQ46io .img-item {
  height: 100%;
}
.cid-sy3CKQ46io img {
  height: 100%;
  object-fit: cover;
}
.cid-sy3CKQ46io .collapsed span {
  transform: rotate(0deg);
}
.cid-sy3CKQ46io .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sy3CKQ46io p {
  margin-bottom: 0.3rem;
}
.cid-sy3CKQ46io .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-sy3CKQ46io .panel-title-edit {
  color: #000000;
}
.cid-sy3CKQ46io .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-sy3CKQ46io .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-sy3CKQ46io .panel-title-edit,
.cid-sy3CKQ46io .mbr-iconfont {
  color: #55b4d4;
}
.cid-sy3CKQ46io .panel-text {
  color: #777777;
}
.cid-sy3CKQ46io H4 {
  color: #777777;
}
.cid-sxZ50K3kHr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxZ50K3kHr nav.navbar {
  position: fixed;
}
.cid-sxZ50K3kHr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sxZ50K3kHr .dropdown-item:hover,
.cid-sxZ50K3kHr .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxZ50K3kHr .nav-link {
  position: relative;
  padding: 0;
}
.cid-sxZ50K3kHr .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sxZ50K3kHr .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown-menu,
.cid-sxZ50K3kHr .navbar.opened {
  background: #ffffff !important;
}
.cid-sxZ50K3kHr .nav-item:focus,
.cid-sxZ50K3kHr .nav-link:focus {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxZ50K3kHr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxZ50K3kHr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.opened {
  transition: all 0.3s;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxZ50K3kHr .navbar .navbar-logo img {
  width: auto;
}
.cid-sxZ50K3kHr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar.collapsed {
  justify-content: right;
}
.cid-sxZ50K3kHr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxZ50K3kHr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxZ50K3kHr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sxZ50K3kHr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxZ50K3kHr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxZ50K3kHr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxZ50K3kHr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sxZ50K3kHr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxZ50K3kHr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxZ50K3kHr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxZ50K3kHr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxZ50K3kHr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxZ50K3kHr .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxZ50K3kHr .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown-item.active,
.cid-sxZ50K3kHr .dropdown-item:active {
  background-color: transparent;
}
.cid-sxZ50K3kHr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxZ50K3kHr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxZ50K3kHr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxZ50K3kHr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxZ50K3kHr button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxZ50K3kHr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxZ50K3kHr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxZ50K3kHr .navbar {
    height: 70px;
  }
  .cid-sxZ50K3kHr .navbar.opened {
    height: auto;
  }
  .cid-sxZ50K3kHr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxZ50K3kHr .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sxZ50K3kHr .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sxZ50K3kHr a {
  display: inline;
  font-weight: bold;
}
.cid-sxZ50K3kHr img {
  display: inline;
  padding-right: 10px;
}
.cid-sxZ50K3kHr .dropdown-toggle:after {
  display: none;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sxZ50K3kHr .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sxZ50K3kHr .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4f7LbATX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4f7LbATX .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4f7LbATX .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4f7LbATX .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4f7LbATX .mbr-text {
  color: #444;
}
.cid-sy4f7LbATX h5 {
  margin-bottom: 0;
}
.cid-sy4f7LbATX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4f7LbATX .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4f7LbATX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4f7LbATX .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4f7LbATX .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4f7LbATX .social-list a:hover {
  opacity: .4;
}
.cid-sy4f7LbATX .media-container-row > div {
  padding: 0px;
}
.cid-sy4f7LbATX .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4f7LbATX .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4f7LbATX .group-title SPAN {
  color: #656565;
}
.cid-sy4f7LbATX .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4f7LbATX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4f7LbATX h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4f7LbATX .links SPAN {
  color: #9e9e9e;
}
.cid-sy4f7LbATX .links,
.cid-sy4f7LbATX .social-list {
  color: #ffffff;
}
.cid-sy4utBiKgp {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bgpsicologia-852x334.jpg");
}
.cid-sy4utBiKgp .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sy4utBiKgp .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sy4utBiKgp .card-img span {
  font-size: 100px;
}
.cid-sy4utBiKgp .mbr-text,
.cid-sy4utBiKgp .mbr-section-btn {
  color: #efefef;
}
.cid-sy4utBiKgp .mbr-section-title,
.cid-sy4utBiKgp .card-img DIV {
  text-align: left;
}
.cid-sy4utBR3Nz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sy4utBR3Nz .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sy4utBR3Nz .text-wrapper {
    padding: 2rem;
  }
}
.cid-sy4utBR3Nz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sy4utBR3Nz .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-sy4utBR3Nz .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #55b4d4;
}
.cid-sy4utBR3Nz .name {
  margin-top: 0.70rem;
  color: #47a15d;
  text-align: left;
}
.cid-sy4utBR3Nz .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-sy4utBR3Nz .mbr-text,
.cid-sy4utBR3Nz .mbr-section-data {
  text-align: left;
}
.cid-sy4utBR3Nz .mbr-text,
.cid-sy4utBR3Nz .mbr-section-btn {
  text-align: left;
  color: #8d8d8d;
}
.cid-sy4utBR3Nz .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-sy4utDsE1d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sy4utDsE1d nav.navbar {
  position: fixed;
}
.cid-sy4utDsE1d .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4utDsE1d .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sy4utDsE1d .dropdown-item:hover,
.cid-sy4utDsE1d .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sy4utDsE1d .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sy4utDsE1d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sy4utDsE1d .nav-link {
  position: relative;
  padding: 0;
}
.cid-sy4utDsE1d .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sy4utDsE1d .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sy4utDsE1d .dropdown-menu,
.cid-sy4utDsE1d .navbar.opened {
  background: #ffffff !important;
}
.cid-sy4utDsE1d .nav-item:focus,
.cid-sy4utDsE1d .nav-link:focus {
  outline: none;
}
.cid-sy4utDsE1d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sy4utDsE1d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sy4utDsE1d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sy4utDsE1d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy4utDsE1d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sy4utDsE1d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sy4utDsE1d .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sy4utDsE1d .navbar.opened {
  transition: all 0.3s;
}
.cid-sy4utDsE1d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sy4utDsE1d .navbar .navbar-logo img {
  width: auto;
}
.cid-sy4utDsE1d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sy4utDsE1d .navbar.collapsed {
  justify-content: right;
}
.cid-sy4utDsE1d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sy4utDsE1d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sy4utDsE1d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sy4utDsE1d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sy4utDsE1d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sy4utDsE1d .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sy4utDsE1d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sy4utDsE1d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sy4utDsE1d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sy4utDsE1d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sy4utDsE1d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sy4utDsE1d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sy4utDsE1d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sy4utDsE1d .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sy4utDsE1d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sy4utDsE1d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sy4utDsE1d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sy4utDsE1d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sy4utDsE1d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sy4utDsE1d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sy4utDsE1d .navbar.navbar-short {
  min-height: 60px;
}
.cid-sy4utDsE1d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sy4utDsE1d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sy4utDsE1d .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sy4utDsE1d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sy4utDsE1d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sy4utDsE1d .dropdown-item.active,
.cid-sy4utDsE1d .dropdown-item:active {
  background-color: transparent;
}
.cid-sy4utDsE1d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sy4utDsE1d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sy4utDsE1d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sy4utDsE1d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sy4utDsE1d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sy4utDsE1d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sy4utDsE1d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sy4utDsE1d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sy4utDsE1d button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sy4utDsE1d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sy4utDsE1d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sy4utDsE1d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4utDsE1d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy4utDsE1d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sy4utDsE1d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4utDsE1d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sy4utDsE1d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sy4utDsE1d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy4utDsE1d .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sy4utDsE1d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sy4utDsE1d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sy4utDsE1d .navbar {
    height: 70px;
  }
  .cid-sy4utDsE1d .navbar.opened {
    height: auto;
  }
  .cid-sy4utDsE1d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sy4utDsE1d .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sy4utDsE1d .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sy4utDsE1d a {
  display: inline;
  font-weight: bold;
}
.cid-sy4utDsE1d img {
  display: inline;
  padding-right: 10px;
}
.cid-sy4utDsE1d .dropdown-toggle:after {
  display: none;
}
.cid-sy4utDsE1d .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sy4utDsE1d .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sy4utDsE1d .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4utDWdqi {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4utDWdqi .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4utDWdqi .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4utDWdqi .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4utDWdqi .mbr-text {
  color: #444;
}
.cid-sy4utDWdqi h5 {
  margin-bottom: 0;
}
.cid-sy4utDWdqi .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4utDWdqi .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4utDWdqi .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4utDWdqi .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4utDWdqi .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4utDWdqi .social-list a:hover {
  opacity: .4;
}
.cid-sy4utDWdqi .media-container-row > div {
  padding: 0px;
}
.cid-sy4utDWdqi .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4utDWdqi .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4utDWdqi .group-title SPAN {
  color: #656565;
}
.cid-sy4utDWdqi .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4utDWdqi .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4utDWdqi h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4utDWdqi .links SPAN {
  color: #9e9e9e;
}
.cid-sy4utDWdqi .links,
.cid-sy4utDWdqi .social-list {
  color: #ffffff;
}
.cid-sy3Lyv12GS {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bgpsicologia-852x334.jpg");
}
.cid-sy3Lyv12GS .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sy3Lyv12GS .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sy3Lyv12GS .card-img span {
  font-size: 100px;
}
.cid-sy3Lyv12GS .mbr-text,
.cid-sy3Lyv12GS .mbr-section-btn {
  color: #efefef;
}
.cid-sy3Lyv12GS .mbr-section-title,
.cid-sy3Lyv12GS .card-img DIV {
  text-align: left;
}
.cid-sy3LyvCXSZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sy3LyvCXSZ .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sy3LyvCXSZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sy3LyvCXSZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sy3LyvCXSZ .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-sy3LyvCXSZ .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #55b4d4;
}
.cid-sy3LyvCXSZ .name {
  margin-top: 0.70rem;
  color: #47a15d;
  text-align: left;
}
.cid-sy3LyvCXSZ .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-sy3LyvCXSZ .mbr-text,
.cid-sy3LyvCXSZ .mbr-section-data {
  text-align: left;
}
.cid-sy3LyvCXSZ .mbr-text,
.cid-sy3LyvCXSZ .mbr-section-btn {
  text-align: left;
  color: #8d8d8d;
}
.cid-sy3LyvCXSZ .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-sy3Lyw3y04 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sy3Lyw3y04 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sy3Lyw3y04 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sy3Lyw3y04 .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-sy3Lyw3y04 .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #55b4d4;
}
.cid-sy3Lyw3y04 .name {
  margin-top: 0.70rem;
  color: #47a15d;
  text-align: left;
}
.cid-sy3Lyw3y04 .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-sy3Lyw3y04 .mbr-text,
.cid-sy3Lyw3y04 .mbr-section-data {
  text-align: left;
}
.cid-sy3Lyw3y04 .mbr-text,
.cid-sy3Lyw3y04 .mbr-section-btn {
  text-align: left;
  color: #8d8d8d;
}
.cid-sy3Lyw3y04 .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-sy3LywmIWk {
  padding-top: 0px;
  padding-bottom: 15px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-sy3LywmIWk .mbr-overlay {
  background: linear-gradient(90deg, #d3cffb, #d7e8f6);
}
.cid-sy3LywmIWk .card-wrap {
  background-color: #55b4d4;
  padding: 1rem;
  margin: 0;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (min-width: 1200px) {
  .cid-sy3LywmIWk .card-wrap {
    width: calc(70% + 10rem);
    margin-left: 2rem;
  }
}
.cid-sy3LywmIWk .img-wrap img {
  width: 50%;
  border-radius: .25rem;
}
.cid-sy3LywmIWk .mbr-section-subtitle,
.cid-sy3LywmIWk .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sy3LywHUSy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-sy3LywHUSy .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-sy3LywHUSy .panel-group {
  border: none;
}
.cid-sy3LywHUSy .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-sy3LywHUSy .card-header {
    padding: 1rem 0rem;
  }
}
.cid-sy3LywHUSy .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-sy3LywHUSy .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-sy3LywHUSy .content {
  margin: 5rem auto;
}
.cid-sy3LywHUSy .img-col {
  padding: 0;
}
.cid-sy3LywHUSy .img-item {
  height: 100%;
}
.cid-sy3LywHUSy img {
  height: 100%;
  object-fit: cover;
}
.cid-sy3LywHUSy .collapsed span {
  transform: rotate(0deg);
}
.cid-sy3LywHUSy .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sy3LywHUSy p {
  margin-bottom: 0.3rem;
}
.cid-sy3LywHUSy .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-sy3LywHUSy .panel-title-edit {
  color: #000000;
}
.cid-sy3LywHUSy .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-sy3LywHUSy .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-sy3LywHUSy .panel-title-edit,
.cid-sy3LywHUSy .mbr-iconfont {
  color: #55b4d4;
}
.cid-sy3LywHUSy .panel-text {
  color: #777777;
}
.cid-sy3LywHUSy H4 {
  color: #777777;
}
.cid-sy3LyxyUHy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sy3LyxyUHy nav.navbar {
  position: fixed;
}
.cid-sy3LyxyUHy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy3LyxyUHy .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sy3LyxyUHy .dropdown-item:hover,
.cid-sy3LyxyUHy .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sy3LyxyUHy .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sy3LyxyUHy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sy3LyxyUHy .nav-link {
  position: relative;
  padding: 0;
}
.cid-sy3LyxyUHy .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sy3LyxyUHy .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sy3LyxyUHy .dropdown-menu,
.cid-sy3LyxyUHy .navbar.opened {
  background: #ffffff !important;
}
.cid-sy3LyxyUHy .nav-item:focus,
.cid-sy3LyxyUHy .nav-link:focus {
  outline: none;
}
.cid-sy3LyxyUHy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sy3LyxyUHy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sy3LyxyUHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sy3LyxyUHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy3LyxyUHy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sy3LyxyUHy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sy3LyxyUHy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sy3LyxyUHy .navbar.opened {
  transition: all 0.3s;
}
.cid-sy3LyxyUHy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sy3LyxyUHy .navbar .navbar-logo img {
  width: auto;
}
.cid-sy3LyxyUHy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sy3LyxyUHy .navbar.collapsed {
  justify-content: right;
}
.cid-sy3LyxyUHy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sy3LyxyUHy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sy3LyxyUHy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sy3LyxyUHy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sy3LyxyUHy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sy3LyxyUHy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sy3LyxyUHy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sy3LyxyUHy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sy3LyxyUHy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sy3LyxyUHy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sy3LyxyUHy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sy3LyxyUHy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sy3LyxyUHy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sy3LyxyUHy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sy3LyxyUHy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sy3LyxyUHy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sy3LyxyUHy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sy3LyxyUHy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sy3LyxyUHy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sy3LyxyUHy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sy3LyxyUHy .navbar.navbar-short {
  min-height: 60px;
}
.cid-sy3LyxyUHy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sy3LyxyUHy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sy3LyxyUHy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sy3LyxyUHy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sy3LyxyUHy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sy3LyxyUHy .dropdown-item.active,
.cid-sy3LyxyUHy .dropdown-item:active {
  background-color: transparent;
}
.cid-sy3LyxyUHy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sy3LyxyUHy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sy3LyxyUHy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sy3LyxyUHy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sy3LyxyUHy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sy3LyxyUHy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sy3LyxyUHy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sy3LyxyUHy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sy3LyxyUHy button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sy3LyxyUHy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sy3LyxyUHy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sy3LyxyUHy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy3LyxyUHy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy3LyxyUHy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sy3LyxyUHy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy3LyxyUHy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sy3LyxyUHy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sy3LyxyUHy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy3LyxyUHy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sy3LyxyUHy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sy3LyxyUHy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sy3LyxyUHy .navbar {
    height: 70px;
  }
  .cid-sy3LyxyUHy .navbar.opened {
    height: auto;
  }
  .cid-sy3LyxyUHy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sy3LyxyUHy .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sy3LyxyUHy .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sy3LyxyUHy a {
  display: inline;
  font-weight: bold;
}
.cid-sy3LyxyUHy img {
  display: inline;
  padding-right: 10px;
}
.cid-sy3LyxyUHy .dropdown-toggle:after {
  display: none;
}
.cid-sy3LyxyUHy .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sy3LyxyUHy .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sy3LyxyUHy .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4f7LbATX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4f7LbATX .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4f7LbATX .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4f7LbATX .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4f7LbATX .mbr-text {
  color: #444;
}
.cid-sy4f7LbATX h5 {
  margin-bottom: 0;
}
.cid-sy4f7LbATX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4f7LbATX .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4f7LbATX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4f7LbATX .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4f7LbATX .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4f7LbATX .social-list a:hover {
  opacity: .4;
}
.cid-sy4f7LbATX .media-container-row > div {
  padding: 0px;
}
.cid-sy4f7LbATX .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4f7LbATX .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4f7LbATX .group-title SPAN {
  color: #656565;
}
.cid-sy4f7LbATX .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4f7LbATX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4f7LbATX h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4f7LbATX .links SPAN {
  color: #9e9e9e;
}
.cid-sy4f7LbATX .links,
.cid-sy4f7LbATX .social-list {
  color: #ffffff;
}
.cid-sy3Ercg1hY {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bgpsicologia-852x334.jpg");
}
.cid-sy3Ercg1hY .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sy3Ercg1hY .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sy3Ercg1hY .card-img span {
  font-size: 100px;
}
.cid-sy3Ercg1hY .mbr-text,
.cid-sy3Ercg1hY .mbr-section-btn {
  color: #efefef;
}
.cid-sy3Ercg1hY .mbr-section-title,
.cid-sy3Ercg1hY .card-img DIV {
  text-align: left;
}
.cid-sy3Erd2VTR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sy3Erd2VTR .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sy3Erd2VTR .text-wrapper {
    padding: 2rem;
  }
}
.cid-sy3Erd2VTR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sy3Erd2VTR .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-sy3Erd2VTR .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #55b4d4;
}
.cid-sy3Erd2VTR .name {
  margin-top: 0.70rem;
  color: #47a15d;
  text-align: left;
}
.cid-sy3Erd2VTR .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-sy3Erd2VTR .mbr-text,
.cid-sy3Erd2VTR .mbr-section-data {
  text-align: left;
}
.cid-sy3Erd2VTR .mbr-text,
.cid-sy3Erd2VTR .mbr-section-btn {
  text-align: left;
  color: #8d8d8d;
}
.cid-sy3Erd2VTR .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-sy3ErdpfXZ {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sy3ErdpfXZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sy3ErdpfXZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sy3ErdpfXZ .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-sy3ErdpfXZ .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #55b4d4;
}
.cid-sy3ErdpfXZ .name {
  margin-top: 0.70rem;
  color: #47a15d;
  text-align: left;
}
.cid-sy3ErdpfXZ .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-sy3ErdpfXZ .mbr-text,
.cid-sy3ErdpfXZ .mbr-section-data {
  text-align: left;
}
.cid-sy3ErdpfXZ .mbr-text,
.cid-sy3ErdpfXZ .mbr-section-btn {
  text-align: left;
  color: #8d8d8d;
}
.cid-sy3ErdpfXZ .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-sy3ErdL3Qf {
  padding-top: 0px;
  padding-bottom: 15px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-sy3ErdL3Qf .mbr-overlay {
  background: linear-gradient(90deg, #d3cffb, #d7e8f6);
}
.cid-sy3ErdL3Qf .card-wrap {
  background-color: #55b4d4;
  padding: 1rem;
  margin: 0;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (min-width: 1200px) {
  .cid-sy3ErdL3Qf .card-wrap {
    width: calc(70% + 10rem);
    margin-left: 2rem;
  }
}
.cid-sy3ErdL3Qf .img-wrap img {
  width: 50%;
  border-radius: .25rem;
}
.cid-sy3ErdL3Qf .mbr-section-subtitle,
.cid-sy3ErdL3Qf .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sy3Ere7yt8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-sy3Ere7yt8 .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-sy3Ere7yt8 .panel-group {
  border: none;
}
.cid-sy3Ere7yt8 .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-sy3Ere7yt8 .card-header {
    padding: 1rem 0rem;
  }
}
.cid-sy3Ere7yt8 .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-sy3Ere7yt8 .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-sy3Ere7yt8 .content {
  margin: 5rem auto;
}
.cid-sy3Ere7yt8 .img-col {
  padding: 0;
}
.cid-sy3Ere7yt8 .img-item {
  height: 100%;
}
.cid-sy3Ere7yt8 img {
  height: 100%;
  object-fit: cover;
}
.cid-sy3Ere7yt8 .collapsed span {
  transform: rotate(0deg);
}
.cid-sy3Ere7yt8 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sy3Ere7yt8 p {
  margin-bottom: 0.3rem;
}
.cid-sy3Ere7yt8 .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-sy3Ere7yt8 .panel-title-edit {
  color: #000000;
}
.cid-sy3Ere7yt8 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-sy3Ere7yt8 .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-sy3Ere7yt8 .panel-title-edit,
.cid-sy3Ere7yt8 .mbr-iconfont {
  color: #55b4d4;
}
.cid-sy3Ere7yt8 .panel-text {
  color: #777777;
}
.cid-sy3Ere7yt8 H4 {
  color: #777777;
}
.cid-sy3ICHA1Tk {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sy3ICHA1Tk H2 {
  color: #89b758;
}
.cid-sy3ICHA1Tk .mbr-text,
.cid-sy3ICHA1Tk .mbr-section-btn {
  color: #808080;
}
.cid-sy3ICHA1Tk img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-sy3ICHA1Tk img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-sy3ICHA1Tk H1 {
  color: #55b4d4;
}
.cid-sy3JaqtBtf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-sy3JaqtBtf .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.cid-sy3JaqtBtf .panel-group {
  border: none;
}
.cid-sy3JaqtBtf .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-sy3JaqtBtf .card-header {
    padding: 1rem 0rem;
  }
}
.cid-sy3JaqtBtf .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-sy3JaqtBtf .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-sy3JaqtBtf .content {
  margin: 5rem auto;
}
.cid-sy3JaqtBtf .img-col {
  padding: 0;
}
.cid-sy3JaqtBtf .img-item {
  height: 100%;
}
.cid-sy3JaqtBtf img {
  height: 100%;
  object-fit: cover;
}
.cid-sy3JaqtBtf .collapsed span {
  transform: rotate(0deg);
}
.cid-sy3JaqtBtf .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sy3JaqtBtf p {
  margin-bottom: 0.3rem;
}
.cid-sy3JaqtBtf .mbri-arrow-up {
  transform: rotate(45deg);
}
.cid-sy3JaqtBtf .panel-title-edit {
  color: #000000;
}
.cid-sy3JaqtBtf .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 10px;
}
.cid-sy3JaqtBtf .card {
  background: white;
  padding: 0rem 1rem;
  border-radius: 10px!important;
}
.cid-sy3JaqtBtf .panel-title-edit,
.cid-sy3JaqtBtf .mbr-iconfont {
  color: #55b4d4;
}
.cid-sy3JaqtBtf .panel-text {
  color: #465052;
}
.cid-sy3JaqtBtf H4 {
  color: #55b4d4;
  text-align: left;
}
.cid-sy3JaqtBtf H3 {
  text-align: left;
  color: #999999;
}
.cid-sy3ErfJEgh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sy3ErfJEgh nav.navbar {
  position: fixed;
}
.cid-sy3ErfJEgh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy3ErfJEgh .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sy3ErfJEgh .dropdown-item:hover,
.cid-sy3ErfJEgh .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sy3ErfJEgh .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sy3ErfJEgh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sy3ErfJEgh .nav-link {
  position: relative;
  padding: 0;
}
.cid-sy3ErfJEgh .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sy3ErfJEgh .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sy3ErfJEgh .dropdown-menu,
.cid-sy3ErfJEgh .navbar.opened {
  background: #ffffff !important;
}
.cid-sy3ErfJEgh .nav-item:focus,
.cid-sy3ErfJEgh .nav-link:focus {
  outline: none;
}
.cid-sy3ErfJEgh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sy3ErfJEgh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sy3ErfJEgh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sy3ErfJEgh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sy3ErfJEgh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sy3ErfJEgh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sy3ErfJEgh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sy3ErfJEgh .navbar.opened {
  transition: all 0.3s;
}
.cid-sy3ErfJEgh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sy3ErfJEgh .navbar .navbar-logo img {
  width: auto;
}
.cid-sy3ErfJEgh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sy3ErfJEgh .navbar.collapsed {
  justify-content: right;
}
.cid-sy3ErfJEgh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sy3ErfJEgh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sy3ErfJEgh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sy3ErfJEgh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sy3ErfJEgh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sy3ErfJEgh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sy3ErfJEgh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sy3ErfJEgh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sy3ErfJEgh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sy3ErfJEgh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sy3ErfJEgh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sy3ErfJEgh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sy3ErfJEgh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sy3ErfJEgh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sy3ErfJEgh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sy3ErfJEgh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sy3ErfJEgh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sy3ErfJEgh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sy3ErfJEgh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sy3ErfJEgh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sy3ErfJEgh .navbar.navbar-short {
  min-height: 60px;
}
.cid-sy3ErfJEgh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sy3ErfJEgh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sy3ErfJEgh .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sy3ErfJEgh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sy3ErfJEgh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sy3ErfJEgh .dropdown-item.active,
.cid-sy3ErfJEgh .dropdown-item:active {
  background-color: transparent;
}
.cid-sy3ErfJEgh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sy3ErfJEgh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sy3ErfJEgh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sy3ErfJEgh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sy3ErfJEgh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sy3ErfJEgh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sy3ErfJEgh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sy3ErfJEgh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sy3ErfJEgh button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sy3ErfJEgh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sy3ErfJEgh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sy3ErfJEgh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy3ErfJEgh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sy3ErfJEgh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sy3ErfJEgh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy3ErfJEgh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sy3ErfJEgh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sy3ErfJEgh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sy3ErfJEgh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sy3ErfJEgh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sy3ErfJEgh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sy3ErfJEgh .navbar {
    height: 70px;
  }
  .cid-sy3ErfJEgh .navbar.opened {
    height: auto;
  }
  .cid-sy3ErfJEgh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sy3ErfJEgh .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sy3ErfJEgh .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sy3ErfJEgh a {
  display: inline;
  font-weight: bold;
}
.cid-sy3ErfJEgh img {
  display: inline;
  padding-right: 10px;
}
.cid-sy3ErfJEgh .dropdown-toggle:after {
  display: none;
}
.cid-sy3ErfJEgh .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sy3ErfJEgh .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sy3ErfJEgh .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4f7LbATX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4f7LbATX .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4f7LbATX .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4f7LbATX .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4f7LbATX .mbr-text {
  color: #444;
}
.cid-sy4f7LbATX h5 {
  margin-bottom: 0;
}
.cid-sy4f7LbATX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4f7LbATX .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4f7LbATX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4f7LbATX .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4f7LbATX .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4f7LbATX .social-list a:hover {
  opacity: .4;
}
.cid-sy4f7LbATX .media-container-row > div {
  padding: 0px;
}
.cid-sy4f7LbATX .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4f7LbATX .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4f7LbATX .group-title SPAN {
  color: #656565;
}
.cid-sy4f7LbATX .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4f7LbATX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4f7LbATX h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4f7LbATX .links SPAN {
  color: #9e9e9e;
}
.cid-sy4f7LbATX .links,
.cid-sy4f7LbATX .social-list {
  color: #ffffff;
}
.cid-sy3iHyJmfT {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-color: #0196e3;
}
.cid-sy3iHyJmfT .mbr-section-title {
  color: #ffffff;
}
.cid-sy3iHyJmfT .mbr-section-subtitle {
  color: #0196e3;
}
.cid-sy3iHyJmfT .mbr-text {
  color: #ffffff;
}
.cid-sy3iHyJmfT .title-col {
  border-right: 2px solid currentColor;
  color: #0196e3;
  margin-right: 3rem;
  align-items: center;
  display: inline-flex;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-sy3iHyJmfT .title-col {
    margin-right: 0;
    border-right: 0;
  }
}
.cid-sy3iHyJmfT .text-col {
  align-items: center;
  display: flex;
}
.cid-sy3iHyJmfT .mbr-section-subtitle,
.cid-sy3iHyJmfT .title-col {
  width: 100%;
  color: #ffffff;
}
.cid-sy36uXsWPn {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sy36uXsWPn .row {
  background: #ffffff;
  padding: 2rem 1rem;
  margin: 0rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-sy36uXsWPn .row {
    padding: 1rem 0rem;
  }
}
.cid-sy36uXsWPn img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-sy36uXsWPn img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sy36uXsWPn .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-sy36uXsWPn .mbr-text,
.cid-sy36uXsWPn .mbr-section-btn {
  color: #777777;
}
.cid-sy36uXsWPn .mbr-section-subtitle {
  color: #55b4d4;
}
.cid-sy363uzsVp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy363uzsVp .mbr-iconfont {
  color: #eceae4;
}
.cid-sy363uzsVp .mbr-iconfont:hover {
  color: #149dcc !important;
}
.cid-sy363uzsVp .mbr-text {
  margin: 1.5rem 0;
}
.cid-sy363uzsVp .card-title {
  margin-bottom: 0.3rem;
}
.cid-sy363uzsVp .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sy363uzsVp .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy363uzsVp .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sy363uzsVp .mbr-text,
.cid-sy363uzsVp .social-links {
  color: #767676;
}
.cid-sy363uzsVp H2 {
  color: #55b4d4;
}
.cid-sy363zRZwa {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy363zRZwa .mbr-iconfont {
  color: #eceae4;
}
.cid-sy363zRZwa .mbr-iconfont:hover {
  color: #149dcc !important;
}
.cid-sy363zRZwa .mbr-text {
  margin: 1.5rem 0;
}
.cid-sy363zRZwa .card-title {
  margin-bottom: 0.3rem;
}
.cid-sy363zRZwa .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
}
.cid-sy363zRZwa .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy363zRZwa .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sy363zRZwa .mbr-text,
.cid-sy363zRZwa .social-links {
  color: #767676;
}
.cid-sy363Dhg5D {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy363Dhg5D .mbr-iconfont {
  color: #eceae4;
}
.cid-sy363Dhg5D .mbr-iconfont:hover {
  color: #149dcc !important;
}
.cid-sy363Dhg5D .mbr-text {
  margin: 1.5rem 0;
}
.cid-sy363Dhg5D .card-title {
  margin-bottom: 0.3rem;
}
.cid-sy363Dhg5D .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sy363Dhg5D .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy363Dhg5D .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sy363Dhg5D .mbr-text,
.cid-sy363Dhg5D .social-links {
  color: #767676;
}
.cid-sy363Dhg5D H2 {
  color: #55b4d4;
}
.cid-sy363GGZ6k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy363GGZ6k .mbr-iconfont {
  color: #eceae4;
}
.cid-sy363GGZ6k .mbr-iconfont:hover {
  color: #149dcc !important;
}
.cid-sy363GGZ6k .mbr-text {
  margin: 1.5rem 0;
}
.cid-sy363GGZ6k .card-title {
  margin-bottom: 0.3rem;
}
.cid-sy363GGZ6k .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sy363GGZ6k .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy363GGZ6k .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sy363GGZ6k .mbr-text,
.cid-sy363GGZ6k .social-links {
  color: #767676;
}
.cid-sy363GGZ6k H2 {
  color: #55b4d4;
}
.cid-sy363K7kXW {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy363K7kXW .mbr-iconfont {
  color: #eceae4;
}
.cid-sy363K7kXW .mbr-iconfont:hover {
  color: #149dcc !important;
}
.cid-sy363K7kXW .mbr-text {
  margin: 1.5rem 0;
}
.cid-sy363K7kXW .card-title {
  margin-bottom: 0.3rem;
}
.cid-sy363K7kXW .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
}
.cid-sy363K7kXW .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy363K7kXW .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sy363K7kXW .mbr-text,
.cid-sy363K7kXW .social-links {
  color: #767676;
}
.cid-sy3d5bqNop {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy3d5bqNop .mbr-iconfont {
  color: #eceae4;
}
.cid-sy3d5bqNop .mbr-iconfont:hover {
  color: #149dcc !important;
}
.cid-sy3d5bqNop .mbr-text {
  margin: 1.5rem 0;
}
.cid-sy3d5bqNop .card-title {
  margin-bottom: 0.3rem;
}
.cid-sy3d5bqNop .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sy3d5bqNop .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy3d5bqNop .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sy3d5bqNop .mbr-text,
.cid-sy3d5bqNop .social-links {
  color: #767676;
}
.cid-sy3d5bqNop H2 {
  color: #55b4d4;
}
.cid-sy3d6MT4rS {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy3d6MT4rS .mbr-iconfont {
  color: #eceae4;
}
.cid-sy3d6MT4rS .mbr-iconfont:hover {
  color: #149dcc !important;
}
.cid-sy3d6MT4rS .mbr-text {
  margin: 1.5rem 0;
}
.cid-sy3d6MT4rS .card-title {
  margin-bottom: 0.3rem;
}
.cid-sy3d6MT4rS .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sy3d6MT4rS .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy3d6MT4rS .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sy3d6MT4rS .mbr-text,
.cid-sy3d6MT4rS .social-links {
  color: #767676;
}
.cid-sy3d7Ba4b1 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy3d7Ba4b1 .mbr-iconfont {
  color: #eceae4;
}
.cid-sy3d7Ba4b1 .mbr-iconfont:hover {
  color: #149dcc !important;
}
.cid-sy3d7Ba4b1 .mbr-text {
  margin: 1.5rem 0;
}
.cid-sy3d7Ba4b1 .card-title {
  margin-bottom: 0.3rem;
}
.cid-sy3d7Ba4b1 .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sy3d7Ba4b1 .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy3d7Ba4b1 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sy3d7Ba4b1 .mbr-text,
.cid-sy3d7Ba4b1 .social-links {
  color: #767676;
}
.cid-sy3gokLPiK {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy3gokLPiK .mbr-iconfont {
  color: #eceae4;
}
.cid-sy3gokLPiK .mbr-iconfont:hover {
  color: #149dcc !important;
}
.cid-sy3gokLPiK .mbr-text {
  margin: 1.5rem 0;
}
.cid-sy3gokLPiK .card-title {
  margin-bottom: 0.3rem;
}
.cid-sy3gokLPiK .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
}
.cid-sy3gokLPiK .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy3gokLPiK .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sy3gokLPiK .mbr-text,
.cid-sy3gokLPiK .social-links {
  color: #767676;
}
.cid-sy3gpf0x2Q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sy3gpf0x2Q .mbr-iconfont {
  color: #eceae4;
}
.cid-sy3gpf0x2Q .mbr-iconfont:hover {
  color: #149dcc !important;
}
.cid-sy3gpf0x2Q .mbr-text {
  margin: 1.5rem 0;
}
.cid-sy3gpf0x2Q .card-title {
  margin-bottom: 0.3rem;
}
.cid-sy3gpf0x2Q .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
}
.cid-sy3gpf0x2Q .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sy3gpf0x2Q .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sy3gpf0x2Q .mbr-text,
.cid-sy3gpf0x2Q .social-links {
  color: #767676;
}
.cid-sy3gpf0x2Q H2 {
  color: #55b4d4;
}
.cid-sxZ50K3kHr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxZ50K3kHr nav.navbar {
  position: fixed;
}
.cid-sxZ50K3kHr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sxZ50K3kHr .dropdown-item:hover,
.cid-sxZ50K3kHr .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxZ50K3kHr .nav-link {
  position: relative;
  padding: 0;
}
.cid-sxZ50K3kHr .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sxZ50K3kHr .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown-menu,
.cid-sxZ50K3kHr .navbar.opened {
  background: #ffffff !important;
}
.cid-sxZ50K3kHr .nav-item:focus,
.cid-sxZ50K3kHr .nav-link:focus {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxZ50K3kHr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxZ50K3kHr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.opened {
  transition: all 0.3s;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxZ50K3kHr .navbar .navbar-logo img {
  width: auto;
}
.cid-sxZ50K3kHr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar.collapsed {
  justify-content: right;
}
.cid-sxZ50K3kHr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxZ50K3kHr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxZ50K3kHr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sxZ50K3kHr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxZ50K3kHr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxZ50K3kHr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxZ50K3kHr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sxZ50K3kHr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxZ50K3kHr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxZ50K3kHr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxZ50K3kHr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxZ50K3kHr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxZ50K3kHr .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxZ50K3kHr .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown-item.active,
.cid-sxZ50K3kHr .dropdown-item:active {
  background-color: transparent;
}
.cid-sxZ50K3kHr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxZ50K3kHr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxZ50K3kHr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxZ50K3kHr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxZ50K3kHr button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxZ50K3kHr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxZ50K3kHr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxZ50K3kHr .navbar {
    height: 70px;
  }
  .cid-sxZ50K3kHr .navbar.opened {
    height: auto;
  }
  .cid-sxZ50K3kHr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxZ50K3kHr .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sxZ50K3kHr .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sxZ50K3kHr a {
  display: inline;
  font-weight: bold;
}
.cid-sxZ50K3kHr img {
  display: inline;
  padding-right: 10px;
}
.cid-sxZ50K3kHr .dropdown-toggle:after {
  display: none;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sxZ50K3kHr .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sxZ50K3kHr .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4f7LbATX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4f7LbATX .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4f7LbATX .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4f7LbATX .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4f7LbATX .mbr-text {
  color: #444;
}
.cid-sy4f7LbATX h5 {
  margin-bottom: 0;
}
.cid-sy4f7LbATX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4f7LbATX .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4f7LbATX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4f7LbATX .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4f7LbATX .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4f7LbATX .social-list a:hover {
  opacity: .4;
}
.cid-sy4f7LbATX .media-container-row > div {
  padding: 0px;
}
.cid-sy4f7LbATX .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4f7LbATX .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4f7LbATX .group-title SPAN {
  color: #656565;
}
.cid-sy4f7LbATX .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4f7LbATX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4f7LbATX h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4f7LbATX .links SPAN {
  color: #9e9e9e;
}
.cid-sy4f7LbATX .links,
.cid-sy4f7LbATX .social-list {
  color: #ffffff;
}
.cid-sxZfJRz2RI {
  padding-top: 210px;
  padding-bottom: 210px;
  background-image: url("../../../assets/images/wp-20171114-17-13-11-pro-2-2000x1125.jpeg");
}
.cid-sxZfJRz2RI .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-sxZfJRz2RI .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sxZfJRz2RI .mbr-section-title,
.cid-sxZfJRz2RI .icon-wrap,
.cid-sxZfJRz2RI .mbr-section-btn {
  text-align: left;
}
.cid-sxZgpG5g1H {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #0095ff;
}
.cid-sxZgpG5g1H .mbr-text,
.cid-sxZgpG5g1H .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sxZgpG5g1H .mbr-section-title,
  .cid-sxZgpG5g1H .mbr-section-btn,
  .cid-sxZgpG5g1H .mbr-text {
    text-align: center;
  }
}
.cid-sxZgpG5g1H .mbr-section-subtitle {
  color: #ffffff;
  letter-spacing: 6px;
}
.cid-sxZgWrrw3Q {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sxZgWrrw3Q h2 {
  color: #000000;
}
.cid-sxZgWrrw3Q h1 {
  color: #000000;
}
.cid-sxZgWrrw3Q .mbr-text,
.cid-sxZgWrrw3Q .mbr-section-btn {
  color: #999999;
  text-align: left;
}
.cid-sxZgWrrw3Q H1 {
  color: #0095ff;
  text-align: left;
}
.cid-sxZgXrIeFv {
  padding-top: 60px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-sxZgXrIeFv h2 {
  color: #000000;
}
.cid-sxZgXrIeFv h1 {
  color: #000000;
}
.cid-sxZgXrIeFv .mbr-text,
.cid-sxZgXrIeFv .mbr-section-btn {
  color: #999999;
  text-align: left;
}
.cid-sxZgXrIeFv H1 {
  color: #0095ff;
  text-align: left;
}
.cid-sxZ50K3kHr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxZ50K3kHr nav.navbar {
  position: fixed;
}
.cid-sxZ50K3kHr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sxZ50K3kHr .dropdown-item:hover,
.cid-sxZ50K3kHr .dropdown-item:focus {
  color: #55b4d4 !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxZ50K3kHr .nav-link {
  position: relative;
  padding: 0;
}
.cid-sxZ50K3kHr .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.cid-sxZ50K3kHr .iconfont-wrapper {
  color: #55b4d4 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown-menu,
.cid-sxZ50K3kHr .navbar.opened {
  background: #ffffff !important;
}
.cid-sxZ50K3kHr .nav-item:focus,
.cid-sxZ50K3kHr .nav-link:focus {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxZ50K3kHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxZ50K3kHr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxZ50K3kHr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxZ50K3kHr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.opened {
  transition: all 0.3s;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxZ50K3kHr .navbar .navbar-logo img {
  width: auto;
}
.cid-sxZ50K3kHr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar.collapsed {
  justify-content: right;
}
.cid-sxZ50K3kHr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxZ50K3kHr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxZ50K3kHr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sxZ50K3kHr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxZ50K3kHr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxZ50K3kHr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxZ50K3kHr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxZ50K3kHr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sxZ50K3kHr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxZ50K3kHr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxZ50K3kHr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxZ50K3kHr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxZ50K3kHr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxZ50K3kHr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxZ50K3kHr .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxZ50K3kHr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxZ50K3kHr .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxZ50K3kHr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxZ50K3kHr .dropdown-item.active,
.cid-sxZ50K3kHr .dropdown-item:active {
  background-color: transparent;
}
.cid-sxZ50K3kHr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxZ50K3kHr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sxZ50K3kHr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxZ50K3kHr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxZ50K3kHr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxZ50K3kHr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxZ50K3kHr button.navbar-toggler {
  margin-bottom: 15px;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5b686b;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxZ50K3kHr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxZ50K3kHr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxZ50K3kHr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxZ50K3kHr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxZ50K3kHr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxZ50K3kHr .navbar {
    height: 70px;
  }
  .cid-sxZ50K3kHr .navbar.opened {
    height: auto;
  }
  .cid-sxZ50K3kHr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxZ50K3kHr .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sxZ50K3kHr .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sxZ50K3kHr a {
  display: inline;
  font-weight: bold;
}
.cid-sxZ50K3kHr img {
  display: inline;
  padding-right: 10px;
}
.cid-sxZ50K3kHr .dropdown-toggle:after {
  display: none;
}
.cid-sxZ50K3kHr .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sxZ50K3kHr .dropdown-item:hover {
  color: #eceae4 !important;
}
@media (max-width: 990px) {
  .cid-sxZ50K3kHr .dropdown-menu {
    margin-top: 0px;
  }
}
.cid-sy4f7LbATX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sy4f7LbATX .listico {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 0.2rem;
}
.cid-sy4f7LbATX .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sy4f7LbATX .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sy4f7LbATX .mbr-text {
  color: #444;
}
.cid-sy4f7LbATX h5 {
  margin-bottom: 0;
}
.cid-sy4f7LbATX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sy4f7LbATX .socicon {
  color: #ffffff;
  font-size: 1.6rem;
}
.cid-sy4f7LbATX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sy4f7LbATX .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sy4f7LbATX .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sy4f7LbATX .social-list a:hover {
  opacity: .4;
}
.cid-sy4f7LbATX .media-container-row > div {
  padding: 0px;
}
.cid-sy4f7LbATX .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sy4f7LbATX .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-sy4f7LbATX .group-title SPAN {
  color: #656565;
}
.cid-sy4f7LbATX .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sy4f7LbATX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sy4f7LbATX h3 {
    margin-bottom: 10px;
  }
}
.cid-sy4f7LbATX .links SPAN {
  color: #9e9e9e;
}
.cid-sy4f7LbATX .links,
.cid-sy4f7LbATX .social-list {
  color: #ffffff;
}
