body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Encode Sans', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Encode Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Encode Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Encode Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Encode Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #36bbed !important;
}
.bg-success {
  background-color: #f9cb42 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #596d71 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #36bbed !important;
  border-color: #36bbed !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: #118dbc !important;
  border-color: #118dbc !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #118dbc !important;
  border-color: #118dbc !important;
}
.btn-secondary,
.btn-secondary: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-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.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-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #f9cb42 !important;
  border-color: #f9cb42 !important;
  color: #3a2c02 !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: #dda707 !important;
  border-color: #dda707 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3a2c02 !important;
  background-color: #dda707 !important;
  border-color: #dda707 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #596d71 !important;
  border-color: #596d71 !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: #333e40 !important;
  border-color: #333e40 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #333e40 !important;
  border-color: #333e40 !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: #36bbed;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #118dbc !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: #36bbed !important;
  border-color: #36bbed !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !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: #232323 !important;
  border-color: #232323 !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: #f9cb42;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #dda707 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3a2c02 !important;
  background-color: #f9cb42 !important;
  border-color: #f9cb42 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #596d71;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #333e40 !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: #596d71 !important;
  border-color: #596d71 !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: #36bbed !important;
}
.text-secondary {
  color: #232323 !important;
}
.text-success {
  color: #f9cb42 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #596d71 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1082ad !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ce9c07 !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: #cccccc !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #2c3638 !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: #36bbed;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #596d71;
}
.mbr-gallery-filter li.active .btn {
  background-color: #36bbed;
  border-color: #36bbed;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #36bbed;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f1fafe;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #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: #9aacaf;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Encode Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #36bbed !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Encode Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #36bbed;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #36bbed;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #36bbed;
}
.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: #36bbed;
  border-bottom-color: #36bbed;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #36bbed !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #232323 !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='%2336bbed' %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-tiJzRDTCir {
  background-image: url("../../../assets/images/appcelular2-3.png");
}
.cid-tiJzRDTCir .card-wrapper {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: -3px 2px 29px -3px rgba(82, 82, 82, 0.56);
  -webkit-box-shadow: -3px 2px 29px -3px rgba(82, 82, 82, 0.56);
  -moz-box-shadow: -3px 2px 29px -3px rgba(82, 82, 82, 0.56);
}
@media (max-width: 767px) {
  .cid-tiJzRDTCir .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tiJzRDTCir .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tiJzRDTCir .card-wrapper {
    padding: 4rem;
  }
}
.cid-tiJzRDTCir .card-title {
  text-align: left;
  margin-left: 10%;
  margin-top: 10%;
  color: #353535;
}
.cid-tiJzRDTCir .mbr-text {
  margin-right: 10%;
  margin-left: 10%;
  margin-top: 2%;
  text-align: left;
}
.cid-tiJzRDTCir .mbr-section-btn {
  text-align: left;
  margin-top: 2%;
  margin-left: 9%;
  margin-bottom: 10%;
}
.cid-trdTMBCknl {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #3b4449;
}
@media (max-width: 991px) {
  .cid-trdTMBCknl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-trdTMBCknl .row {
  flex-direction: row-reverse;
}
.cid-trdTMBCknl img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-trdTMBCknl .text-wrapper {
    padding: 2rem;
  }
}
.cid-trdTMBCknl .mbr-text {
  color: #ffffff;
}
.cid-trdTSvFDtp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-trdTSvFDtp .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tj7kFvY3eh {
  z-index: 1000;
  width: 100%;
}
.cid-tj7kFvY3eh nav.navbar {
  position: fixed;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tj7kFvY3eh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tj7kFvY3eh .dropdown-item:hover,
.cid-tj7kFvY3eh .dropdown-item:focus {
  background: #36bbed !important;
  color: white !important;
}
.cid-tj7kFvY3eh .dropdown-item:hover span {
  color: white;
}
.cid-tj7kFvY3eh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tj7kFvY3eh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tj7kFvY3eh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tj7kFvY3eh .nav-link {
  position: relative;
}
.cid-tj7kFvY3eh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tj7kFvY3eh .container {
    flex-wrap: nowrap;
  }
}
.cid-tj7kFvY3eh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown-menu,
.cid-tj7kFvY3eh .navbar.opened {
  background: #181818 !important;
}
.cid-tj7kFvY3eh .nav-item:focus,
.cid-tj7kFvY3eh .nav-link:focus {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tj7kFvY3eh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tj7kFvY3eh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(24, 24, 24, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cid-tj7kFvY3eh .navbar.opened {
  transition: all 0.3s;
}
.cid-tj7kFvY3eh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tj7kFvY3eh .navbar .navbar-logo img {
  width: auto;
}
.cid-tj7kFvY3eh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar.collapsed {
  justify-content: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tj7kFvY3eh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tj7kFvY3eh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tj7kFvY3eh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tj7kFvY3eh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tj7kFvY3eh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tj7kFvY3eh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tj7kFvY3eh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tj7kFvY3eh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tj7kFvY3eh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tj7kFvY3eh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tj7kFvY3eh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-info {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-success {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown-item.active,
.cid-tj7kFvY3eh .dropdown-item:active {
  background-color: transparent;
}
.cid-tj7kFvY3eh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181818;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tj7kFvY3eh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tj7kFvY3eh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tj7kFvY3eh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tj7kFvY3eh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2fb0df;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tj7kFvY3eh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .navbar {
    height: 70px;
  }
  .cid-tj7kFvY3eh .navbar.opened {
    height: auto;
  }
  .cid-tj7kFvY3eh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #36bbed;
  }
}
.cid-trjsntDuEd {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f5f5f7;
}
@media (max-width: 991px) {
  .cid-trjsntDuEd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-trjsntDuEd .row {
  flex-direction: row-reverse;
}
.cid-trjsntDuEd img {
  width: 100%;
}
.cid-trjsoit5oW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f5f5f7;
}
.cid-trjsoit5oW .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-trjsoit5oW .mbr-section-subtitle {
  text-align: center;
}
.cid-tiuloCRt1f {
  background-color: #f5f5f7;
}
.cid-tiuloCRt1f .show {
  visibility: visible;
}
.cid-tiuloCRt1f .hide {
  visibility: hidden;
}
.cid-tjfk3ctuGI {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #f5f5f7;
}
.cid-tjfk3ctuGI .video-wrapper iframe {
  width: 100%;
}
.cid-tjfk3ctuGI .mbr-section-title,
.cid-tjfk3ctuGI .mbr-section-subtitle,
.cid-tjfk3ctuGI .mbr-text {
  text-align: center;
}
.cid-tiu9uAxwT5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tiu9uAxwT5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiu9uAxwT5 .row {
  flex-direction: row-reverse;
}
.cid-tiu9uAxwT5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiu9uAxwT5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tiB59zCKh1 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/devices2.png");
}
.cid-tiB59zCKh1 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tiB59zCKh1 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ecf8ff;
  transition: all 0.3s;
  color: #ecf8ff;
}
.cid-tiB59zCKh1 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ecf8ff;
  color: #000000;
}
.cid-tiB59zCKh1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tiB59zCKh1 .mbr-section-subtitle {
  text-align: left;
  color: #00b1f3;
}
.cid-tiB59zCKh1 .mbr-text,
.cid-tiB59zCKh1 .mbr-section-btn,
.cid-tiB59zCKh1 .social-row {
  text-align: center;
  color: #ffffff;
}
.cid-tiAKgnswWh {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiAKgnswWh img,
.cid-tiAKgnswWh .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tiAKgnswWh .item:focus,
.cid-tiAKgnswWh span:focus {
  outline: none;
}
.cid-tiAKgnswWh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tiAKgnswWh .item-wrapper {
  position: relative;
  border-radius: 15px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tiAKgnswWh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tiAKgnswWh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tiAKgnswWh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tiAKgnswWh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tiAKgnswWh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tiAKgnswWh .mbr-section-title {
  color: #232323;
}
.cid-tiAKgnswWh .mbr-text,
.cid-tiAKgnswWh .mbr-section-btn {
  text-align: center;
}
.cid-tiAKgnswWh .item-title {
  text-align: center;
}
.cid-tiAKgnswWh .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tiAQBFWRla {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tiAQBFWRla img,
.cid-tiAQBFWRla .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tiAQBFWRla .item:focus,
.cid-tiAQBFWRla span:focus {
  outline: none;
}
.cid-tiAQBFWRla .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tiAQBFWRla .item-wrapper {
  position: relative;
  border-radius: 15px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tiAQBFWRla .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tiAQBFWRla .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tiAQBFWRla .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tiAQBFWRla .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tiAQBFWRla .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tiAQBFWRla .mbr-section-title {
  color: #232323;
}
.cid-tiAQBFWRla .mbr-text,
.cid-tiAQBFWRla .mbr-section-btn {
  text-align: center;
}
.cid-tiAQBFWRla .item-title {
  text-align: center;
}
.cid-tiAQBFWRla .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tz6jmc6BWC {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tz6jmc6BWC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tz6jmc6BWC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tz6jmc6BWC .mbr-text {
  color: #c1c1c1;
}
.cid-tz6jmc6BWC .mbr-text,
.cid-tz6jmc6BWC .mbr-section-btn {
  text-align: justify;
  color: #f5f5f7;
}
.cid-tiDvFC5zCD {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #3b4449;
}
@media (max-width: 991px) {
  .cid-tiDvFC5zCD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiDvFC5zCD .row {
  flex-direction: row-reverse;
}
.cid-tiDvFC5zCD img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-tiDvFC5zCD .text-wrapper {
    padding: 2rem;
  }
}
.cid-tiDvFC5zCD .mbr-text {
  color: #ffffff;
}
.cid-trdTSvFDtp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-trdTSvFDtp .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tiDJ0bWuVC {
  background-image: url("../../../assets/images/paolo-bendandi-s8wrjl8-aey-unsplash.jpg");
}
.cid-tiDJ0bWuVC .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tiDJ0bWuVC .mbr-text,
.cid-tiDJ0bWuVC .mbr-section-btn {
  color: #ffffff;
}
.cid-tiDJ0bWuVC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tiEb90aYlC {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #f5f5f7;
}
.cid-tiEb90aYlC .content-wrapper {
  background: #ffffff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .cid-tiEb90aYlC .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tiEb90aYlC .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tiEb90aYlC .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tiEb90aYlC .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tiEb90aYlC .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tiEb90aYlC .content-wrapper .text-wrapper {
    padding-right: 2rem;
    margin-left: 3rem;
    text-align: justify;
  }
}
.cid-tiEb90aYlC .image-wrapper img {
  width: 90%;
  margin-right: 2rem;
  object-fit: cover;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.cid-tiEb90aYlC .mbr-section-title {
  padding-top: 5%;
  text-align: left;
}
.cid-tiEb90aYlC .card-title {
  color: #3b4449;
}
.cid-tiEoZUEc9B {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #f5f5f7;
}
.cid-tiEoZUEc9B .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #36bbed;
  margin-bottom: 20%;
}
.cid-tiEoZUEc9B .card-wrapper {
  padding: 5rem;
  background: #ffffff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 992px) {
  .cid-tiEoZUEc9B .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tiEoZUEc9B .card-title {
    padding: 3rem 1rem;
  }
}
.cid-tiEoZUEc9B .mbr-text {
  text-align: justify;
}
.cid-tiEoZUEc9B .card-title {
  color: #3b4449;
  text-align: left;
}
.cid-tiF4wFzCN7 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #f5f5f7;
}
.cid-tiF4wFzCN7 .mbr-text {
  text-align: justify;
}
.cid-tiF4wFzCN7 .mbr-section-subtitle {
  color: #353535;
}
.cid-tiF4rzjlft {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #f5f5f7;
}
@media (max-width: 991px) {
  .cid-tiF4rzjlft .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiF4rzjlft .row {
  flex-direction: row-reverse;
}
.cid-tiF4rzjlft img {
  width: 100%;
}
.cid-tiF4rzjlft .mbr-description {
  color: #838383;
}
.cid-tiFuW9DJf2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f5f5f7;
}
.cid-tiFuW9DJf2 .content-wrapper {
  background: #ffffff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .cid-tiFuW9DJf2 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tiFuW9DJf2 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tiFuW9DJf2 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tiFuW9DJf2 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tiFuW9DJf2 .content-wrapper {
    padding: 5rem 2rem;
  }
  .cid-tiFuW9DJf2 .content-wrapper .text-wrapper {
    margin-left: 5rem;
    text-align: left;
  }
}
.cid-tiFuW9DJf2 .image-wrapper img {
  width: 150%;
}
.cid-tiFuW9DJf2 .mbr-section-title {
  padding-top: 5%;
  text-align: left;
}
.cid-tiFuW9DJf2 .card-title {
  color: #3b4449;
}
.cid-tiFXiFGpQa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f5f5f7;
}
.cid-tiFXiFGpQa .content-wrapper {
  background: #ffffff;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .cid-tiFXiFGpQa .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tiFXiFGpQa .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tiFXiFGpQa .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tiFXiFGpQa .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tiFXiFGpQa .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tiFXiFGpQa .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.cid-tiGEGd3zIv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f5f5f7;
}
.cid-tiGEGd3zIv .content-wrapper {
  background: #ffffff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .cid-tiGEGd3zIv .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tiGEGd3zIv .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tiGEGd3zIv .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tiGEGd3zIv .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tiGEGd3zIv .content-wrapper {
    padding: 5rem 2rem;
  }
  .cid-tiGEGd3zIv .content-wrapper .text-wrapper {
    margin-left: 5rem;
    text-align: left;
  }
}
.cid-tiGEGd3zIv .image-wrapper img {
  width: 170%;
}
.cid-tiGEGd3zIv .mbr-section-title {
  padding-top: 5%;
  text-align: left;
}
.cid-tiGEGd3zIv .card-title {
  color: #3b4449;
}
.cid-tiGVSPZcBJ {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiGVSPZcBJ .mbr-section-subtitle {
  color: #232323;
}
.cid-tiGTLlvm0u {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tiGTLlvm0u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiGTLlvm0u .row {
  flex-direction: row-reverse;
}
.cid-tiGTLlvm0u img {
  width: 100%;
}
.cid-tiMjFMaQHW {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tiMjFMaQHW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiMjFMaQHW .row {
  flex-direction: row-reverse;
}
.cid-tiMjFMaQHW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiMjFMaQHW .text-wrapper {
    padding: 2rem;
  }
}
.cid-tECmGds3Xe {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tECmGds3Xe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECmGds3Xe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECmGds3Xe .mbr-text {
  color: #c1c1c1;
}
.cid-tECmGds3Xe .mbr-text,
.cid-tECmGds3Xe .mbr-section-btn {
  text-align: justify;
  color: #f5f5f7;
}
.cid-trdU1m0V3w {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #3b4449;
}
@media (max-width: 991px) {
  .cid-trdU1m0V3w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-trdU1m0V3w .row {
  flex-direction: row-reverse;
}
.cid-trdU1m0V3w img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-trdU1m0V3w .text-wrapper {
    padding: 2rem;
  }
}
.cid-trdU1m0V3w .mbr-text {
  color: #ffffff;
}
.cid-tj7kFvY3eh {
  z-index: 1000;
  width: 100%;
}
.cid-tj7kFvY3eh nav.navbar {
  position: fixed;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tj7kFvY3eh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tj7kFvY3eh .dropdown-item:hover,
.cid-tj7kFvY3eh .dropdown-item:focus {
  background: #36bbed !important;
  color: white !important;
}
.cid-tj7kFvY3eh .dropdown-item:hover span {
  color: white;
}
.cid-tj7kFvY3eh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tj7kFvY3eh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tj7kFvY3eh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tj7kFvY3eh .nav-link {
  position: relative;
}
.cid-tj7kFvY3eh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tj7kFvY3eh .container {
    flex-wrap: nowrap;
  }
}
.cid-tj7kFvY3eh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown-menu,
.cid-tj7kFvY3eh .navbar.opened {
  background: #181818 !important;
}
.cid-tj7kFvY3eh .nav-item:focus,
.cid-tj7kFvY3eh .nav-link:focus {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tj7kFvY3eh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tj7kFvY3eh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(24, 24, 24, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cid-tj7kFvY3eh .navbar.opened {
  transition: all 0.3s;
}
.cid-tj7kFvY3eh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tj7kFvY3eh .navbar .navbar-logo img {
  width: auto;
}
.cid-tj7kFvY3eh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar.collapsed {
  justify-content: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tj7kFvY3eh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tj7kFvY3eh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tj7kFvY3eh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tj7kFvY3eh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tj7kFvY3eh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tj7kFvY3eh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tj7kFvY3eh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tj7kFvY3eh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tj7kFvY3eh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tj7kFvY3eh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tj7kFvY3eh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-info {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-success {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown-item.active,
.cid-tj7kFvY3eh .dropdown-item:active {
  background-color: transparent;
}
.cid-tj7kFvY3eh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181818;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tj7kFvY3eh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tj7kFvY3eh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tj7kFvY3eh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tj7kFvY3eh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2fb0df;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tj7kFvY3eh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .navbar {
    height: 70px;
  }
  .cid-tj7kFvY3eh .navbar.opened {
    height: auto;
  }
  .cid-tj7kFvY3eh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #36bbed;
  }
}
.cid-trdTSvFDtp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-trdTSvFDtp .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tiLzkZsyWQ {
  background-image: url("../../../assets/images/4901771-1.png");
}
.cid-tiLzkZsyWQ .mbr-section-title {
  color: #ffffff;
}
.cid-tiLzkZsyWQ .mbr-text,
.cid-tiLzkZsyWQ .mbr-section-btn {
  color: #ffffff;
}
.cid-tj8uQuKAgz {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-color: #f5f5f7;
}
.cid-tj8uQuKAgz .mbr-section-subtitle {
  color: #3b4449;
}
.cid-tr3bXp0Lsm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f5f5f7;
}
.cid-tr3bXp0Lsm .video-wrapper iframe {
  width: 100%;
}
.cid-tr3bXp0Lsm .mbr-section-title,
.cid-tr3bXp0Lsm .mbr-section-subtitle,
.cid-tr3bXp0Lsm .mbr-text {
  text-align: center;
}
.cid-tjisPCn9Tx {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f5f5f7;
}
.cid-tjisPCn9Tx .row {
  flex-direction: row-reverse;
}
.cid-tjisPCn9Tx .video-wrapper iframe {
  width: 100%;
}
.cid-tjisPCn9Tx .mbr-section-title,
.cid-tjisPCn9Tx .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tjisPCn9Tx .text-wrapper {
    padding: 2rem;
  }
}
.cid-tjitrACnQA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f5f5f7;
}
.cid-tjitrACnQA .video-wrapper iframe {
  width: 100%;
}
.cid-tjitrACnQA .mbr-section-title,
.cid-tjitrACnQA .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tjitrACnQA .text-wrapper {
    padding: 2rem;
  }
}
.cid-tjiDtwVfIo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f5f5f7;
}
.cid-tjiDtwVfIo .row {
  flex-direction: row-reverse;
}
.cid-tjiDtwVfIo .video-wrapper iframe {
  width: 100%;
}
.cid-tjiDtwVfIo .mbr-section-title,
.cid-tjiDtwVfIo .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tjiDtwVfIo .text-wrapper {
    padding: 2rem;
  }
}
.cid-tjiDZRPOYv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f5f5f7;
}
.cid-tjiDZRPOYv .video-wrapper iframe {
  width: 100%;
}
.cid-tjiDZRPOYv .mbr-section-title,
.cid-tjiDZRPOYv .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tjiDZRPOYv .text-wrapper {
    padding: 2rem;
  }
}
.cid-tjiEDTObpK {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #f5f5f7;
}
.cid-tjiEDTObpK .row {
  flex-direction: row-reverse;
}
.cid-tjiEDTObpK .video-wrapper iframe {
  width: 100%;
}
.cid-tjiEDTObpK .mbr-section-title,
.cid-tjiEDTObpK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tjiEDTObpK .text-wrapper {
    padding: 2rem;
  }
}
.cid-tECmM5qJi9 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tECmM5qJi9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECmM5qJi9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECmM5qJi9 .mbr-text {
  color: #c1c1c1;
}
.cid-tECmM5qJi9 .mbr-text,
.cid-tECmM5qJi9 .mbr-section-btn {
  text-align: justify;
  color: #f5f5f7;
}
.cid-trdU6WB5Qt {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #3b4449;
}
@media (max-width: 991px) {
  .cid-trdU6WB5Qt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-trdU6WB5Qt .row {
  flex-direction: row-reverse;
}
.cid-trdU6WB5Qt img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-trdU6WB5Qt .text-wrapper {
    padding: 2rem;
  }
}
.cid-trdU6WB5Qt .mbr-text {
  color: #ffffff;
}
.cid-tj7kFvY3eh {
  z-index: 1000;
  width: 100%;
}
.cid-tj7kFvY3eh nav.navbar {
  position: fixed;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tj7kFvY3eh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tj7kFvY3eh .dropdown-item:hover,
.cid-tj7kFvY3eh .dropdown-item:focus {
  background: #36bbed !important;
  color: white !important;
}
.cid-tj7kFvY3eh .dropdown-item:hover span {
  color: white;
}
.cid-tj7kFvY3eh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tj7kFvY3eh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tj7kFvY3eh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tj7kFvY3eh .nav-link {
  position: relative;
}
.cid-tj7kFvY3eh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tj7kFvY3eh .container {
    flex-wrap: nowrap;
  }
}
.cid-tj7kFvY3eh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown-menu,
.cid-tj7kFvY3eh .navbar.opened {
  background: #181818 !important;
}
.cid-tj7kFvY3eh .nav-item:focus,
.cid-tj7kFvY3eh .nav-link:focus {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tj7kFvY3eh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tj7kFvY3eh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(24, 24, 24, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cid-tj7kFvY3eh .navbar.opened {
  transition: all 0.3s;
}
.cid-tj7kFvY3eh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tj7kFvY3eh .navbar .navbar-logo img {
  width: auto;
}
.cid-tj7kFvY3eh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar.collapsed {
  justify-content: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tj7kFvY3eh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tj7kFvY3eh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tj7kFvY3eh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tj7kFvY3eh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tj7kFvY3eh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tj7kFvY3eh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tj7kFvY3eh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tj7kFvY3eh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tj7kFvY3eh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tj7kFvY3eh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tj7kFvY3eh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-info {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-success {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown-item.active,
.cid-tj7kFvY3eh .dropdown-item:active {
  background-color: transparent;
}
.cid-tj7kFvY3eh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181818;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tj7kFvY3eh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tj7kFvY3eh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tj7kFvY3eh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tj7kFvY3eh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2fb0df;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tj7kFvY3eh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .navbar {
    height: 70px;
  }
  .cid-tj7kFvY3eh .navbar.opened {
    height: auto;
  }
  .cid-tj7kFvY3eh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #36bbed;
  }
}
.cid-trdTSvFDtp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-trdTSvFDtp .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tiM9em1rWZ {
  display: flex;
  background-image: url("../../../assets/images/historyfran.jpg");
}
.cid-tiM9em1rWZ .mbr-overlay {
  background-color: #3b4449;
  opacity: 0.5;
}
.cid-tiM9em1rWZ .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiM9em1rWZ {
    align-items: flex-end;
  }
  .cid-tiM9em1rWZ .row {
    justify-content: flex-start;
  }
  .cid-tiM9em1rWZ .content-wrap {
    width: 40%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiM9em1rWZ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiM9em1rWZ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiM9em1rWZ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiM9em1rWZ .content-wrap {
    width: 100%;
  }
}
.cid-tECoejQUz0 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f6f7f8;
}
.cid-tECoejQUz0 blockquote {
  border-color: #2fb0df;
  border-radius: 4px;
  background-color: #f0f0f0;
}
.cid-tj25hP3rJ7 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #f6f7f8;
}
.cid-tj25hP3rJ7 .timeline-element {
  position: relative;
}
.cid-tj25hP3rJ7 .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-tj25hP3rJ7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tj25hP3rJ7 .mbr-section-title,
.cid-tj25hP3rJ7 .mbr-section-subtitle,
.cid-tj25hP3rJ7 .timeline-date {
  text-align: center;
}
.cid-tj25hP3rJ7 .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #2fb0df;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tj25hP3rJ7 .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-tj25hP3rJ7 .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-tj25hP3rJ7 .row:after {
  content: "";
  position: absolute;
  background-color: #2fb0df;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-tj25hP3rJ7 .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-tj25hP3rJ7 .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tj25hP3rJ7 .timeline-date-wrapper,
  .cid-tj25hP3rJ7 .timeline-text-wrapper,
  .cid-tj25hP3rJ7 .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-tj25hP3rJ7 .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-tj25hP3rJ7 .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tj25hP3rJ7 .timeline-date-wrapper,
  .cid-tj25hP3rJ7 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tj25hP3rJ7 .timeline-date-wrapper,
  .cid-tj25hP3rJ7 .timeline-text-wrapper,
  .cid-tj25hP3rJ7 .image-wrapper {
    padding: 2rem;
  }
}
.cid-tj2C98HsmM {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-color: #f6f7f8;
}
.cid-tj2C98HsmM .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tj2C98HsmM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tj2C98HsmM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tj2C98HsmM .text-wrapper {
    padding: 2rem;
  }
}
.cid-tj2C98HsmM .mbr-section-title {
  color: #232323;
}
.cid-tj2C98HsmM .mbr-text {
  color: #232323;
}
.cid-tECrOQOkA7 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tECrOQOkA7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECrOQOkA7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECrOQOkA7 .mbr-text {
  color: #c1c1c1;
}
.cid-tECrOQOkA7 .mbr-text,
.cid-tECrOQOkA7 .mbr-section-btn {
  text-align: justify;
  color: #f5f5f7;
}
.cid-trdUaJZmpl {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #3b4449;
}
@media (max-width: 991px) {
  .cid-trdUaJZmpl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-trdUaJZmpl .row {
  flex-direction: row-reverse;
}
.cid-trdUaJZmpl img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-trdUaJZmpl .text-wrapper {
    padding: 2rem;
  }
}
.cid-trdUaJZmpl .mbr-text {
  color: #ffffff;
}
.cid-tj7kFvY3eh {
  z-index: 1000;
  width: 100%;
}
.cid-tj7kFvY3eh nav.navbar {
  position: fixed;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tj7kFvY3eh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tj7kFvY3eh .dropdown-item:hover,
.cid-tj7kFvY3eh .dropdown-item:focus {
  background: #36bbed !important;
  color: white !important;
}
.cid-tj7kFvY3eh .dropdown-item:hover span {
  color: white;
}
.cid-tj7kFvY3eh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tj7kFvY3eh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tj7kFvY3eh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tj7kFvY3eh .nav-link {
  position: relative;
}
.cid-tj7kFvY3eh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tj7kFvY3eh .container {
    flex-wrap: nowrap;
  }
}
.cid-tj7kFvY3eh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown-menu,
.cid-tj7kFvY3eh .navbar.opened {
  background: #181818 !important;
}
.cid-tj7kFvY3eh .nav-item:focus,
.cid-tj7kFvY3eh .nav-link:focus {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tj7kFvY3eh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tj7kFvY3eh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(24, 24, 24, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cid-tj7kFvY3eh .navbar.opened {
  transition: all 0.3s;
}
.cid-tj7kFvY3eh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tj7kFvY3eh .navbar .navbar-logo img {
  width: auto;
}
.cid-tj7kFvY3eh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar.collapsed {
  justify-content: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tj7kFvY3eh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tj7kFvY3eh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tj7kFvY3eh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tj7kFvY3eh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tj7kFvY3eh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tj7kFvY3eh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tj7kFvY3eh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tj7kFvY3eh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tj7kFvY3eh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tj7kFvY3eh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tj7kFvY3eh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-info {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-success {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown-item.active,
.cid-tj7kFvY3eh .dropdown-item:active {
  background-color: transparent;
}
.cid-tj7kFvY3eh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181818;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tj7kFvY3eh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tj7kFvY3eh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tj7kFvY3eh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tj7kFvY3eh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2fb0df;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tj7kFvY3eh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .navbar {
    height: 70px;
  }
  .cid-tj7kFvY3eh .navbar.opened {
    height: auto;
  }
  .cid-tj7kFvY3eh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #36bbed;
  }
}
.cid-trdTSvFDtp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-trdTSvFDtp .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tiMqDXAhcW {
  display: flex;
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/saludmanualmarca-2.png");
}
.cid-tiMqDXAhcW .mbr-overlay {
  background-color: #3b4449;
  opacity: 0.5;
}
.cid-tiMqDXAhcW .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiMqDXAhcW {
    align-items: flex-end;
  }
  .cid-tiMqDXAhcW .row {
    justify-content: flex-start;
  }
  .cid-tiMqDXAhcW .content-wrap {
    width: 80%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiMqDXAhcW .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiMqDXAhcW {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiMqDXAhcW .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiMqDXAhcW .content-wrap {
    width: 100%;
  }
}
.cid-tiP5npo3EA {
  display: flex;
  background-image: url("../../../assets/images/saludmanualmarca-4.png");
}
.cid-tiP5npo3EA .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiP5npo3EA .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiP5npo3EA {
    align-items: flex-end;
  }
  .cid-tiP5npo3EA .row {
    justify-content: flex-start;
  }
  .cid-tiP5npo3EA .content-wrap {
    width: 20%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiP5npo3EA .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiP5npo3EA {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiP5npo3EA .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiP5npo3EA .content-wrap {
    width: 100%;
  }
}
.cid-tiP5tOjLi6 {
  display: flex;
  background-image: url("../../../assets/images/saludmanualmarca-5.png");
}
.cid-tiP5tOjLi6 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiP5tOjLi6 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiP5tOjLi6 {
    align-items: flex-end;
  }
  .cid-tiP5tOjLi6 .row {
    justify-content: flex-start;
  }
  .cid-tiP5tOjLi6 .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiP5tOjLi6 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiP5tOjLi6 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiP5tOjLi6 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiP5tOjLi6 .content-wrap {
    width: 100%;
  }
}
.cid-tiP5ExddJT {
  display: flex;
  background-image: url("../../../assets/images/saludmanualmarca-6.png");
}
.cid-tiP5ExddJT .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiP5ExddJT .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiP5ExddJT {
    align-items: flex-end;
  }
  .cid-tiP5ExddJT .row {
    justify-content: flex-start;
  }
  .cid-tiP5ExddJT .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiP5ExddJT .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiP5ExddJT {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiP5ExddJT .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiP5ExddJT .content-wrap {
    width: 100%;
  }
}
.cid-tiP5ExddJT .mbr-section-title {
  color: #ffffff;
}
.cid-tiP5ExddJT .mbr-text,
.cid-tiP5ExddJT .mbr-section-btn {
  color: #ffffff;
}
.cid-tiP5JVkb9u {
  display: flex;
  background-image: url("../../../assets/images/saludmanualmarca-2.png");
}
.cid-tiP5JVkb9u .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiP5JVkb9u .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiP5JVkb9u {
    align-items: center;
  }
  .cid-tiP5JVkb9u .row {
    justify-content: flex-start;
  }
  .cid-tiP5JVkb9u .content-wrap {
    width: 40%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiP5JVkb9u .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiP5JVkb9u {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiP5JVkb9u .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiP5JVkb9u .content-wrap {
    width: 100%;
  }
}
.cid-tiP5JVkb9u .mbr-section-title {
  color: #ffffff;
}
.cid-tiP5JVkb9u .mbr-text,
.cid-tiP5JVkb9u .mbr-section-btn {
  color: #ffffff;
}
.cid-tiPFaWeUMr {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tiPFaWeUMr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiPFaWeUMr .row {
  flex-direction: row-reverse;
}
.cid-tiPFaWeUMr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPFaWeUMr .text-wrapper {
    padding: 2rem;
  }
}
.cid-tiPFaWeUMr .mbr-text {
  margin: 10%;
}
.cid-tiPFaWeUMr .mbr-section-title {
  margin: 10%;
}
.cid-tiPFZZPO2d {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tiPFZZPO2d .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPFZZPO2d .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-tiPFZZPO2d .mbr-text {
  margin-right: 20%;
  margin-left: 20%;
  margin-bottom: 5%;
}
.cid-tiPFZZPO2d .mbr-text,
.cid-tiPFZZPO2d .mbr-section-btn {
  text-align: left;
}
.cid-tiPFZZPO2d .mbr-section-title {
  text-align: left;
  margin-right: 20%;
  margin-left: 20%;
}
.cid-tiPIfEV1vu {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #f5f5f7;
}
.cid-tiPJ1sBxAz {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #f5f5f7;
}
.cid-tiPJ1sBxAz .item {
  padding-bottom: 2rem;
}
.cid-tiPJ1sBxAz .item-wrapper {
  position: relative;
}
.cid-tiPJ1sBxAz .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tiPJ1sBxAz .carousel-control,
.cid-tiPJ1sBxAz .close {
  background: #1b1b1b;
}
.cid-tiPJ1sBxAz .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tiPJ1sBxAz .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tiPJ1sBxAz .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tiPJ1sBxAz .carousel-control-next span {
  margin-left: 5px;
}
.cid-tiPJ1sBxAz .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tiPJ1sBxAz .close::before {
  content: '\e91a';
}
.cid-tiPJ1sBxAz .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-tiPJ1sBxAz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tiPJ1sBxAz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tiPJ1sBxAz .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tiPJ1sBxAz .carousel-indicators li::after,
.cid-tiPJ1sBxAz .carousel-indicators li::before {
  content: none;
}
.cid-tiPJ1sBxAz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tiPJ1sBxAz .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tiPJ1sBxAz .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tiPJ1sBxAz .carousel-indicators {
    display: none;
  }
}
.cid-tiPJ1sBxAz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tiPJ1sBxAz .carousel-inner > .active {
  display: block;
}
.cid-tiPJ1sBxAz .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiPJ1sBxAz .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tiPJ1sBxAz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tiPJ1sBxAz .carousel-control,
  .cid-tiPJ1sBxAz .carousel-indicators,
  .cid-tiPJ1sBxAz .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tiPJ1sBxAz .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tiPJ1sBxAz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tiPJ1sBxAz .carousel-indicators .active,
.cid-tiPJ1sBxAz .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tiPJ1sBxAz .carousel-indicators .active {
  background: #fff;
}
.cid-tiPJ1sBxAz .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tiPJ1sBxAz .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tiPJ1sBxAz .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tiPJ1sBxAz .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tiPJ1sBxAz .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tiPJ1sBxAz .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tiPJ1sBxAz .carousel {
  width: 100%;
}
.cid-tiPJ1sBxAz .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tiPJ1sBxAz .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tiPJ1sBxAz .modal.fade .modal-dialog,
.cid-tiPJ1sBxAz .modal.in .modal-dialog {
  transform: none;
}
.cid-tiPJ1sBxAz .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tiPJ1sBxAz H6 {
  text-align: center;
}
.cid-tiPL9viwWW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tiPL9viwWW .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tiPL9viwWW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiPL9viwWW .row {
  flex-direction: row-reverse;
}
.cid-tiPL9viwWW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPL9viwWW .text-wrapper {
    padding: 2rem;
  }
}
.cid-tiPL9viwWW .mbr-text {
  color: #ffffff;
  margin-left: 15%;
}
.cid-tiPL9viwWW .mbr-section-title {
  color: #ffffff;
  margin-left: 15%;
}
.cid-tiPL9viwWW .mbr-description {
  color: #838383;
  text-align: center;
}
.cid-tiPNpR0QfT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #36bbed;
}
.cid-tiPNpR0QfT .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tiPNpR0QfT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiPNpR0QfT .row {
  flex-direction: row-reverse;
}
.cid-tiPNpR0QfT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPNpR0QfT .text-wrapper {
    padding: 2rem;
  }
}
.cid-tiPNpR0QfT .mbr-text {
  color: #ffffff;
  margin-left: 15%;
}
.cid-tiPNpR0QfT .mbr-section-title {
  color: #ffffff;
  margin-left: 15%;
}
.cid-tiPNpR0QfT .mbr-description {
  color: #838383;
  text-align: center;
}
.cid-tiPNJBzAFS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e1b219;
}
.cid-tiPNJBzAFS .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tiPNJBzAFS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiPNJBzAFS .row {
  flex-direction: row-reverse;
}
.cid-tiPNJBzAFS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPNJBzAFS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tiPNJBzAFS .mbr-text {
  color: #232323;
  margin-left: 15%;
}
.cid-tiPNJBzAFS .mbr-section-title {
  color: #232323;
  margin-left: 15%;
}
.cid-tiPNJBzAFS .mbr-description {
  color: #838383;
  text-align: center;
}
.cid-tiPOnNdLZv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f6f7f8;
}
.cid-tiPOnNdLZv .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tiPOnNdLZv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiPOnNdLZv .row {
  flex-direction: row-reverse;
}
.cid-tiPOnNdLZv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPOnNdLZv .text-wrapper {
    padding: 2rem;
  }
}
.cid-tiPOnNdLZv .mbr-text {
  color: #232323;
  margin-left: 15%;
}
.cid-tiPOnNdLZv .mbr-section-title {
  color: #232323;
  margin-left: 15%;
}
.cid-tiPOnNdLZv .mbr-description {
  color: #838383;
  text-align: center;
}
.cid-tiPPe97Vbg {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tiPPe97Vbg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiPPe97Vbg .row {
  flex-direction: row-reverse;
}
.cid-tiPPe97Vbg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPPe97Vbg .text-wrapper {
    padding: 2rem;
  }
}
.cid-tiPPe97Vbg .mbr-text {
  margin: 10%;
}
.cid-tiPPe97Vbg .mbr-section-title {
  margin: 10%;
}
.cid-tiPPsZDanB {
  display: flex;
  background-image: url("../../../assets/images/saludmanualmarca-2.png");
}
.cid-tiPPsZDanB .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiPPsZDanB .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiPPsZDanB {
    align-items: center;
  }
  .cid-tiPPsZDanB .row {
    justify-content: flex-start;
  }
  .cid-tiPPsZDanB .content-wrap {
    width: 40%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiPPsZDanB .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiPPsZDanB {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiPPsZDanB .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiPPsZDanB .content-wrap {
    width: 100%;
  }
}
.cid-tiPPsZDanB .mbr-section-title {
  color: #ffffff;
}
.cid-tiPPsZDanB .mbr-text,
.cid-tiPPsZDanB .mbr-section-btn {
  color: #ffffff;
}
.cid-tiPPGl5fhv {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tiPPGl5fhv .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPPGl5fhv .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-tiPPGl5fhv .mbr-text {
  margin-right: 20%;
  margin-left: 20%;
  margin-bottom: 5%;
}
.cid-tiPPGl5fhv .mbr-text,
.cid-tiPPGl5fhv .mbr-section-btn {
  text-align: left;
}
.cid-tiPPGl5fhv .mbr-section-title {
  text-align: left;
  margin-right: 20%;
  margin-left: 20%;
}
.cid-tiPPW21bvs {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tiPPW21bvs .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPPW21bvs .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-tiPPW21bvs .mbr-text {
  margin-right: 20%;
  margin-left: 20%;
  margin-bottom: 5%;
}
.cid-tiPPW21bvs .mbr-text,
.cid-tiPPW21bvs .mbr-section-btn {
  text-align: left;
}
.cid-tiPPW21bvs .mbr-section-title {
  text-align: left;
  margin-right: 20%;
  margin-left: 20%;
}
.cid-tiPQ7CKG7D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f2;
}
.cid-tiPQ7CKG7D .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tiPQ7CKG7D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiPQ7CKG7D .row {
  flex-direction: row-reverse;
}
.cid-tiPQ7CKG7D img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPQ7CKG7D .text-wrapper {
    padding: 2rem;
  }
}
.cid-tiPQ7CKG7D .mbr-text {
  color: #232323;
  margin-left: 15%;
}
.cid-tiPQ7CKG7D .mbr-section-title {
  color: #232323;
  margin-left: 15%;
}
.cid-tiPQ7CKG7D .mbr-description {
  color: #838383;
  text-align: center;
}
.cid-tiPQQJYyLW {
  display: flex;
  background-image: url("../../../assets/images/saludmanualmarca-2.png");
}
.cid-tiPQQJYyLW .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiPQQJYyLW .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiPQQJYyLW {
    align-items: center;
  }
  .cid-tiPQQJYyLW .row {
    justify-content: flex-start;
  }
  .cid-tiPQQJYyLW .content-wrap {
    width: 40%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiPQQJYyLW .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiPQQJYyLW {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiPQQJYyLW .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiPQQJYyLW .content-wrap {
    width: 100%;
  }
}
.cid-tiPQQJYyLW .mbr-section-title {
  color: #ffffff;
}
.cid-tiPQQJYyLW .mbr-text,
.cid-tiPQQJYyLW .mbr-section-btn {
  color: #ffffff;
}
.cid-tiPQXH9BFo {
  display: flex;
  background-image: url("../../../assets/images/saludmanualmarca-24.png");
}
.cid-tiPQXH9BFo .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiPQXH9BFo .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiPQXH9BFo {
    align-items: flex-end;
  }
  .cid-tiPQXH9BFo .row {
    justify-content: flex-start;
  }
  .cid-tiPQXH9BFo .content-wrap {
    width: 38%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiPQXH9BFo .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiPQXH9BFo {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiPQXH9BFo .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiPQXH9BFo .content-wrap {
    width: 100%;
  }
}
.cid-tiPRjtKNQE {
  display: flex;
  background-image: url("../../../assets/images/saludmanualmarca-25.png");
}
.cid-tiPRjtKNQE .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiPRjtKNQE .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiPRjtKNQE {
    align-items: flex-end;
  }
  .cid-tiPRjtKNQE .row {
    justify-content: flex-start;
  }
  .cid-tiPRjtKNQE .content-wrap {
    width: 38%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiPRjtKNQE .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiPRjtKNQE {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiPRjtKNQE .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiPRjtKNQE .content-wrap {
    width: 100%;
  }
}
.cid-tiPRjtKNQE .mbr-section-title {
  color: #232323;
}
.cid-tiPRjtKNQE .mbr-text,
.cid-tiPRjtKNQE .mbr-section-btn {
  color: #232323;
}
.cid-tiPRTUIxF0 {
  display: flex;
  background-image: url("../../../assets/images/saludmanualmarca-26.png");
}
.cid-tiPRTUIxF0 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiPRTUIxF0 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiPRTUIxF0 {
    align-items: flex-end;
  }
  .cid-tiPRTUIxF0 .row {
    justify-content: flex-start;
  }
  .cid-tiPRTUIxF0 .content-wrap {
    width: 32%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiPRTUIxF0 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiPRTUIxF0 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiPRTUIxF0 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiPRTUIxF0 .content-wrap {
    width: 100%;
  }
}
.cid-tiPSd1RKPy {
  display: flex;
  background-image: url("../../../assets/images/83.png");
}
.cid-tiPSd1RKPy .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiPSd1RKPy .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiPSd1RKPy {
    align-items: flex-end;
  }
  .cid-tiPSd1RKPy .row {
    justify-content: flex-start;
  }
  .cid-tiPSd1RKPy .content-wrap {
    width: 38%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiPSd1RKPy .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiPSd1RKPy {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiPSd1RKPy .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiPSd1RKPy .content-wrap {
    width: 100%;
  }
}
.cid-tiPSd1RKPy .mbr-section-title {
  color: #232323;
}
.cid-tiPSd1RKPy .mbr-text,
.cid-tiPSd1RKPy .mbr-section-btn {
  color: #232323;
}
.cid-tiPSxu1E9w {
  display: flex;
  background-image: url("../../../assets/images/saludmanualmarca-28.png");
}
.cid-tiPSxu1E9w .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tiPSxu1E9w .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tiPSxu1E9w {
    align-items: flex-end;
  }
  .cid-tiPSxu1E9w .row {
    justify-content: flex-start;
  }
  .cid-tiPSxu1E9w .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tiPSxu1E9w .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tiPSxu1E9w {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tiPSxu1E9w .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tiPSxu1E9w .content-wrap {
    width: 100%;
  }
}
.cid-tiPSPKnjB6 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tiPSPKnjB6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiPSPKnjB6 .row {
  flex-direction: row-reverse;
}
.cid-tiPSPKnjB6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tiPSPKnjB6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tECsfCFkLZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tECsfCFkLZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECsfCFkLZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECsfCFkLZ .mbr-text {
  color: #c1c1c1;
}
.cid-tECsfCFkLZ .mbr-text,
.cid-tECsfCFkLZ .mbr-section-btn {
  text-align: justify;
  color: #f5f5f7;
}
.cid-trdUhfdhW4 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #3b4449;
}
@media (max-width: 991px) {
  .cid-trdUhfdhW4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-trdUhfdhW4 .row {
  flex-direction: row-reverse;
}
.cid-trdUhfdhW4 img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-trdUhfdhW4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-trdUhfdhW4 .mbr-text {
  color: #ffffff;
}
.cid-tj7kFvY3eh {
  z-index: 1000;
  width: 100%;
}
.cid-tj7kFvY3eh nav.navbar {
  position: fixed;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tj7kFvY3eh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tj7kFvY3eh .dropdown-item:hover,
.cid-tj7kFvY3eh .dropdown-item:focus {
  background: #36bbed !important;
  color: white !important;
}
.cid-tj7kFvY3eh .dropdown-item:hover span {
  color: white;
}
.cid-tj7kFvY3eh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tj7kFvY3eh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tj7kFvY3eh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tj7kFvY3eh .nav-link {
  position: relative;
}
.cid-tj7kFvY3eh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tj7kFvY3eh .container {
    flex-wrap: nowrap;
  }
}
.cid-tj7kFvY3eh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown-menu,
.cid-tj7kFvY3eh .navbar.opened {
  background: #181818 !important;
}
.cid-tj7kFvY3eh .nav-item:focus,
.cid-tj7kFvY3eh .nav-link:focus {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tj7kFvY3eh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tj7kFvY3eh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(24, 24, 24, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cid-tj7kFvY3eh .navbar.opened {
  transition: all 0.3s;
}
.cid-tj7kFvY3eh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tj7kFvY3eh .navbar .navbar-logo img {
  width: auto;
}
.cid-tj7kFvY3eh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar.collapsed {
  justify-content: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tj7kFvY3eh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tj7kFvY3eh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tj7kFvY3eh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tj7kFvY3eh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tj7kFvY3eh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tj7kFvY3eh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tj7kFvY3eh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tj7kFvY3eh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tj7kFvY3eh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tj7kFvY3eh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tj7kFvY3eh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-info {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-success {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown-item.active,
.cid-tj7kFvY3eh .dropdown-item:active {
  background-color: transparent;
}
.cid-tj7kFvY3eh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181818;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tj7kFvY3eh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tj7kFvY3eh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tj7kFvY3eh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tj7kFvY3eh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2fb0df;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tj7kFvY3eh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .navbar {
    height: 70px;
  }
  .cid-tj7kFvY3eh .navbar.opened {
    height: auto;
  }
  .cid-tj7kFvY3eh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #36bbed;
  }
}
.cid-trdTSvFDtp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-trdTSvFDtp .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tiPWI4b6yi {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f6f7f8;
}
.cid-tiPWI4b6yi .mbr-section-subtitle {
  text-align: center;
}
.cid-tiPWI4b6yi .mbr-text {
  text-align: center;
}
.cid-tiPVH4bzLT {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #f6f7f8;
}
@media (max-width: 991px) {
  .cid-tiPVH4bzLT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tiPVH4bzLT .row {
  flex-direction: row-reverse;
}
.cid-tiPVH4bzLT img {
  width: 100%;
}
.cid-tECvJgemBN {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tECvJgemBN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECvJgemBN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECvJgemBN .mbr-text {
  color: #c1c1c1;
}
.cid-tECvJgemBN .mbr-text,
.cid-tECvJgemBN .mbr-section-btn {
  text-align: justify;
  color: #f5f5f7;
}
.cid-trdUAuWFh6 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #3b4449;
}
@media (max-width: 991px) {
  .cid-trdUAuWFh6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-trdUAuWFh6 .row {
  flex-direction: row-reverse;
}
.cid-trdUAuWFh6 img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-trdUAuWFh6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-trdUAuWFh6 .mbr-text {
  color: #ffffff;
}
.cid-tj7kFvY3eh {
  z-index: 1000;
  width: 100%;
}
.cid-tj7kFvY3eh nav.navbar {
  position: fixed;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tj7kFvY3eh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tj7kFvY3eh .dropdown-item:hover,
.cid-tj7kFvY3eh .dropdown-item:focus {
  background: #36bbed !important;
  color: white !important;
}
.cid-tj7kFvY3eh .dropdown-item:hover span {
  color: white;
}
.cid-tj7kFvY3eh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tj7kFvY3eh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tj7kFvY3eh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tj7kFvY3eh .nav-link {
  position: relative;
}
.cid-tj7kFvY3eh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tj7kFvY3eh .container {
    flex-wrap: nowrap;
  }
}
.cid-tj7kFvY3eh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown-menu,
.cid-tj7kFvY3eh .navbar.opened {
  background: #181818 !important;
}
.cid-tj7kFvY3eh .nav-item:focus,
.cid-tj7kFvY3eh .nav-link:focus {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tj7kFvY3eh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tj7kFvY3eh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(24, 24, 24, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cid-tj7kFvY3eh .navbar.opened {
  transition: all 0.3s;
}
.cid-tj7kFvY3eh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tj7kFvY3eh .navbar .navbar-logo img {
  width: auto;
}
.cid-tj7kFvY3eh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar.collapsed {
  justify-content: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tj7kFvY3eh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tj7kFvY3eh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tj7kFvY3eh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tj7kFvY3eh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tj7kFvY3eh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tj7kFvY3eh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tj7kFvY3eh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tj7kFvY3eh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tj7kFvY3eh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tj7kFvY3eh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tj7kFvY3eh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-info {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-success {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown-item.active,
.cid-tj7kFvY3eh .dropdown-item:active {
  background-color: transparent;
}
.cid-tj7kFvY3eh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181818;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tj7kFvY3eh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tj7kFvY3eh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tj7kFvY3eh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tj7kFvY3eh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2fb0df;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tj7kFvY3eh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .navbar {
    height: 70px;
  }
  .cid-tj7kFvY3eh .navbar.opened {
    height: auto;
  }
  .cid-tj7kFvY3eh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #36bbed;
  }
}
.cid-trdTSvFDtp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-trdTSvFDtp .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tiPX8GKszG {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #2fb0df;
}
.cid-tiPX8GKszG .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tiPXitPM7v {
  padding-top: 15px;
  padding-bottom: 135px;
  background-color: #2fb0df;
}
.cid-trdUF3CSov {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #3b4449;
}
@media (max-width: 991px) {
  .cid-trdUF3CSov .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-trdUF3CSov .row {
  flex-direction: row-reverse;
}
.cid-trdUF3CSov img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-trdUF3CSov .text-wrapper {
    padding: 2rem;
  }
}
.cid-trdUF3CSov .mbr-text {
  color: #ffffff;
}
.cid-tj7kFvY3eh {
  z-index: 1000;
  width: 100%;
}
.cid-tj7kFvY3eh nav.navbar {
  position: fixed;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tj7kFvY3eh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tj7kFvY3eh .dropdown-item:hover,
.cid-tj7kFvY3eh .dropdown-item:focus {
  background: #36bbed !important;
  color: white !important;
}
.cid-tj7kFvY3eh .dropdown-item:hover span {
  color: white;
}
.cid-tj7kFvY3eh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tj7kFvY3eh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tj7kFvY3eh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tj7kFvY3eh .nav-link {
  position: relative;
}
.cid-tj7kFvY3eh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tj7kFvY3eh .container {
    flex-wrap: nowrap;
  }
}
.cid-tj7kFvY3eh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown-menu,
.cid-tj7kFvY3eh .navbar.opened {
  background: #181818 !important;
}
.cid-tj7kFvY3eh .nav-item:focus,
.cid-tj7kFvY3eh .nav-link:focus {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tj7kFvY3eh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tj7kFvY3eh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(24, 24, 24, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cid-tj7kFvY3eh .navbar.opened {
  transition: all 0.3s;
}
.cid-tj7kFvY3eh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tj7kFvY3eh .navbar .navbar-logo img {
  width: auto;
}
.cid-tj7kFvY3eh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar.collapsed {
  justify-content: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tj7kFvY3eh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tj7kFvY3eh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tj7kFvY3eh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tj7kFvY3eh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tj7kFvY3eh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tj7kFvY3eh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tj7kFvY3eh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tj7kFvY3eh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tj7kFvY3eh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tj7kFvY3eh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tj7kFvY3eh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-info {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-success {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown-item.active,
.cid-tj7kFvY3eh .dropdown-item:active {
  background-color: transparent;
}
.cid-tj7kFvY3eh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181818;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tj7kFvY3eh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tj7kFvY3eh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tj7kFvY3eh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tj7kFvY3eh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2fb0df;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tj7kFvY3eh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .navbar {
    height: 70px;
  }
  .cid-tj7kFvY3eh .navbar.opened {
    height: auto;
  }
  .cid-tj7kFvY3eh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #36bbed;
  }
}
.cid-trdTSvFDtp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-trdTSvFDtp .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tiPZSPnvC5 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #2fb0df;
}
.cid-tiPZSPnvC5 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tiPZSPJ0yz {
  padding-top: 15px;
  padding-bottom: 135px;
  background-color: #2fb0df;
}
.cid-tiPZSPJ0yz .iframeContentCenter {
  width: 414px;
  margin: auto;
  border-style: none;
  height: 100%;
  display: block;
}
.cid-trdUKvvx5c {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #3b4449;
}
@media (max-width: 991px) {
  .cid-trdUKvvx5c .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-trdUKvvx5c .row {
  flex-direction: row-reverse;
}
.cid-trdUKvvx5c img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-trdUKvvx5c .text-wrapper {
    padding: 2rem;
  }
}
.cid-trdUKvvx5c .mbr-text {
  color: #ffffff;
}
.cid-tj7kFvY3eh {
  z-index: 1000;
  width: 100%;
}
.cid-tj7kFvY3eh nav.navbar {
  position: fixed;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tj7kFvY3eh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tj7kFvY3eh .dropdown-item:hover,
.cid-tj7kFvY3eh .dropdown-item:focus {
  background: #36bbed !important;
  color: white !important;
}
.cid-tj7kFvY3eh .dropdown-item:hover span {
  color: white;
}
.cid-tj7kFvY3eh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tj7kFvY3eh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tj7kFvY3eh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tj7kFvY3eh .nav-link {
  position: relative;
}
.cid-tj7kFvY3eh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tj7kFvY3eh .container {
    flex-wrap: nowrap;
  }
}
.cid-tj7kFvY3eh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown-menu,
.cid-tj7kFvY3eh .navbar.opened {
  background: #181818 !important;
}
.cid-tj7kFvY3eh .nav-item:focus,
.cid-tj7kFvY3eh .nav-link:focus {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tj7kFvY3eh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tj7kFvY3eh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(24, 24, 24, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cid-tj7kFvY3eh .navbar.opened {
  transition: all 0.3s;
}
.cid-tj7kFvY3eh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tj7kFvY3eh .navbar .navbar-logo img {
  width: auto;
}
.cid-tj7kFvY3eh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar.collapsed {
  justify-content: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tj7kFvY3eh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tj7kFvY3eh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tj7kFvY3eh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tj7kFvY3eh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tj7kFvY3eh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tj7kFvY3eh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tj7kFvY3eh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tj7kFvY3eh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tj7kFvY3eh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tj7kFvY3eh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tj7kFvY3eh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-info {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-success {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown-item.active,
.cid-tj7kFvY3eh .dropdown-item:active {
  background-color: transparent;
}
.cid-tj7kFvY3eh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181818;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tj7kFvY3eh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tj7kFvY3eh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tj7kFvY3eh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tj7kFvY3eh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2fb0df;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tj7kFvY3eh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .navbar {
    height: 70px;
  }
  .cid-tj7kFvY3eh .navbar.opened {
    height: auto;
  }
  .cid-tj7kFvY3eh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #36bbed;
  }
}
.cid-trdTSvFDtp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-trdTSvFDtp .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tr3cHp625u {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #2d3133;
}
.cid-tr3cHp625u .mbr-text {
  color: #ffffff;
}
.cid-tr3cHp625u .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tj3wPj7VvQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #2d3133;
}
@media (min-width: 992px) {
  .cid-tj3wPj7VvQ .carousel {
    min-height: 1000px;
  }
  .cid-tj3wPj7VvQ .carousel img {
    max-height: 1000px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tj3wPj7VvQ .carousel {
    min-height: 650px;
  }
  .cid-tj3wPj7VvQ .carousel img {
    max-height: 650px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tj3wPj7VvQ .carousel {
    min-height: 550px;
  }
  .cid-tj3wPj7VvQ .carousel img {
    max-height: 550px;
    object-fit: contain;
  }
  .cid-tj3wPj7VvQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tj3wPj7VvQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tj3wPj7VvQ .carousel,
.cid-tj3wPj7VvQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tj3wPj7VvQ .item-wrapper {
  width: 100%;
}
.cid-tj3wPj7VvQ .carousel-caption {
  bottom: 40px;
}
.cid-tj3wPj7VvQ .carousel-control:hover {
  color: #fff;
}
.cid-tj3wPj7VvQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tj3wPj7VvQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tj3wPj7VvQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tj3wPj7VvQ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tj3wPj7VvQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tj3wPj7VvQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tj3wPj7VvQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tj3wPj7VvQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tj3wPj7VvQ .carousel-indicators li {
  max-width: 1px;
  height: 1px;
  width: 1px;
  max-height: 1px;
  margin: 1px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tj3wPj7VvQ .carousel-indicators li.active,
.cid-tj3wPj7VvQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tj3wPj7VvQ .carousel-indicators li::after,
.cid-tj3wPj7VvQ .carousel-indicators li::before {
  content: none;
}
.cid-tj3wPj7VvQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tj3wPj7VvQ .carousel-indicators {
    display: none !important;
  }
}
.cid-tj7kFvY3eh {
  z-index: 1000;
  width: 100%;
}
.cid-tj7kFvY3eh nav.navbar {
  position: fixed;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tj7kFvY3eh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tj7kFvY3eh .dropdown-item:hover,
.cid-tj7kFvY3eh .dropdown-item:focus {
  background: #36bbed !important;
  color: white !important;
}
.cid-tj7kFvY3eh .dropdown-item:hover span {
  color: white;
}
.cid-tj7kFvY3eh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tj7kFvY3eh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tj7kFvY3eh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tj7kFvY3eh .nav-link {
  position: relative;
}
.cid-tj7kFvY3eh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tj7kFvY3eh .container {
    flex-wrap: nowrap;
  }
}
.cid-tj7kFvY3eh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown-menu,
.cid-tj7kFvY3eh .navbar.opened {
  background: #181818 !important;
}
.cid-tj7kFvY3eh .nav-item:focus,
.cid-tj7kFvY3eh .nav-link:focus {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tj7kFvY3eh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tj7kFvY3eh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tj7kFvY3eh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tj7kFvY3eh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(24, 24, 24, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cid-tj7kFvY3eh .navbar.opened {
  transition: all 0.3s;
}
.cid-tj7kFvY3eh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tj7kFvY3eh .navbar .navbar-logo img {
  width: auto;
}
.cid-tj7kFvY3eh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar.collapsed {
  justify-content: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tj7kFvY3eh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tj7kFvY3eh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tj7kFvY3eh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tj7kFvY3eh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tj7kFvY3eh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tj7kFvY3eh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tj7kFvY3eh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tj7kFvY3eh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tj7kFvY3eh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tj7kFvY3eh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tj7kFvY3eh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tj7kFvY3eh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tj7kFvY3eh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tj7kFvY3eh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tj7kFvY3eh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-info {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .text-success {
  line-height: inherit !important;
}
.cid-tj7kFvY3eh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tj7kFvY3eh .dropdown-item.active,
.cid-tj7kFvY3eh .dropdown-item:active {
  background-color: transparent;
}
.cid-tj7kFvY3eh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tj7kFvY3eh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181818;
}
.cid-tj7kFvY3eh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tj7kFvY3eh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tj7kFvY3eh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tj7kFvY3eh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tj7kFvY3eh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2fb0df;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tj7kFvY3eh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tj7kFvY3eh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tj7kFvY3eh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tj7kFvY3eh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tj7kFvY3eh .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-tj7kFvY3eh .navbar {
    height: 70px;
  }
  .cid-tj7kFvY3eh .navbar.opened {
    height: auto;
  }
  .cid-tj7kFvY3eh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #36bbed;
  }
}
.cid-tECsktcP7a {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tECsktcP7a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECsktcP7a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECsktcP7a .mbr-text {
  color: #c1c1c1;
}
.cid-tECsktcP7a .mbr-text,
.cid-tECsktcP7a .mbr-section-btn {
  text-align: justify;
  color: #f5f5f7;
}
.cid-trdUkRT7in {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #2d3133;
}
@media (max-width: 991px) {
  .cid-trdUkRT7in .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-trdUkRT7in .row {
  flex-direction: row-reverse;
}
.cid-trdUkRT7in img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-trdUkRT7in .text-wrapper {
    padding: 2rem;
  }
}
.cid-trdUkRT7in .mbr-text {
  color: #ffffff;
}
.cid-trdTSvFDtp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-trdTSvFDtp .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tEE944eJSP {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tECxJ9o5jA {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tECxJ9o5jA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECxJ9o5jA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tECxJ9o5jA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tECxJ9o5jA .row {
  flex-direction: row-reverse;
}
.cid-tECxJ9o5jA img {
  width: 100%;
}
.cid-tECsw6toCy {
  z-index: 1000;
  width: 100%;
}
.cid-tECsw6toCy nav.navbar {
  position: fixed;
}
.cid-tECsw6toCy .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-tECsw6toCy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tECsw6toCy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tECsw6toCy .dropdown-item:hover,
.cid-tECsw6toCy .dropdown-item:focus {
  background: #36bbed !important;
  color: white !important;
}
.cid-tECsw6toCy .dropdown-item:hover span {
  color: white;
}
.cid-tECsw6toCy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tECsw6toCy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tECsw6toCy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tECsw6toCy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tECsw6toCy .nav-link {
  position: relative;
}
.cid-tECsw6toCy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tECsw6toCy .container {
    flex-wrap: nowrap;
  }
}
.cid-tECsw6toCy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tECsw6toCy .dropdown-menu,
.cid-tECsw6toCy .navbar.opened {
  background: #181818 !important;
}
.cid-tECsw6toCy .nav-item:focus,
.cid-tECsw6toCy .nav-link:focus {
  outline: none;
}
.cid-tECsw6toCy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tECsw6toCy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tECsw6toCy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tECsw6toCy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tECsw6toCy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tECsw6toCy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tECsw6toCy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(24, 24, 24, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cid-tECsw6toCy .navbar.opened {
  transition: all 0.3s;
}
.cid-tECsw6toCy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tECsw6toCy .navbar .navbar-logo img {
  width: auto;
}
.cid-tECsw6toCy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tECsw6toCy .navbar.collapsed {
  justify-content: center;
}
.cid-tECsw6toCy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tECsw6toCy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tECsw6toCy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tECsw6toCy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tECsw6toCy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tECsw6toCy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tECsw6toCy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tECsw6toCy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tECsw6toCy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tECsw6toCy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tECsw6toCy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tECsw6toCy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tECsw6toCy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tECsw6toCy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tECsw6toCy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tECsw6toCy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tECsw6toCy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tECsw6toCy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tECsw6toCy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tECsw6toCy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tECsw6toCy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tECsw6toCy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tECsw6toCy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tECsw6toCy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tECsw6toCy .navbar-brand .text-info {
  line-height: inherit !important;
}
.cid-tECsw6toCy .navbar-brand .text-success {
  line-height: inherit !important;
}
.cid-tECsw6toCy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tECsw6toCy .dropdown-item.active,
.cid-tECsw6toCy .dropdown-item:active {
  background-color: transparent;
}
.cid-tECsw6toCy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tECsw6toCy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tECsw6toCy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tECsw6toCy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181818;
}
.cid-tECsw6toCy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tECsw6toCy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tECsw6toCy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tECsw6toCy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tECsw6toCy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tECsw6toCy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2fb0df;
}
.cid-tECsw6toCy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tECsw6toCy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tECsw6toCy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tECsw6toCy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tECsw6toCy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tECsw6toCy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tECsw6toCy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tECsw6toCy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tECsw6toCy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tECsw6toCy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tECsw6toCy .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-tECsw6toCy .navbar {
    height: 70px;
  }
  .cid-tECsw6toCy .navbar.opened {
    height: auto;
  }
  .cid-tECsw6toCy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #36bbed;
  }
}
.cid-tECsw6TWFG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tECsw6TWFG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tECsw6TWFG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tECsw6TWFG .mbr-text {
  color: #c1c1c1;
}
.cid-tECsw6TWFG .mbr-text,
.cid-tECsw6TWFG .mbr-section-btn {
  text-align: justify;
  color: #f5f5f7;
}
.cid-tECsw77K4o {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #2d3133;
}
@media (max-width: 991px) {
  .cid-tECsw77K4o .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tECsw77K4o .row {
  flex-direction: row-reverse;
}
.cid-tECsw77K4o img {
  width: 60%;
  margin-left: 10%;
  margin-bottom: 10%;
}
@media (min-width: 992px) {
  .cid-tECsw77K4o .text-wrapper {
    padding: 2rem;
  }
}
.cid-tECsw77K4o .mbr-text {
  color: #ffffff;
}
.cid-tECsw7oq1F {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36bbed;
  overflow: hidden;
}
.cid-tECsw7oq1F .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
