body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ff0000 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a80000 !important;
  border-color: #a80000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a80000 !important;
  border-color: #a80000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff0000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a80000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ff0000 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #990000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ff0000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff0000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffcccc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ff0000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #ff0000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff0000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff0000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff0000;
  border-bottom-color: #ff0000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%23ff0000' %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-6HD9fvv3s3 {
  z-index: 1000;
  width: 100%;
}
.cid-6HD9fvv3s3 nav.navbar {
  position: fixed;
}
.cid-6HD9fvv3s3 .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-6HD9fvv3s3 .dropdown-menu {
  padding: 0;
}
.cid-6HD9fvv3s3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-6HD9fvv3s3 .dropdown-item:hover,
.cid-6HD9fvv3s3 .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-6HD9fvv3s3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-6HD9fvv3s3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-6HD9fvv3s3 .nav-link {
  position: relative;
}
.cid-6HD9fvv3s3 .container {
  display: flex;
  margin: auto;
}
.cid-6HD9fvv3s3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-6HD9fvv3s3 .navbar-caption {
  padding-right: 4rem;
}
.cid-6HD9fvv3s3 .dropdown-menu,
.cid-6HD9fvv3s3 .navbar.opened {
  background: #a1ccdc !important;
}
.cid-6HD9fvv3s3 .nav-item:focus,
.cid-6HD9fvv3s3 .nav-link:focus {
  outline: none;
}
.cid-6HD9fvv3s3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-6HD9fvv3s3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-6HD9fvv3s3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-6HD9fvv3s3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-6HD9fvv3s3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-6HD9fvv3s3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-6HD9fvv3s3 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(161, 204, 220, 0.6);
}
.cid-6HD9fvv3s3 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-6HD9fvv3s3 .navbar.opened {
  transition: all .3s;
}
.cid-6HD9fvv3s3 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-6HD9fvv3s3 .navbar .navbar-logo img {
  width: auto;
}
.cid-6HD9fvv3s3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-6HD9fvv3s3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-6HD9fvv3s3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-6HD9fvv3s3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-6HD9fvv3s3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-6HD9fvv3s3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-6HD9fvv3s3 .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: 55%;
}
.cid-6HD9fvv3s3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-6HD9fvv3s3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-6HD9fvv3s3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-6HD9fvv3s3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-6HD9fvv3s3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-6HD9fvv3s3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-6HD9fvv3s3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-6HD9fvv3s3 .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: 55%;
  }
  .cid-6HD9fvv3s3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-6HD9fvv3s3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-6HD9fvv3s3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-6HD9fvv3s3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-6HD9fvv3s3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-6HD9fvv3s3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-6HD9fvv3s3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-6HD9fvv3s3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-6HD9fvv3s3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-6HD9fvv3s3 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-6HD9fvv3s3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-6HD9fvv3s3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-6HD9fvv3s3 .dropdown-item.active,
.cid-6HD9fvv3s3 .dropdown-item:active {
  background-color: transparent;
}
.cid-6HD9fvv3s3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-6HD9fvv3s3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-6HD9fvv3s3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-6HD9fvv3s3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a1ccdc;
}
.cid-6HD9fvv3s3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-6HD9fvv3s3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-6HD9fvv3s3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-6HD9fvv3s3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-6HD9fvv3s3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-6HD9fvv3s3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-6HD9fvv3s3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-6HD9fvv3s3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-6HD9fvv3s3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-6HD9fvv3s3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-6HD9fvv3s3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-6HD9fvv3s3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-6HD9fvv3s3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-6HD9fvv3s3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-6HD9fvv3s3 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-6HD9fvv3s3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-6HD9fvv3s3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-6HD9fvv3s3 .navbar {
    height: 77px;
  }
  .cid-6HD9fvv3s3 .navbar.opened {
    height: auto;
  }
  .cid-6HD9fvv3s3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s48MCQYojq {
  background-image: url("../../../assets/images/person-meta.jpeg");
}
.cid-s48MCQYojq .mbr-section-title {
  text-align: center;
}
.cid-s48MCQYojq .mbr-text,
.cid-s48MCQYojq .mbr-section-btn {
  color: #ff0000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-s48MCQYojq .mbr-section-title,
  .cid-s48MCQYojq .mbr-section-btn,
  .cid-s48MCQYojq .mbr-text {
    text-align: center;
  }
}
.cid-sm0qRRqIXM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sm0qRRqIXM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sm0qRRqIXM .row {
  flex-direction: row-reverse;
}
.cid-sm0qRRqIXM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sm0qRRqIXM .text-wrapper {
    padding: 2rem;
  }
}
.cid-sm0qQYKPAw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sm0qQYKPAw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sm0qQYKPAw img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sm0qQYKPAw .text-wrapper {
    padding: 2rem;
  }
}
.cid-sm0qQYKPAw .mbr-text {
  color: #232323;
}
.cid-sn9x78KoM4 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sn9x78KoM4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sn9x78KoM4 .row {
  flex-direction: row-reverse;
}
.cid-sn9x78KoM4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sn9x78KoM4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-slC5BoIbMu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-slC5BoIbMu .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-slC5BoIbMu .bg-facebook:hover {
  background: #0b60cb;
}
.cid-slC5BoIbMu .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-slC5BoIbMu .bg-twitter:hover {
  background: #0c85d0;
}
.cid-slC5BoIbMu .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-slC5BoIbMu .bg-instagram:hover {
  background: #bd005c;
}
.cid-slC5BoIbMu .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-slC5BoIbMu [class^="socicon-"]:before,
.cid-slC5BoIbMu [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-s48P1Icc8J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48P1Icc8J foot-menu-item {
  text-align: right;
}
.cid-s48P1Icc8J .media-container-row .mbr-text {
  text-align: center;
  color: #9c9c9c;
}
.cid-sn9a7T6sH3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sn9a7T6sH3 img,
.cid-sn9a7T6sH3 .item-img {
  width: 100%;
}
.cid-sn9a7T6sH3 .item:focus,
.cid-sn9a7T6sH3 span:focus {
  outline: none;
}
.cid-sn9a7T6sH3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sn9a7T6sH3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ececec;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sn9a7T6sH3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sn9a7T6sH3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sn9a7T6sH3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sn9a7T6sH3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sn9a7T6sH3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sn9a7T6sH3 .mbr-section-title {
  color: #232323;
}
.cid-sn9a7T6sH3 .mbr-text,
.cid-sn9a7T6sH3 .mbr-section-btn {
  text-align: left;
}
.cid-sn9a7T6sH3 .item-title {
  text-align: left;
}
.cid-sn9a7T6sH3 .item-subtitle {
  text-align: left;
}
.cid-snFAeWjfGR {
  z-index: 1000;
  width: 100%;
}
.cid-snFAeWjfGR nav.navbar {
  position: fixed;
}
.cid-snFAeWjfGR .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-snFAeWjfGR .dropdown-menu {
  padding: 0;
}
.cid-snFAeWjfGR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snFAeWjfGR .dropdown-item:hover,
.cid-snFAeWjfGR .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-snFAeWjfGR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-snFAeWjfGR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snFAeWjfGR .nav-link {
  position: relative;
}
.cid-snFAeWjfGR .container {
  display: flex;
  margin: auto;
}
.cid-snFAeWjfGR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-snFAeWjfGR .navbar-caption {
  padding-right: 4rem;
}
.cid-snFAeWjfGR .dropdown-menu,
.cid-snFAeWjfGR .navbar.opened {
  background: #a1ccdc !important;
}
.cid-snFAeWjfGR .nav-item:focus,
.cid-snFAeWjfGR .nav-link:focus {
  outline: none;
}
.cid-snFAeWjfGR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snFAeWjfGR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snFAeWjfGR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-snFAeWjfGR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snFAeWjfGR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snFAeWjfGR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snFAeWjfGR .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(161, 204, 220, 0.9);
}
.cid-snFAeWjfGR .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snFAeWjfGR .navbar.opened {
  transition: all .3s;
}
.cid-snFAeWjfGR .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-snFAeWjfGR .navbar .navbar-logo img {
  width: auto;
}
.cid-snFAeWjfGR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snFAeWjfGR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snFAeWjfGR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snFAeWjfGR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-snFAeWjfGR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snFAeWjfGR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snFAeWjfGR .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: 55%;
}
.cid-snFAeWjfGR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snFAeWjfGR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-snFAeWjfGR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-snFAeWjfGR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snFAeWjfGR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snFAeWjfGR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snFAeWjfGR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snFAeWjfGR .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: 55%;
  }
  .cid-snFAeWjfGR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-snFAeWjfGR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snFAeWjfGR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snFAeWjfGR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snFAeWjfGR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snFAeWjfGR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-snFAeWjfGR .navbar.navbar-short {
  min-height: 60px;
}
.cid-snFAeWjfGR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-snFAeWjfGR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-snFAeWjfGR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snFAeWjfGR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snFAeWjfGR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snFAeWjfGR .dropdown-item.active,
.cid-snFAeWjfGR .dropdown-item:active {
  background-color: transparent;
}
.cid-snFAeWjfGR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snFAeWjfGR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snFAeWjfGR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snFAeWjfGR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a1ccdc;
}
.cid-snFAeWjfGR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snFAeWjfGR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snFAeWjfGR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snFAeWjfGR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snFAeWjfGR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-snFAeWjfGR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-snFAeWjfGR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-snFAeWjfGR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-snFAeWjfGR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-snFAeWjfGR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-snFAeWjfGR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snFAeWjfGR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-snFAeWjfGR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-snFAeWjfGR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snFAeWjfGR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-snFAeWjfGR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snFAeWjfGR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snFAeWjfGR .navbar {
    height: 77px;
  }
  .cid-snFAeWjfGR .navbar.opened {
    height: auto;
  }
  .cid-snFAeWjfGR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snZjycZgJJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snZjycZgJJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snZjycZgJJ .row {
  flex-direction: row-reverse;
}
.cid-snZjycZgJJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-snZjycZgJJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-soyslmeaB7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-soyslmeaB7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-soyslmeaB7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-soyslmeaB7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-soyTuLudG4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-soyTuLudG4 .mbr-section-title {
  text-align: center;
}
.cid-soyRcRI6Ji {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-soyRcRI6Ji .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-soyRcRI6Ji .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-soyRcRI6Ji .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-soyVS0OhNO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-soyVS0OhNO .mbr-section-title {
  text-align: center;
}
.cid-soyUTueaIG {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-soyUTueaIG .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-soyUTueaIG .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-soyUTueaIG .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-s48P1Icc8J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48P1Icc8J foot-menu-item {
  text-align: right;
}
.cid-s48P1Icc8J .media-container-row .mbr-text {
  text-align: center;
  color: #9c9c9c;
}
.cid-snHtC9v9ZX {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #a1ccdc;
}
.cid-snHtC9v9ZX .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-snHtC9v9ZX .mbr-section-subtitle {
  text-align: left;
}
.cid-snHsnA6uQF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snHsnA6uQF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snHsnA6uQF .row {
  flex-direction: row-reverse;
}
.cid-snHsnA6uQF img {
  width: 100%;
}
.cid-snFAhX0gmY {
  z-index: 1000;
  width: 100%;
}
.cid-snFAhX0gmY nav.navbar {
  position: fixed;
}
.cid-snFAhX0gmY .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-snFAhX0gmY .dropdown-menu {
  padding: 0;
}
.cid-snFAhX0gmY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snFAhX0gmY .dropdown-item:hover,
.cid-snFAhX0gmY .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-snFAhX0gmY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-snFAhX0gmY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snFAhX0gmY .nav-link {
  position: relative;
}
.cid-snFAhX0gmY .container {
  display: flex;
  margin: auto;
}
.cid-snFAhX0gmY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-snFAhX0gmY .navbar-caption {
  padding-right: 4rem;
}
.cid-snFAhX0gmY .dropdown-menu,
.cid-snFAhX0gmY .navbar.opened {
  background: #a1ccdc !important;
}
.cid-snFAhX0gmY .nav-item:focus,
.cid-snFAhX0gmY .nav-link:focus {
  outline: none;
}
.cid-snFAhX0gmY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snFAhX0gmY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snFAhX0gmY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-snFAhX0gmY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snFAhX0gmY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snFAhX0gmY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snFAhX0gmY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(161, 204, 220, 0.9);
}
.cid-snFAhX0gmY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snFAhX0gmY .navbar.opened {
  transition: all .3s;
}
.cid-snFAhX0gmY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-snFAhX0gmY .navbar .navbar-logo img {
  width: auto;
}
.cid-snFAhX0gmY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snFAhX0gmY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snFAhX0gmY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snFAhX0gmY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-snFAhX0gmY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snFAhX0gmY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snFAhX0gmY .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: 55%;
}
.cid-snFAhX0gmY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snFAhX0gmY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-snFAhX0gmY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-snFAhX0gmY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snFAhX0gmY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snFAhX0gmY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snFAhX0gmY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snFAhX0gmY .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: 55%;
  }
  .cid-snFAhX0gmY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-snFAhX0gmY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snFAhX0gmY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snFAhX0gmY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snFAhX0gmY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snFAhX0gmY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-snFAhX0gmY .navbar.navbar-short {
  min-height: 60px;
}
.cid-snFAhX0gmY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-snFAhX0gmY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-snFAhX0gmY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snFAhX0gmY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snFAhX0gmY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snFAhX0gmY .dropdown-item.active,
.cid-snFAhX0gmY .dropdown-item:active {
  background-color: transparent;
}
.cid-snFAhX0gmY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snFAhX0gmY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snFAhX0gmY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snFAhX0gmY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a1ccdc;
}
.cid-snFAhX0gmY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snFAhX0gmY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snFAhX0gmY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snFAhX0gmY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snFAhX0gmY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-snFAhX0gmY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-snFAhX0gmY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-snFAhX0gmY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-snFAhX0gmY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-snFAhX0gmY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-snFAhX0gmY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snFAhX0gmY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-snFAhX0gmY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-snFAhX0gmY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snFAhX0gmY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-snFAhX0gmY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snFAhX0gmY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snFAhX0gmY .navbar {
    height: 77px;
  }
  .cid-snFAhX0gmY .navbar.opened {
    height: auto;
  }
  .cid-snFAhX0gmY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snNiRth41H {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNiRth41H .mbr-section-title {
  text-align: left;
}
.cid-snNtLZ1opB {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snNtLZ1opB P {
  text-align: left;
}
.cid-snH2RZOy7C {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snH2RZOy7C ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snH2RZOy7C li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snH2RZOy7C ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snHt8bbCxs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snHt8bbCxs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snHt8bbCxs .row {
  flex-direction: row-reverse;
}
.cid-snHt8bbCxs img {
  width: 100%;
}
.cid-snNykqf4Fi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNykqf4Fi .mbr-section-title {
  text-align: left;
}
.cid-snNxLSdtoD {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snNxLSdtoD P {
  text-align: left;
}
.cid-snNypxdZ5o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNypxdZ5o ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snNypxdZ5o li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snNypxdZ5o ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snHt8EcdGe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snHt8EcdGe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snHt8EcdGe .row {
  flex-direction: row-reverse;
}
.cid-snHt8EcdGe img {
  width: 100%;
}
.cid-snGYpg6koZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snGYpg6koZ .mbr-section-title {
  text-align: left;
}
.cid-snGYpg6koZ .mbr-section-subtitle {
  text-align: left;
}
.cid-snNz4bDoyU {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snNz4bDoyU P {
  text-align: left;
}
.cid-snNywZ4sD8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNywZ4sD8 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snNywZ4sD8 li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snNywZ4sD8 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.6rem;
  width: 1.6rem;
}
.cid-snNCt4KZIV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snNCt4KZIV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snNCt4KZIV .row {
  flex-direction: row-reverse;
}
.cid-snNCt4KZIV img {
  width: 100%;
}
.cid-snNCupmUJN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNCupmUJN .mbr-section-title {
  text-align: left;
}
.cid-snNCyKgYMJ {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snNCyKgYMJ P {
  text-align: left;
}
.cid-snNCA10nnH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNCA10nnH ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snNCA10nnH li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snNCA10nnH ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snO7ANOXtg {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snO7ANOXtg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snO7ANOXtg .row {
  flex-direction: row-reverse;
}
.cid-snO7ANOXtg img {
  width: 100%;
}
.cid-snO7BOLjD3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snO7BOLjD3 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-snO7Eg5qf8 {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snO7Eg5qf8 P {
  text-align: left;
}
.cid-snO7F9wibh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-snO7F9wibh ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snO7F9wibh li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snO7F9wibh ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snHtWQ5Qdp {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-snHtWQ5Qdp .mbr-section-title {
  text-align: center;
}
.cid-snHtWQ5Qdp .mbr-section-subtitle {
  text-align: left;
}
.cid-snHt9dQysZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snHt9dQysZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snHt9dQysZ .row {
  flex-direction: row-reverse;
}
.cid-snHt9dQysZ img {
  width: 100%;
}
.cid-snNyGMVK6z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNyGMVK6z .mbr-section-title {
  text-align: left;
}
.cid-snNANsT3K9 {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snNANsT3K9 P {
  text-align: left;
}
.cid-snNyFhboo3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNyFhboo3 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snNyFhboo3 li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snNyFhboo3 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snNBf7wM0K {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snNBf7wM0K .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snNBf7wM0K .row {
  flex-direction: row-reverse;
}
.cid-snNBf7wM0K img {
  width: 100%;
}
.cid-snNBpNM4Lc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNBpNM4Lc .mbr-section-title {
  text-align: left;
}
.cid-snNBgCg19c {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snNBgCg19c P {
  text-align: left;
}
.cid-snNA8cA1kd {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-snNA8cA1kd ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snNA8cA1kd li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snNA8cA1kd ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snNGGcywNT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-snNGGcywNT .mbr-section-title {
  text-align: center;
}
.cid-snNFPhGwup {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snNFPhGwup .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snNFPhGwup .row {
  flex-direction: row-reverse;
}
.cid-snNFPhGwup img {
  width: 100%;
}
.cid-snNFN4GcOR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNFN4GcOR .mbr-section-title {
  text-align: left;
}
.cid-snNFRTN9PA {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snNFRTN9PA P {
  text-align: left;
}
.cid-snNFSFc1EC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNFSFc1EC ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snNFSFc1EC li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snNFSFc1EC ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snNHPcJnRy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snNHPcJnRy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snNHPcJnRy .row {
  flex-direction: row-reverse;
}
.cid-snNHPcJnRy img {
  width: 100%;
}
.cid-snNHQdN2EO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snNHQdN2EO .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-snNHRlaRAm {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snNHRlaRAm P {
  text-align: left;
}
.cid-snNHSgQVuP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-snNHSgQVuP ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snNHSgQVuP li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snNHSgQVuP ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snO4f3neCW {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-snO4f3neCW .mbr-section-title {
  text-align: center;
}
.cid-snO4y2I4wE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snO4y2I4wE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snO4y2I4wE .row {
  flex-direction: row-reverse;
}
.cid-snO4y2I4wE img {
  width: 100%;
}
.cid-snO4dxJOPG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snO4dxJOPG .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-snO4gvqR5g {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snO4gvqR5g P {
  text-align: left;
}
.cid-snO4mj5Svm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snO4mj5Svm ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snO4mj5Svm li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snO4mj5Svm ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snO4L6BKLn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snO4L6BKLn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snO4L6BKLn .row {
  flex-direction: row-reverse;
}
.cid-snO4L6BKLn img {
  width: 100%;
}
.cid-snO4PsQT4V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snO4PsQT4V .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-snO4NIchQg {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snO4NIchQg P {
  text-align: left;
}
.cid-snO4MMifiR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snO4MMifiR ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snO4MMifiR li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snO4MMifiR ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snO4QYxR2C {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snO4QYxR2C .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snO4QYxR2C .row {
  flex-direction: row-reverse;
}
.cid-snO4QYxR2C img {
  width: 100%;
}
.cid-snO4SJqDgk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snO4SJqDgk .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-snO4VdPLfP {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snO4VdPLfP P {
  text-align: left;
}
.cid-snO4Wts8wE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snO4Wts8wE ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snO4Wts8wE li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snO4Wts8wE ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snO4XHPBL7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snO4XHPBL7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snO4XHPBL7 .row {
  flex-direction: row-reverse;
}
.cid-snO4XHPBL7 img {
  width: 100%;
}
.cid-snO4YshXEI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snO4YshXEI .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-snO50eW3Jp {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snO50eW3Jp P {
  text-align: left;
}
.cid-spaMTS27ZZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-spaMTS27ZZ ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-spaMTS27ZZ li {
  position: relative;
  margin-bottom: 6px;
}
.cid-spaMTS27ZZ ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snO575PxFi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #a1ccdc;
}
.cid-snO575PxFi .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-snO58cYQ40 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snO58cYQ40 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snO58cYQ40 .row {
  flex-direction: row-reverse;
}
.cid-snO58cYQ40 img {
  width: 100%;
}
.cid-snO59luFhJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snO59luFhJ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-snO5aAQ3qh {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #ffffff;
}
.cid-snO5aAQ3qh P {
  text-align: left;
}
.cid-snO5bdxfoW {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-snO5bdxfoW ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snO5bdxfoW li {
  position: relative;
  margin-bottom: 6px;
}
.cid-snO5bdxfoW ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.6rem;
}
.cid-snNJntoXgz {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #a1ccdc;
}
.cid-snNJntoXgz .mbr-section-title {
  text-align: center;
}
.cid-snNJpvkKxa {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snNJpvkKxa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-snNJpvkKxa .row {
  flex-direction: row-reverse;
}
.cid-snNJpvkKxa img {
  width: 100%;
}
.cid-spK5PN9yrZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-spK5PN9yrZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-spK5PN9yrZ .row {
  flex-direction: row-reverse;
}
.cid-spK5PN9yrZ img {
  width: 100%;
}
.cid-srbTHuWL3Q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-srbTHuWL3Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-srbTHuWL3Q .row {
  flex-direction: row-reverse;
}
.cid-srbTHuWL3Q img {
  width: 100%;
}
.cid-snU1APRLPY {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #a1ccdc;
}
.cid-snU1APRLPY .mbr-section-title {
  text-align: center;
}
.cid-snU27ZCDNE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-snU27ZCDNE ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snU27ZCDNE li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-snU27ZCDNE ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1rem;
  width: 1.6rem;
}
.cid-snU8u2tUG8 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #a1ccdc;
}
.cid-snU8u2tUG8 .mbr-section-title {
  text-align: center;
}
.cid-snU8ujs4Y8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-snU8ujs4Y8 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snU8ujs4Y8 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-snU8ujs4Y8 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1rem;
  width: 1.6rem;
}
.cid-sqS264Wa5A {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #a1ccdc;
}
.cid-sqS264Wa5A .mbr-section-title {
  text-align: center;
}
.cid-sqS20liENb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sqS20liENb ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sqS20liENb li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sqS20liENb ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1rem;
  width: 1.6rem;
}
.cid-sqS20liENb .list {
  color: #000000;
}
.cid-s48P1Icc8J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48P1Icc8J foot-menu-item {
  text-align: right;
}
.cid-s48P1Icc8J .media-container-row .mbr-text {
  text-align: center;
  color: #9c9c9c;
}
.cid-snRrLzlzAz {
  z-index: 1000;
  width: 100%;
}
.cid-snRrLzlzAz nav.navbar {
  position: fixed;
}
.cid-snRrLzlzAz .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-snRrLzlzAz .dropdown-menu {
  padding: 0;
}
.cid-snRrLzlzAz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snRrLzlzAz .dropdown-item:hover,
.cid-snRrLzlzAz .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-snRrLzlzAz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-snRrLzlzAz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snRrLzlzAz .nav-link {
  position: relative;
}
.cid-snRrLzlzAz .container {
  display: flex;
  margin: auto;
}
.cid-snRrLzlzAz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-snRrLzlzAz .navbar-caption {
  padding-right: 4rem;
}
.cid-snRrLzlzAz .dropdown-menu,
.cid-snRrLzlzAz .navbar.opened {
  background: #a1ccdc !important;
}
.cid-snRrLzlzAz .nav-item:focus,
.cid-snRrLzlzAz .nav-link:focus {
  outline: none;
}
.cid-snRrLzlzAz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snRrLzlzAz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snRrLzlzAz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-snRrLzlzAz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snRrLzlzAz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snRrLzlzAz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snRrLzlzAz .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(161, 204, 220, 0.9);
}
.cid-snRrLzlzAz .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snRrLzlzAz .navbar.opened {
  transition: all .3s;
}
.cid-snRrLzlzAz .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-snRrLzlzAz .navbar .navbar-logo img {
  width: auto;
}
.cid-snRrLzlzAz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snRrLzlzAz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snRrLzlzAz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snRrLzlzAz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-snRrLzlzAz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snRrLzlzAz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snRrLzlzAz .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: 55%;
}
.cid-snRrLzlzAz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snRrLzlzAz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-snRrLzlzAz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-snRrLzlzAz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snRrLzlzAz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snRrLzlzAz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snRrLzlzAz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snRrLzlzAz .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: 55%;
  }
  .cid-snRrLzlzAz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-snRrLzlzAz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snRrLzlzAz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snRrLzlzAz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snRrLzlzAz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snRrLzlzAz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-snRrLzlzAz .navbar.navbar-short {
  min-height: 60px;
}
.cid-snRrLzlzAz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-snRrLzlzAz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-snRrLzlzAz .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snRrLzlzAz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snRrLzlzAz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snRrLzlzAz .dropdown-item.active,
.cid-snRrLzlzAz .dropdown-item:active {
  background-color: transparent;
}
.cid-snRrLzlzAz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snRrLzlzAz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snRrLzlzAz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snRrLzlzAz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a1ccdc;
}
.cid-snRrLzlzAz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snRrLzlzAz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snRrLzlzAz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snRrLzlzAz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snRrLzlzAz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-snRrLzlzAz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-snRrLzlzAz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-snRrLzlzAz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-snRrLzlzAz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-snRrLzlzAz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-snRrLzlzAz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snRrLzlzAz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-snRrLzlzAz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-snRrLzlzAz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snRrLzlzAz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-snRrLzlzAz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snRrLzlzAz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snRrLzlzAz .navbar {
    height: 77px;
  }
  .cid-snRrLzlzAz .navbar.opened {
    height: auto;
  }
  .cid-snRrLzlzAz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snGlJUIfIW {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snGP8JEarl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snGP8JEarl ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snGP8JEarl li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-snGP8JEarl ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1rem;
  width: 1.6rem;
}
.cid-snGlZ3gLbs {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snGPrp8CtQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snGPrp8CtQ ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snGPrp8CtQ li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-snGPrp8CtQ ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1rem;
  width: 1.6rem;
}
.cid-snGP7iWlWd {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-snGP7iWlWd .mbr-section-title {
  text-align: center;
}
.cid-snGP7iWlWd .mbr-section-subtitle {
  text-align: left;
}
.cid-snGP9aU8P5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-snGP9aU8P5 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-snGP9aU8P5 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-snGP9aU8P5 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 1rem;
  width: 1.6rem;
}
.cid-snFzNIOYt3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-snFzNIOYt3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-snFzNIOYt3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-snFzNIOYt3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-snFzNIOYt3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-snFzNIOYt3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-snFzNIOYt3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-snFzNIOYt3 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-snFzNIOYt3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-snFzNIOYt3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-snFzNIOYt3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-snFzNIOYt3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-snFzNIOYt3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-snFzNIOYt3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-snFzNIOYt3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-snFzNIOYt3 foot-menu-item {
  text-align: right;
}
.cid-snFzNIOYt3 .media-container-row .mbr-text {
  text-align: center;
  color: #9c9c9c;
}
.cid-sXN5tQwwzS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sXN5tQwwzS ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sXN5tQwwzS li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sXN5tQwwzS ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sXN5tQwwzS .list {
  color: #40b0bf;
}
.cid-sSBHHnfFNq {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSBHHnfFNq .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sSBHHnfFNq .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sSBHHnfFNq .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sSBHHnfFNq .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sSBHHnfFNq .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sSBHHnfFNq .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sSBHHnfFNq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-srcBvQSzka {
  z-index: 1000;
  width: 100%;
}
.cid-srcBvQSzka nav.navbar {
  position: fixed;
}
.cid-srcBvQSzka .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-srcBvQSzka .dropdown-menu {
  padding: 0;
}
.cid-srcBvQSzka .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-srcBvQSzka .dropdown-item:hover,
.cid-srcBvQSzka .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-srcBvQSzka .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-srcBvQSzka .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-srcBvQSzka .nav-link {
  position: relative;
}
.cid-srcBvQSzka .container {
  display: flex;
  margin: auto;
}
.cid-srcBvQSzka .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-srcBvQSzka .navbar-caption {
  padding-right: 4rem;
}
.cid-srcBvQSzka .dropdown-menu,
.cid-srcBvQSzka .navbar.opened {
  background: #a1ccdc !important;
}
.cid-srcBvQSzka .nav-item:focus,
.cid-srcBvQSzka .nav-link:focus {
  outline: none;
}
.cid-srcBvQSzka .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-srcBvQSzka .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srcBvQSzka .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-srcBvQSzka .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-srcBvQSzka .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-srcBvQSzka .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-srcBvQSzka .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(161, 204, 220, 0.9);
}
.cid-srcBvQSzka .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-srcBvQSzka .navbar.opened {
  transition: all .3s;
}
.cid-srcBvQSzka .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-srcBvQSzka .navbar .navbar-logo img {
  width: auto;
}
.cid-srcBvQSzka .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-srcBvQSzka .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-srcBvQSzka .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-srcBvQSzka .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-srcBvQSzka .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-srcBvQSzka .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-srcBvQSzka .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: 55%;
}
.cid-srcBvQSzka .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-srcBvQSzka .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-srcBvQSzka .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-srcBvQSzka .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-srcBvQSzka .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-srcBvQSzka .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-srcBvQSzka .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-srcBvQSzka .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: 55%;
  }
  .cid-srcBvQSzka .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-srcBvQSzka .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-srcBvQSzka .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-srcBvQSzka .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-srcBvQSzka .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-srcBvQSzka .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-srcBvQSzka .navbar.navbar-short {
  min-height: 60px;
}
.cid-srcBvQSzka .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-srcBvQSzka .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-srcBvQSzka .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-srcBvQSzka .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-srcBvQSzka .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-srcBvQSzka .dropdown-item.active,
.cid-srcBvQSzka .dropdown-item:active {
  background-color: transparent;
}
.cid-srcBvQSzka .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-srcBvQSzka .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-srcBvQSzka .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-srcBvQSzka .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a1ccdc;
}
.cid-srcBvQSzka .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-srcBvQSzka .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srcBvQSzka ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-srcBvQSzka .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-srcBvQSzka button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-srcBvQSzka button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-srcBvQSzka button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-srcBvQSzka button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-srcBvQSzka button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-srcBvQSzka button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-srcBvQSzka nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srcBvQSzka nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-srcBvQSzka nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-srcBvQSzka nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srcBvQSzka .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-srcBvQSzka a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-srcBvQSzka .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-srcBvQSzka .navbar {
    height: 77px;
  }
  .cid-srcBvQSzka .navbar.opened {
    height: auto;
  }
  .cid-srcBvQSzka .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSBuIQrVop {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sSBuIQrVop img,
.cid-sSBuIQrVop .item-img {
  width: 100%;
}
.cid-sSBuIQrVop .item:focus,
.cid-sSBuIQrVop span:focus {
  outline: none;
}
.cid-sSBuIQrVop .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSBuIQrVop .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSBuIQrVop .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sSBuIQrVop .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSBuIQrVop .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sSBuIQrVop .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sSBuIQrVop .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSBuIQrVop .mbr-section-title {
  color: #232323;
}
.cid-sSBuIQrVop .mbr-text,
.cid-sSBuIQrVop .mbr-section-btn {
  text-align: left;
}
.cid-sSBuIQrVop .item-title {
  text-align: left;
}
.cid-sSBuIQrVop .item-subtitle {
  text-align: left;
}
.cid-srcAuef0Zz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-srcAuef0Zz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-srcAuef0Zz .social-row {
  width: 100%;
  justify-content: center;
}
.cid-srcAuef0Zz .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-srcAuef0Zz .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-srcAuef0Zz .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-srcAuef0Zz .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-srcAuef0Zz .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-srcAuef0Zz .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-srcAuef0Zz .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-srcAuef0Zz .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-srcAuef0Zz .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-srcAuef0Zz .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-srcAuef0Zz .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-srcAuef0Zz .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-srcAuef0Zz foot-menu-item {
  text-align: right;
}
.cid-srcAuef0Zz .media-container-row .mbr-text {
  text-align: center;
  color: #9c9c9c;
}
.cid-sTJseLIndJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sTJseLIndJ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sTJseLIndJ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sTJseLIndJ .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ff0000;
}
.cid-sTJseLIndJ .panel-body,
.cid-sTJseLIndJ .card-header {
  padding: 1rem 0;
}
.cid-sTJseLIndJ .panel-title-edit {
  color: #000000;
}
.cid-sXN5aQ76LB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sXN5aQ76LB .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-sXN5aQ76LB .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sXN5aQ76LB .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-sXN5aQ76LB .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sXN5sBqSd4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sXN5sBqSd4 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sXN5sBqSd4 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sXN5sBqSd4 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ff0000;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sUcN0of9Ep {
  z-index: 1000;
  width: 100%;
}
.cid-sUcN0of9Ep nav.navbar {
  position: fixed;
}
.cid-sUcN0of9Ep .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-sUcN0of9Ep .dropdown-menu {
  padding: 0;
}
.cid-sUcN0of9Ep .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sUcN0of9Ep .dropdown-item:hover,
.cid-sUcN0of9Ep .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-sUcN0of9Ep .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sUcN0of9Ep .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sUcN0of9Ep .nav-link {
  position: relative;
}
.cid-sUcN0of9Ep .container {
  display: flex;
  margin: auto;
}
.cid-sUcN0of9Ep .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sUcN0of9Ep .navbar-caption {
  padding-right: 4rem;
}
.cid-sUcN0of9Ep .dropdown-menu,
.cid-sUcN0of9Ep .navbar.opened {
  background: #a1ccdc !important;
}
.cid-sUcN0of9Ep .nav-item:focus,
.cid-sUcN0of9Ep .nav-link:focus {
  outline: none;
}
.cid-sUcN0of9Ep .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sUcN0of9Ep .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sUcN0of9Ep .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sUcN0of9Ep .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sUcN0of9Ep .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sUcN0of9Ep .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sUcN0of9Ep .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(161, 204, 220, 0.9);
}
.cid-sUcN0of9Ep .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sUcN0of9Ep .navbar.opened {
  transition: all .3s;
}
.cid-sUcN0of9Ep .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sUcN0of9Ep .navbar .navbar-logo img {
  width: auto;
}
.cid-sUcN0of9Ep .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sUcN0of9Ep .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sUcN0of9Ep .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sUcN0of9Ep .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sUcN0of9Ep .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sUcN0of9Ep .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sUcN0of9Ep .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: 55%;
}
.cid-sUcN0of9Ep .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sUcN0of9Ep .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sUcN0of9Ep .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sUcN0of9Ep .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sUcN0of9Ep .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sUcN0of9Ep .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sUcN0of9Ep .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sUcN0of9Ep .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: 55%;
  }
  .cid-sUcN0of9Ep .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sUcN0of9Ep .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sUcN0of9Ep .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sUcN0of9Ep .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sUcN0of9Ep .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sUcN0of9Ep .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sUcN0of9Ep .navbar.navbar-short {
  min-height: 60px;
}
.cid-sUcN0of9Ep .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sUcN0of9Ep .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sUcN0of9Ep .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sUcN0of9Ep .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sUcN0of9Ep .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sUcN0of9Ep .dropdown-item.active,
.cid-sUcN0of9Ep .dropdown-item:active {
  background-color: transparent;
}
.cid-sUcN0of9Ep .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sUcN0of9Ep .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sUcN0of9Ep .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sUcN0of9Ep .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a1ccdc;
}
.cid-sUcN0of9Ep .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sUcN0of9Ep .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sUcN0of9Ep ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sUcN0of9Ep .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sUcN0of9Ep button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sUcN0of9Ep button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sUcN0of9Ep button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sUcN0of9Ep button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sUcN0of9Ep button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sUcN0of9Ep button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sUcN0of9Ep nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sUcN0of9Ep nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sUcN0of9Ep nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sUcN0of9Ep nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sUcN0of9Ep .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sUcN0of9Ep a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sUcN0of9Ep .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUcN0of9Ep .navbar {
    height: 77px;
  }
  .cid-sUcN0of9Ep .navbar.opened {
    height: auto;
  }
  .cid-sUcN0of9Ep .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUcN74M2nu {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sUcN74M2nu .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sUcN74M2nu .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sUcN74M2nu .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sUcN74M2nu .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sUcN74M2nu .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sUcN74M2nu .bg-instagram:hover {
  background: #bd005c;
}
.cid-sUcN74M2nu .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sUcN74M2nu [class^="socicon-"]:before,
.cid-sUcN74M2nu [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sUcNcV2k01 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sUcNcV2k01 .fb-page,
.cid-sUcNcV2k01 span,
.cid-sUcNcV2k01 iframe {
  width: 500px;
  height: 620px;
}
.cid-sUcNcV2k01 blockquote {
  display: none;
}
.cid-sUcNcV2k01 .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-sUcN0oYyFZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sUcN0oYyFZ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sUcN0oYyFZ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sUcN0oYyFZ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sUcN0oYyFZ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sUcN0oYyFZ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sUcN0oYyFZ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sUcN0oYyFZ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sUcN0oYyFZ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sUcN0oYyFZ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sUcN0oYyFZ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sUcN0oYyFZ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sUcN0oYyFZ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sUcN0oYyFZ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sUcN0oYyFZ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sUcN0oYyFZ foot-menu-item {
  text-align: right;
}
.cid-sUcN0oYyFZ .media-container-row .mbr-text {
  text-align: center;
  color: #9c9c9c;
}
.cid-sTLl3RMdO9 {
  z-index: 1000;
  width: 100%;
}
.cid-sTLl3RMdO9 nav.navbar {
  position: fixed;
}
.cid-sTLl3RMdO9 .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-sTLl3RMdO9 .dropdown-menu {
  padding: 0;
}
.cid-sTLl3RMdO9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTLl3RMdO9 .dropdown-item:hover,
.cid-sTLl3RMdO9 .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-sTLl3RMdO9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sTLl3RMdO9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTLl3RMdO9 .nav-link {
  position: relative;
}
.cid-sTLl3RMdO9 .container {
  display: flex;
  margin: auto;
}
.cid-sTLl3RMdO9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sTLl3RMdO9 .navbar-caption {
  padding-right: 4rem;
}
.cid-sTLl3RMdO9 .dropdown-menu,
.cid-sTLl3RMdO9 .navbar.opened {
  background: #a1ccdc !important;
}
.cid-sTLl3RMdO9 .nav-item:focus,
.cid-sTLl3RMdO9 .nav-link:focus {
  outline: none;
}
.cid-sTLl3RMdO9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTLl3RMdO9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTLl3RMdO9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sTLl3RMdO9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTLl3RMdO9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTLl3RMdO9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTLl3RMdO9 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(161, 204, 220, 0.9);
}
.cid-sTLl3RMdO9 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTLl3RMdO9 .navbar.opened {
  transition: all .3s;
}
.cid-sTLl3RMdO9 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sTLl3RMdO9 .navbar .navbar-logo img {
  width: auto;
}
.cid-sTLl3RMdO9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTLl3RMdO9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTLl3RMdO9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sTLl3RMdO9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sTLl3RMdO9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTLl3RMdO9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTLl3RMdO9 .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: 55%;
}
.cid-sTLl3RMdO9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTLl3RMdO9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sTLl3RMdO9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sTLl3RMdO9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTLl3RMdO9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTLl3RMdO9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTLl3RMdO9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTLl3RMdO9 .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: 55%;
  }
  .cid-sTLl3RMdO9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sTLl3RMdO9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTLl3RMdO9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTLl3RMdO9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTLl3RMdO9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTLl3RMdO9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sTLl3RMdO9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTLl3RMdO9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sTLl3RMdO9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sTLl3RMdO9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTLl3RMdO9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTLl3RMdO9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTLl3RMdO9 .dropdown-item.active,
.cid-sTLl3RMdO9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sTLl3RMdO9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTLl3RMdO9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTLl3RMdO9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTLl3RMdO9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a1ccdc;
}
.cid-sTLl3RMdO9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTLl3RMdO9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTLl3RMdO9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTLl3RMdO9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTLl3RMdO9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sTLl3RMdO9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sTLl3RMdO9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sTLl3RMdO9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sTLl3RMdO9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sTLl3RMdO9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sTLl3RMdO9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sTLl3RMdO9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sTLl3RMdO9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sTLl3RMdO9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sTLl3RMdO9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sTLl3RMdO9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTLl3RMdO9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sTLl3RMdO9 .navbar {
    height: 77px;
  }
  .cid-sTLl3RMdO9 .navbar.opened {
    height: auto;
  }
  .cid-sTLl3RMdO9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sTLl3Sgd8T {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTLl3Sgd8T [class^="socicon-"]:before,
.cid-sTLl3Sgd8T [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sTLl3Sgd8T .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-sTLl3Sgd8T .btn-social:hover {
  background: #6592e6;
}
.cid-sTLl3Sgd8T .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sTLl3SJjwK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #a1ccdc;
}
.cid-sTLl3T3C7g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sTLl3T3C7g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sTLl3T3C7g .row {
  flex-direction: row-reverse;
}
.cid-sTLl3T3C7g img {
  width: 100%;
}
.cid-sTLl3T3C7g svg {
  background-color: #e6f2f7;
}
.cid-sTLl3T3C7g path {
  fill: #c32e04;
  stroke: #333;
  stroke-width: 0.4;
}
.cid-sTLl3T3C7g path:hover {
  fill: #dfac20;
}
.cid-sTLl3T3C7g text {
  opacity: 0;
  font-size: 8px;
  fill: red;
  pointer-events: none;
}
.cid-sTLl3T3C7g path:hover ~ text {
  opacity: 1;
}
.cid-sTLl3T3C7g #headline {
  opacity: 1;
  font-size: 16px;
  fill: #306f91;
}
.cid-sTLl3T3C7g [tooltip] {
  position: relative;
}
.cid-sTLl3T3C7g [tooltip]::before,
.cid-sTLl3T3C7g [tooltip]::after {
  text-transform: none;
  font-size: .9em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
.cid-sTLl3T3C7g [tooltip]::before {
  content: '';
  border: 5px solid transparent;
  z-index: 1001;
}
.cid-sTLl3T3C7g [tooltip]::after {
  content: attr(tooltip);
  font-family: Helvetica, sans-serif;
  text-align: center;
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000;
}
.cid-sTLl3T3C7g [tooltip]:hover::before,
.cid-sTLl3T3C7g [tooltip]:hover::after {
  display: block;
}
.cid-sTLl3T3C7g [tooltip='']::before,
.cid-sTLl3T3C7g [tooltip='']::after {
  display: none !important;
}
.cid-sTLl3T3C7g [tooltip]:not([flow])::before,
.cid-sTLl3T3C7g [tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
.cid-sTLl3T3C7g [tooltip]:not([flow])::after,
.cid-sTLl3T3C7g [tooltip][flow^="up"]::after {
  bottom: calc(105%);
}
.cid-sTLl3T3C7g [tooltip]:not([flow])::before,
.cid-sTLl3T3C7g [tooltip]:not([flow])::after,
.cid-sTLl3T3C7g [tooltip][flow^="up"]::before,
.cid-sTLl3T3C7g [tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}
.cid-sTLl3T3C7g [tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
.cid-sTLl3T3C7g [tooltip][flow^="down"]::after {
  top: calc(105%);
}
.cid-sTLl3T3C7g [tooltip][flow^="down"]::before,
.cid-sTLl3T3C7g [tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}
.cid-sTLl3T3C7g [tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(-5em);
  transform: translate(-0.5em, -50%);
}
.cid-sTLl3T3C7g [tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(105%);
  transform: translate(-0.5em, -50%);
}
.cid-sTLl3T3C7g [tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(-5em);
  transform: translate(0.5em, -50%);
}
.cid-sTLl3T3C7g [tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(105%);
  transform: translate(0.5em, -50%);
}
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}
@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}
.cid-sTLl3T3C7g [tooltip]:not([flow]):hover::before,
.cid-sTLl3T3C7g [tooltip]:not([flow]):hover::after,
.cid-sTLl3T3C7g [tooltip][flow^="up"]:hover::before,
.cid-sTLl3T3C7g [tooltip][flow^="up"]:hover::after,
.cid-sTLl3T3C7g [tooltip][flow^="down"]:hover::before,
.cid-sTLl3T3C7g [tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}
.cid-sTLl3T3C7g [tooltip][flow^="left"]:hover::before,
.cid-sTLl3T3C7g [tooltip][flow^="left"]:hover::after,
.cid-sTLl3T3C7g [tooltip][flow^="right"]:hover::before,
.cid-sTLl3T3C7g [tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}
.cid-sTLl3T3C7g body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  background: #ededed;
}
.cid-sTLl3T3C7g main {
  flex: 1 1 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-sTLl3T3C7g aside {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #49b293;
  color: #fff;
  padding: 1em;
}
.cid-sTLl3T3C7g main div {
  text-align: center;
  color: #353539;
}
.cid-sTLl3T3C7g main span {
  padding: .5em 1em;
  margin: .5em;
  display: inline-block;
  background: #dedede;
}
.cid-sTLl3T3C7g aside a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding: .4em 1em;
}
.cid-sTLl3Tn6g3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sTLl3Tn6g3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sTLl3Tn6g3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sTLl3Tn6g3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sTLl3Tn6g3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sTLl3Tn6g3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sTLl3Tn6g3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sTLl3Tn6g3 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sTLl3Tn6g3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sTLl3Tn6g3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sTLl3Tn6g3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sTLl3Tn6g3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sTLl3Tn6g3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sTLl3Tn6g3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sTLl3Tn6g3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sTLl3Tn6g3 foot-menu-item {
  text-align: right;
}
.cid-sTLl3Tn6g3 .media-container-row .mbr-text {
  text-align: center;
  color: #9c9c9c;
}
.cid-sUdXv1yEhb {
  z-index: 1000;
  width: 100%;
}
.cid-sUdXv1yEhb nav.navbar {
  position: fixed;
}
.cid-sUdXv1yEhb .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-sUdXv1yEhb .dropdown-menu {
  padding: 0;
}
.cid-sUdXv1yEhb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sUdXv1yEhb .dropdown-item:hover,
.cid-sUdXv1yEhb .dropdown-item:focus {
  background: #ff0000 !important;
  color: white !important;
}
.cid-sUdXv1yEhb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sUdXv1yEhb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sUdXv1yEhb .nav-link {
  position: relative;
}
.cid-sUdXv1yEhb .container {
  display: flex;
  margin: auto;
}
.cid-sUdXv1yEhb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sUdXv1yEhb .navbar-caption {
  padding-right: 4rem;
}
.cid-sUdXv1yEhb .dropdown-menu,
.cid-sUdXv1yEhb .navbar.opened {
  background: #a1ccdc !important;
}
.cid-sUdXv1yEhb .nav-item:focus,
.cid-sUdXv1yEhb .nav-link:focus {
  outline: none;
}
.cid-sUdXv1yEhb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sUdXv1yEhb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sUdXv1yEhb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sUdXv1yEhb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sUdXv1yEhb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sUdXv1yEhb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sUdXv1yEhb .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(161, 204, 220, 0.9);
}
.cid-sUdXv1yEhb .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sUdXv1yEhb .navbar.opened {
  transition: all .3s;
}
.cid-sUdXv1yEhb .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sUdXv1yEhb .navbar .navbar-logo img {
  width: auto;
}
.cid-sUdXv1yEhb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sUdXv1yEhb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sUdXv1yEhb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sUdXv1yEhb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sUdXv1yEhb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sUdXv1yEhb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sUdXv1yEhb .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: 55%;
}
.cid-sUdXv1yEhb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sUdXv1yEhb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sUdXv1yEhb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sUdXv1yEhb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sUdXv1yEhb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sUdXv1yEhb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sUdXv1yEhb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sUdXv1yEhb .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: 55%;
  }
  .cid-sUdXv1yEhb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sUdXv1yEhb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sUdXv1yEhb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sUdXv1yEhb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sUdXv1yEhb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sUdXv1yEhb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sUdXv1yEhb .navbar.navbar-short {
  min-height: 60px;
}
.cid-sUdXv1yEhb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sUdXv1yEhb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sUdXv1yEhb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sUdXv1yEhb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sUdXv1yEhb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sUdXv1yEhb .dropdown-item.active,
.cid-sUdXv1yEhb .dropdown-item:active {
  background-color: transparent;
}
.cid-sUdXv1yEhb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sUdXv1yEhb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sUdXv1yEhb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sUdXv1yEhb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a1ccdc;
}
.cid-sUdXv1yEhb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sUdXv1yEhb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sUdXv1yEhb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sUdXv1yEhb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sUdXv1yEhb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sUdXv1yEhb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sUdXv1yEhb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sUdXv1yEhb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sUdXv1yEhb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sUdXv1yEhb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sUdXv1yEhb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sUdXv1yEhb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sUdXv1yEhb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sUdXv1yEhb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sUdXv1yEhb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sUdXv1yEhb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sUdXv1yEhb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUdXv1yEhb .navbar {
    height: 77px;
  }
  .cid-sUdXv1yEhb .navbar.opened {
    height: auto;
  }
  .cid-sUdXv1yEhb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUdXv1TrOc {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUdXv1TrOc [class^="socicon-"]:before,
.cid-sUdXv1TrOc [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sUdXv1TrOc .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-sUdXv1TrOc .btn-social:hover {
  background: #6592e6;
}
.cid-sUdXv1TrOc .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sUfyU0jXsv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-sUfyU0jXsv body {
  background: #252827;
  font-size: 16px;
}
.cid-sUfyU0jXsv p {
  font-weight: 300;
}
.cid-sUfyU0jXsv a {
  color: #6c6d6d;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  letter-spacing: .3em;
  font-size: .6em;
  font-weight: 400;
  background: #252727;
  padding: .3rem 1rem;
  margin: 1.9rem 0 0 0;
  float: right;
}
.cid-sUfyU0jXsv a:hover {
  color: white;
  background: #7e7f80;
  border-bottom: .35em solid black;
}
.cid-sUfyU0jXsv strong {
  font-weight: 600;
}
.cid-sUfyU0jXsv h1 {
  font-family: 'Saira', sans-serif;
  letter-spacing: 1.5px;
  color: white;
  font-weight: 400;
  font-size: 2.4em;
}
.cid-sUfyU0jXsv #timeline-content {
  margin-top: 50px;
  text-align: center;
}
.cid-sUfyU0jXsv .timeline {
  border-left: 4px solid #7e7f80;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Chivo', sans-serif;
  margin: 50px auto;
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.4em;
  font-size: 1.03em;
  padding: 50px;
  list-style: none;
  text-align: left;
  font-weight: 100;
  max-width: 30%;
}
.cid-sUfyU0jXsv .timeline h1 {
  font-family: 'Saira', sans-serif;
  letter-spacing: 1.5px;
  font-weight: 100;
  font-size: 1.4em;
}
.cid-sUfyU0jXsv .timeline h2,
.cid-sUfyU0jXsv .timeline h3 {
  font-family: 'Saira', sans-serif;
  letter-spacing: 1.5px;
  font-weight: 400;
  font-size: 1.4em;
}
.cid-sUfyU0jXsv .timeline .event {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 25px;
  margin-bottom: 50px;
  position: relative;
}
.cid-sUfyU0jXsv .timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.cid-sUfyU0jXsv .timeline .event:before,
.cid-sUfyU0jXsv .timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}
.cid-sUfyU0jXsv .timeline .event:before {
  left: -217.5px;
  color: rgba(255, 255, 255, 0.4);
  content: attr(data-date);
  text-align: right;
  font-weight: 100;
  font-size: 0.9em;
  min-width: 120px;
  font-family: 'Saira', sans-serif;
}
.cid-sUfyU0jXsv .timeline .event:after {
  box-shadow: 0 0 0 4px #7e7f80;
  left: -57.85px;
  background: #313534;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 5px;
}
.cid-sUe8bSWJIL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sUe8bSWJIL #cf {
  position: relative;
  width: 500px;
  max-width: 100%;
  height: 350px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sUe8bSWJIL #cf {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .cid-sUe8bSWJIL #cf {
    height: 250px;
  }
}
.cid-sUe8bSWJIL #cf img {
  position: absolute;
  left: 0;
  height: auto;
  width: 500px;
  max-width: 100%;
  cursor: pointer;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.cid-sUe8bSWJIL #cf img.top:hover {
  opacity: 0;
}
.cid-sUe8bSWJIL .mbr-text P {
  text-align: center;
}
.cid-sUe8bSWJIL img {
  border-radius: 25px;
}
.cid-sUe9bLJw8d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sUdXv2zcCN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sUdXv2zcCN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sUdXv2zcCN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sUdXv2zcCN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sUdXv2zcCN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sUdXv2zcCN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sUdXv2zcCN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sUdXv2zcCN .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sUdXv2zcCN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sUdXv2zcCN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sUdXv2zcCN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sUdXv2zcCN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sUdXv2zcCN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sUdXv2zcCN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sUdXv2zcCN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sUdXv2zcCN foot-menu-item {
  text-align: right;
}
.cid-sUdXv2zcCN .media-container-row .mbr-text {
  text-align: center;
  color: #9c9c9c;
}
