.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #04836a !important;
}
.bg-success {
  background-color: #121d84 !important;
}
.bg-info {
  background-color: #10806a !important;
}
.bg-warning {
  background-color: #e6c63b !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #04836a !important;
  border-color: #04836a !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: #012f26 !important;
  border-color: #012f26 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #012f26 !important;
  border-color: #012f26 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #10806a !important;
  border-color: #10806a !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: #06332a !important;
  border-color: #06332a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #06332a !important;
  border-color: #06332a !important;
}
.btn-info,
.btn-info:active {
  background-color: #10806a !important;
  border-color: #10806a !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: #06332a !important;
  border-color: #06332a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #06332a !important;
  border-color: #06332a !important;
}
.btn-success,
.btn-success:active {
  background-color: #121d84 !important;
  border-color: #121d84 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #080c38 !important;
  border-color: #080c38 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #080c38 !important;
  border-color: #080c38 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #04836a;
  color: #04836a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #012f26 !important;
  background-color: transparent!important;
  border-color: #012f26 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #04836a !important;
  border-color: #04836a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #10806a;
  color: #10806a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #06332a !important;
  background-color: transparent!important;
  border-color: #06332a !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #10806a !important;
  border-color: #10806a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #10806a;
  color: #10806a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #06332a !important;
  background-color: transparent!important;
  border-color: #06332a !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #10806a !important;
  border-color: #10806a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #121d84;
  color: #121d84;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #080c38 !important;
  background-color: transparent!important;
  border-color: #080c38 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #121d84 !important;
  border-color: #121d84 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #e6c63b;
  color: #e6c63b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b39617 !important;
  background-color: transparent!important;
  border-color: #b39617 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #04836a !important;
}
.text-secondary {
  color: #10806a !important;
}
.text-success {
  color: #121d84 !important;
}
.text-info {
  color: #10806a !important;
}
.text-warning {
  color: #e6c63b !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #01201a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #05251f !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #06092a !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #05251f !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a68b15 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #04836a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #10806a;
}
.alert-warning {
  background-color: #e6c63b;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #04836a;
  border-color: #04836a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #04836a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0ff8ca;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #3243e3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #2be4c0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fdfbf0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #04836a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #04836a;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #04836a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #04836a;
}
.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: #04836a;
  border-bottom-color: #04836a;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #04836a !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: #10806a !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='%2304836a' %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-svdCtikNwc {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bureau.gif");
}
.cid-svdCtikNwc .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-svdCtikNwc .wrap {
  padding: 0 25px;
}
.cid-svdCtikNwc .wrap:before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #04836a;
  top: 0px;
  right: 0px;
}
.cid-svdCtikNwc .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-svdCtikNwc .mbr-text {
  margin-bottom: 20px;
}
.cid-svdCtikNwc .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-svdCtikNwc .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-svdCtikNwc .container,
  .cid-svdCtikNwc .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-svdCtikNwc .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-svdCtikNwc a.close {
    right: 50px;
    top: 25px;
  }
  .cid-svdCtikNwc .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-sveG8dHPQ5 {
  padding-top: 80px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-sveG8dHPQ5 .media-content .btn-bgr {
  z-index: 0;
}
.cid-sveG8dHPQ5 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sveG8dHPQ5 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sveG8dHPQ5 p {
  color: #464646;
}
.cid-sveG8dHPQ5 h2 {
  color: #000000;
}
.cid-sveG8dHPQ5 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-sveG8dHPQ5 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sveG8dHPQ5 .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-sveG8dHPQ5 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sveG8dHPQ5 .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sveG8dHPQ5 .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-sveG8dHPQ5 .mbr-text {
    text-align: center;
  }
}
.cid-sveI82dvMh {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-sveI82dvMh .media-content .btn-bgr {
  z-index: 0;
}
.cid-sveI82dvMh .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sveI82dvMh h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sveI82dvMh p {
  color: #464646;
}
.cid-sveI82dvMh h2 {
  color: #000000;
}
.cid-sveI82dvMh .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sveI82dvMh .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sveI82dvMh .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-sveI82dvMh .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sveI82dvMh .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sveI82dvMh .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sveI82dvMh .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-sveI82dvMh .mbr-text {
    text-align: center;
  }
}
.cid-svdZhdfYr4 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-svdZhdfYr4 .mbr-section-title {
  color: #04836a;
}
.cid-sveI8GLFxJ {
  padding-top: 100px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-sveI8GLFxJ .media-content .btn-bgr {
  z-index: 0;
}
.cid-sveI8GLFxJ .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sveI8GLFxJ h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sveI8GLFxJ p {
  color: #464646;
}
.cid-sveI8GLFxJ h2 {
  color: #000000;
}
.cid-sveI8GLFxJ .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-sveI8GLFxJ .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sveI8GLFxJ .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-sveI8GLFxJ .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sveI8GLFxJ .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sveI8GLFxJ .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-sveI8GLFxJ .mbr-text {
    text-align: center;
  }
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-stPsRmdEQO {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/desktop-table-office-2000x1381.jpg");
}
.cid-stPsRmdEQO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stPsRmdEQO .mbr-section-title {
  color: #ffffff;
}
.cid-stPsRmdEQO .mbr-text {
  color: #ffffff;
  font-weight: 500;
}
.cid-stPsRmdEQO .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-left: 0.6rem;
}
.cid-stPsRmdEQO .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #04836a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-stPsRmdEQO .mbr-section-btn {
  display: flex;
}
.cid-stPsRmdEQO .mbr-section-btn .btn {
  font-weight: 700 !important;
}
.cid-stPsRmdEQO .video-wrap {
  cursor: pointer;
  margin-left: 30px;
}
.cid-stPsRmdEQO .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-stPsRmdEQO .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
  color: #279e64;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-stPsRmdEQO .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-stPsRmdEQO .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-stPsRmdEQO .video-wrap .icon-wrap .line-video-1,
.cid-stPsRmdEQO .video-wrap .icon-wrap .line-video-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: squares 2.4s linear 0s infinite;
  -webkit-animation: squares 2.4s linear 0s infinite;
  -ms-animation: squares 2.4s linear 0s infinite;
  -o-animation: squares 2.4s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}
.cid-stPsRmdEQO .video-wrap .icon-wrap .line-video-2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.cid-stPsRmdEQO .video-wrap .mbr-text {
  color: #ffffff;
  font-weight: 700;
}
.cid-stPsRmdEQO .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-stPsRmdEQO .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-stPsRmdEQO .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-stPsRmdEQO a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #121d84;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-stPsRmdEQO a.close:hover {
  color: #121d84;
}
@media (max-width: 991px) {
  .cid-stPsRmdEQO .separator,
  .cid-stPsRmdEQO .sep-holder,
  .cid-stPsRmdEQO .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stPsRmdEQO .buttons-wrap {
    flex-direction: column;
  }
  .cid-stPsRmdEQO .buttons-wrap .mbr-section-btn {
    justify-content: center;
  }
  .cid-stPsRmdEQO .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 25px;
    justify-content: center;
  }
}
@-webkit-keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.cid-stPsRmdEQO .skew {
  background-image: url("../../../assets/images/bg-skew.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -140px;
  margin-bottom: 0;
  z-index: 8;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
}
.cid-stPsRmdEQO .skew .inner {
  min-height: 150px;
  align-items: center;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-svjyXBSMxr {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svjyXBSMxr .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-svjyXBSMxr .mbr-section-title {
  color: #10806a;
}
.cid-svju017KCS {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-svju017KCS .row {
  align-items: stretch;
  justify-content: center;
}
.cid-svju017KCS .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-svju017KCS .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-svjAutF1mA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-6.jpg");
}
.cid-svjAutF1mA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-svjAutF1mA .mbr-section-title {
  color: #ffffff;
}
.cid-svjk2ud3bj {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-svjk2ud3bj .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-svjk2ud3bj .mbr-section-title {
  margin: 0;
}
.cid-svjk2ud3bj .mbr-section-subtitle {
  color: #000000;
}
.cid-svjk2ud3bj .card-img {
  text-align: inherit;
}
.cid-svjk2ud3bj .card-img span {
  background: linear-gradient(90deg, #10806a, #10806a);
}
.cid-svjk2ud3bj .mbr-text {
  color: #8d97ad;
}
.cid-svjk2ud3bj .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-svjk2ud3bj .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-svjk2ud3bj .mbr-card-title {
  color: #10806a;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svjBph4PoP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-6.jpg");
}
.cid-svjBph4PoP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-svjBph4PoP .mbr-section-title {
  color: #ffffff;
}
.cid-svjppi37hd {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background4-1.jpg");
}
.cid-svjppi37hd .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-svjppi37hd .mbr-section-title {
  margin: 0;
}
.cid-svjppi37hd .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-svjppi37hd .card-img {
  text-align: inherit;
}
.cid-svjppi37hd .card-img span {
  background: linear-gradient(90deg, #10806a, #10806a);
}
.cid-svjppi37hd .mbr-text {
  color: #8d97ad;
}
.cid-svjppi37hd .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-svjppi37hd .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-svjppi37hd .mbr-card-title {
  color: #10806a;
  text-align: left;
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sunJXALc3O {
  background-image: url("../../../assets/images/banner-2021-alv-9.gif");
}
.cid-sunJXALc3O .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sunJXALc3O .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sunJXALc3O .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sunJXALc3O .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sunJXALc3O .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sunJXALc3O .mbr-section-title {
  color: #ffffff;
}
.cid-sunJXALc3O .mbr-text,
.cid-sunJXALc3O .mbr-section-btn {
  color: #ffffff;
}
.cid-sy9pC5hljM {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-sy9pC5hljM .row {
  background: #ffffff;
  padding: 0rem 0rem;
  margin: 0rem;
  margin-top: 1rem;
  border-radius: 10px;
}
.cid-sy9pC5hljM img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  transform: scale(1.2);
  transform-origin: bottom;
}
@media (max-width: 992px) {
  .cid-sy9pC5hljM img {
    width: 50%;
    transform: scaleY(1);
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sy9pC5hljM img {
    width: 90%;
    transform: scaleY(1);
    margin: auto;
  }
}
.cid-sy9pC5hljM .card {
  padding: 3rem 3rem;
}
@media (max-width: 992px) {
  .cid-sy9pC5hljM .card {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sy9pC5hljM .card {
    padding: 2rem 0rem;
  }
}
.cid-sy9pC5hljM .mbr-text,
.cid-sy9pC5hljM .mbr-section-btn {
  color: #777777;
}
.cid-sy9pC5hljM .mbr-section-subtitle {
  color: #14191e;
}
.cid-sy9pC5hljM .mbr-section-title {
  color: #777777;
}
.cid-ssMqv1SFNQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-ssMqv1SFNQ .mbr-section-title {
  color: #ffffff;
}
.cid-ssMqv1SFNQ .mbr-text,
.cid-ssMqv1SFNQ .mbr-section-btn {
  color: #ffffff;
}
.cid-sWzSj5Cl1j {
  background-image: url("../../../assets/images/whatsapp-image-2019-11-28-at-21.56.56-1280x755.jpg");
}
@media (max-width: 991px) {
  .cid-sWzSj5Cl1j .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sWzSj5Cl1j .row {
  flex-direction: row-reverse;
}
.cid-sWzSj5Cl1j img {
  width: 100%;
}
.cid-sWzSj5Cl1j .mbr-text {
  color: #fafafa;
}
.cid-sWzUA6Fmjt {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/whatsapp-image-2019-11-28-at-21.56.56-1280x755.jpg");
}
@media (max-width: 991px) {
  .cid-sWzUA6Fmjt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sWzUA6Fmjt .row {
  flex-direction: row-reverse;
}
.cid-sWzUA6Fmjt img {
  width: 100%;
}
.cid-sWzUA6Fmjt .mbr-text {
  color: #fafafa;
}
.cid-sWzUBougZp {
  background-image: url("../../../assets/images/whatsapp-image-2019-11-28-at-21.56.56-1280x755.jpg");
}
@media (max-width: 991px) {
  .cid-sWzUBougZp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sWzUBougZp .row {
  flex-direction: row-reverse;
}
.cid-sWzUBougZp img {
  width: 100%;
}
.cid-sWzUBougZp .mbr-text {
  color: #fafafa;
}
.cid-ssMrE9wCQR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ssMrE9wCQR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ssMrE9wCQR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ssMrE9wCQR .text-wrapper {
    padding: 2rem;
  }
}
.cid-ssMrE9wCQR .mbr-text {
  text-align: left;
}
.cid-ssMrE9wCQR .mbr-description {
  color: #ffffff;
}
.cid-ssMrE9wCQR .mbr-section-title {
  color: #10806a;
}
.cid-ssMrEzl3Fe {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/sur-le-banc.gif");
}
.cid-ssMrEzl3Fe .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-ssMrEzl3Fe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ssMrEzl3Fe .row {
  flex-direction: row-reverse;
}
.cid-ssMrEzl3Fe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ssMrEzl3Fe .text-wrapper {
    padding: 2rem;
  }
}
.cid-ssMrEzl3Fe .mbr-section-title {
  color: #ffffff;
}
.cid-ssMrEzl3Fe .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-stg888KXFA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-stg888KXFA .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-stg888KXFA .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-stg888KXFA .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-stg888KXFA .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stg888KXFA .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-stg888KXFA .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-stg888KXFA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-stg888KXFA .card-title {
  color: #10806a;
}
.cid-svdufHlMqa {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background1-3.jpg");
}
@media (min-width: 992px) {
  .cid-svdufHlMqa .text-wrapper {
    padding: 2rem;
  }
}
.cid-svdufHlMqa .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-svdufHlMqa .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svdufHlMqa .mbr-section-title {
  color: #ffffff;
}
.cid-svdufHlMqa .mbr-text {
  color: #ffffff;
}
.cid-sve0TzsE05 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sve0TzsE05 .mbr-section-title {
  color: #04836a;
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-stgg5TvgE4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-stgg5TvgE4 nav.navbar {
  position: fixed;
}
.cid-stgg5TvgE4 .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-stgg5TvgE4 .dropdown-menu {
  padding: 0;
}
.cid-stgg5TvgE4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stgg5TvgE4 .dropdown-item:hover,
.cid-stgg5TvgE4 .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-stgg5TvgE4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-stgg5TvgE4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-stgg5TvgE4 .nav-link {
  position: relative;
}
.cid-stgg5TvgE4 .container {
  display: flex;
  margin: auto;
}
.cid-stgg5TvgE4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stgg5TvgE4 .navbar-caption {
  padding-right: 4rem;
}
.cid-stgg5TvgE4 .dropdown-menu,
.cid-stgg5TvgE4 .navbar.opened {
  background: #ffffff !important;
}
.cid-stgg5TvgE4 .nav-item:focus,
.cid-stgg5TvgE4 .nav-link:focus {
  outline: none;
}
.cid-stgg5TvgE4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-stgg5TvgE4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stgg5TvgE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stgg5TvgE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stgg5TvgE4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stgg5TvgE4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stgg5TvgE4 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-stgg5TvgE4 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stgg5TvgE4 .navbar.opened {
  transition: all .3s;
}
.cid-stgg5TvgE4 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-stgg5TvgE4 .navbar .navbar-logo img {
  width: auto;
}
.cid-stgg5TvgE4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-stgg5TvgE4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stgg5TvgE4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stgg5TvgE4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-stgg5TvgE4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stgg5TvgE4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stgg5TvgE4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-stgg5TvgE4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stgg5TvgE4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-stgg5TvgE4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-stgg5TvgE4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stgg5TvgE4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stgg5TvgE4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stgg5TvgE4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stgg5TvgE4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-stgg5TvgE4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stgg5TvgE4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stgg5TvgE4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stgg5TvgE4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-stgg5TvgE4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-stgg5TvgE4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-stgg5TvgE4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-stgg5TvgE4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stgg5TvgE4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stgg5TvgE4 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stgg5TvgE4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stgg5TvgE4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stgg5TvgE4 .dropdown-item.active,
.cid-stgg5TvgE4 .dropdown-item:active {
  background-color: transparent;
}
.cid-stgg5TvgE4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stgg5TvgE4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stgg5TvgE4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stgg5TvgE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stgg5TvgE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stgg5TvgE4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stgg5TvgE4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stgg5TvgE4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-stgg5TvgE4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-stgg5TvgE4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-stgg5TvgE4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stgg5TvgE4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stgg5TvgE4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stgg5TvgE4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stgg5TvgE4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stgg5TvgE4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stgg5TvgE4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stgg5TvgE4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stgg5TvgE4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stgg5TvgE4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stgg5TvgE4 .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-stgg5TvgE4 .navbar {
    height: 77px;
  }
  .cid-stgg5TvgE4 .navbar.opened {
    height: auto;
  }
  .cid-stgg5TvgE4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sunVsyIJD6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/banner-2021-alv-2.gif");
}
@media (max-width: 991px) {
  .cid-sunVsyIJD6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sunVsyIJD6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sunVsyIJD6 .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-sunVsyIJD6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sunVsyIJD6 .mbr-section-title {
  color: #ffffff;
}
.cid-sunVsyIJD6 .mbr-text,
.cid-sunVsyIJD6 .mbr-section-btn {
  color: #ffffff;
}
.cid-stgiw8bTVG {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-stgiw8bTVG .text-wrapper {
    padding: 2rem;
  }
}
.cid-stgiw8bTVG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-stgiw8bTVG .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-stgiw8bTVG .mbr-section-title {
  color: #10806a;
}
.cid-sthvleijWi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sthvleijWi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sthvleijWi .row {
  flex-direction: row-reverse;
}
.cid-sthvleijWi img {
  width: 100%;
}
.cid-stgnp8IAq2 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-stgnp8IAq2 .mbr-overlay {
  background: #10806a;
  opacity: 0.8;
}
.cid-stgnp8IAq2 img,
.cid-stgnp8IAq2 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-stgnp8IAq2 .item:focus,
.cid-stgnp8IAq2 span:focus {
  outline: none;
}
.cid-stgnp8IAq2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-stgnp8IAq2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-stgnp8IAq2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-stgnp8IAq2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-stgnp8IAq2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-stgnp8IAq2 .mbr-section-title {
  color: #ffffff;
}
.cid-stgnp8IAq2 .mbr-text,
.cid-stgnp8IAq2 .mbr-section-btn {
  text-align: center;
}
.cid-stgnp8IAq2 .item-title {
  text-align: center;
}
.cid-stgnp8IAq2 .item-subtitle {
  text-align: left;
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-sthweDNP9f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sthweDNP9f nav.navbar {
  position: fixed;
}
.cid-sthweDNP9f .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-sthweDNP9f .dropdown-menu {
  padding: 0;
}
.cid-sthweDNP9f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sthweDNP9f .dropdown-item:hover,
.cid-sthweDNP9f .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-sthweDNP9f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sthweDNP9f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sthweDNP9f .nav-link {
  position: relative;
}
.cid-sthweDNP9f .container {
  display: flex;
  margin: auto;
}
.cid-sthweDNP9f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sthweDNP9f .navbar-caption {
  padding-right: 4rem;
}
.cid-sthweDNP9f .dropdown-menu,
.cid-sthweDNP9f .navbar.opened {
  background: #ffffff !important;
}
.cid-sthweDNP9f .nav-item:focus,
.cid-sthweDNP9f .nav-link:focus {
  outline: none;
}
.cid-sthweDNP9f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sthweDNP9f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sthweDNP9f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sthweDNP9f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sthweDNP9f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sthweDNP9f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sthweDNP9f .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sthweDNP9f .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sthweDNP9f .navbar.opened {
  transition: all .3s;
}
.cid-sthweDNP9f .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sthweDNP9f .navbar .navbar-logo img {
  width: auto;
}
.cid-sthweDNP9f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sthweDNP9f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sthweDNP9f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sthweDNP9f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sthweDNP9f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sthweDNP9f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sthweDNP9f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sthweDNP9f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sthweDNP9f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sthweDNP9f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sthweDNP9f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sthweDNP9f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sthweDNP9f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sthweDNP9f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sthweDNP9f .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sthweDNP9f .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sthweDNP9f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sthweDNP9f .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sthweDNP9f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sthweDNP9f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sthweDNP9f .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sthweDNP9f .navbar.navbar-short {
  min-height: 60px;
}
.cid-sthweDNP9f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sthweDNP9f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sthweDNP9f .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sthweDNP9f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sthweDNP9f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sthweDNP9f .dropdown-item.active,
.cid-sthweDNP9f .dropdown-item:active {
  background-color: transparent;
}
.cid-sthweDNP9f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sthweDNP9f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sthweDNP9f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sthweDNP9f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sthweDNP9f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sthweDNP9f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sthweDNP9f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sthweDNP9f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sthweDNP9f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sthweDNP9f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sthweDNP9f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sthweDNP9f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sthweDNP9f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sthweDNP9f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sthweDNP9f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sthweDNP9f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sthweDNP9f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sthweDNP9f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sthweDNP9f .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sthweDNP9f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sthweDNP9f .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-sthweDNP9f .navbar {
    height: 77px;
  }
  .cid-sthweDNP9f .navbar.opened {
    height: auto;
  }
  .cid-sthweDNP9f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sutYq0XDDk {
  background-image: url("../../../assets/images/banner-2021-alv.gif");
}
.cid-sutYq0XDDk .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sutYq0XDDk .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sutYq0XDDk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sutYq0XDDk .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-sutYq0XDDk .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sutYq0XDDk .mbr-section-title {
  color: #ffffff;
}
.cid-sutYq0XDDk .mbr-text,
.cid-sutYq0XDDk .mbr-section-btn {
  color: #ffffff;
}
.cid-sthzfxKjNz {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sthweEQSTo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sthweEQSTo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sthweEQSTo .row {
  flex-direction: row-reverse;
}
.cid-sthweEQSTo img {
  width: 100%;
}
.cid-sthyNCUOSD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sthyNCUOSD img,
.cid-sthyNCUOSD .item-img {
  width: 100%;
}
.cid-sthyNCUOSD .item:focus,
.cid-sthyNCUOSD span:focus {
  outline: none;
}
.cid-sthyNCUOSD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sthyNCUOSD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #9cdfd2;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sthyNCUOSD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sthyNCUOSD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sthyNCUOSD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sthyNCUOSD .mbr-section-title {
  color: #232323;
}
.cid-sthyNCUOSD .mbr-text,
.cid-sthyNCUOSD .mbr-section-btn {
  text-align: left;
}
.cid-sthyNCUOSD .item-title {
  text-align: left;
}
.cid-sthyNCUOSD .item-subtitle {
  text-align: left;
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-sttcSCoQUy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sttcSCoQUy nav.navbar {
  position: fixed;
}
.cid-sttcSCoQUy .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-sttcSCoQUy .dropdown-menu {
  padding: 0;
}
.cid-sttcSCoQUy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sttcSCoQUy .dropdown-item:hover,
.cid-sttcSCoQUy .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-sttcSCoQUy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sttcSCoQUy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sttcSCoQUy .nav-link {
  position: relative;
}
.cid-sttcSCoQUy .container {
  display: flex;
  margin: auto;
}
.cid-sttcSCoQUy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sttcSCoQUy .navbar-caption {
  padding-right: 4rem;
}
.cid-sttcSCoQUy .dropdown-menu,
.cid-sttcSCoQUy .navbar.opened {
  background: #ffffff !important;
}
.cid-sttcSCoQUy .nav-item:focus,
.cid-sttcSCoQUy .nav-link:focus {
  outline: none;
}
.cid-sttcSCoQUy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sttcSCoQUy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sttcSCoQUy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sttcSCoQUy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sttcSCoQUy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sttcSCoQUy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sttcSCoQUy .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sttcSCoQUy .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sttcSCoQUy .navbar.opened {
  transition: all .3s;
}
.cid-sttcSCoQUy .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sttcSCoQUy .navbar .navbar-logo img {
  width: auto;
}
.cid-sttcSCoQUy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sttcSCoQUy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sttcSCoQUy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sttcSCoQUy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sttcSCoQUy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sttcSCoQUy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sttcSCoQUy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sttcSCoQUy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sttcSCoQUy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sttcSCoQUy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sttcSCoQUy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sttcSCoQUy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sttcSCoQUy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sttcSCoQUy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sttcSCoQUy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sttcSCoQUy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sttcSCoQUy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sttcSCoQUy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sttcSCoQUy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sttcSCoQUy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sttcSCoQUy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sttcSCoQUy .navbar.navbar-short {
  min-height: 60px;
}
.cid-sttcSCoQUy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sttcSCoQUy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sttcSCoQUy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sttcSCoQUy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sttcSCoQUy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sttcSCoQUy .dropdown-item.active,
.cid-sttcSCoQUy .dropdown-item:active {
  background-color: transparent;
}
.cid-sttcSCoQUy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sttcSCoQUy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sttcSCoQUy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sttcSCoQUy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sttcSCoQUy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sttcSCoQUy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sttcSCoQUy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sttcSCoQUy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sttcSCoQUy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sttcSCoQUy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sttcSCoQUy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sttcSCoQUy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sttcSCoQUy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sttcSCoQUy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sttcSCoQUy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sttcSCoQUy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sttcSCoQUy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sttcSCoQUy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sttcSCoQUy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sttcSCoQUy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sttcSCoQUy .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-sttcSCoQUy .navbar {
    height: 77px;
  }
  .cid-sttcSCoQUy .navbar.opened {
    height: auto;
  }
  .cid-sttcSCoQUy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sunXdpv2yx {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-2021-alv-11.gif");
}
.cid-sunXdpv2yx .container-fluid {
  padding: 0;
}
.cid-sunXdpv2yx .text-wrapper {
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .cid-sunXdpv2yx .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sunXdpv2yx .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sunXdpv2yx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sunXdpv2yx .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-sunXdpv2yx .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sunXdpv2yx .mbr-section-title {
  color: #ffffff;
}
.cid-sunXdpv2yx .mbr-text,
.cid-sunXdpv2yx .mbr-section-btn {
  color: #ffffff;
}
.cid-stIpKr8Kbc {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-stIpKr8Kbc .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-stIpKr8Kbc .title {
  max-width: 800px;
  margin: auto;
}
.cid-stIpKr8Kbc .mbr-testimonial {
  padding: 0;
}
.cid-stIpKr8Kbc .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-stIpKr8Kbc .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  margin-bottom: 1.6rem;
  overflow: hidden;
}
.cid-stIpKr8Kbc .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  height: 380px;
  object-fit: cover;
  min-height: 100%;
}
.cid-stIpKr8Kbc .mbr-testimonial p {
  padding: 0 1rem;
}
.cid-stIpKr8Kbc .mbr-testimonial .card-footer {
  margin-bottom: 2.2rem;
  border-top: 0;
  padding: 1rem 1rem 3rem 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
  position: relative;
}
.cid-stIpKr8Kbc .mbr-testimonial .card-footer:before {
  content: '';
  position: absolute;
  background: #10806a;
  bottom: -1rem;
  left: 50%;
  width: 2px;
  height: 3rem;
}
@media (max-width: 300px) {
  .cid-stIpKr8Kbc .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-stIpKr8Kbc .mbr-author-desc {
  color: #b69b74;
}
.cid-stIpKr8Kbc H2 {
  color: #10806a;
}
@media (max-width: 992px) {
  .cid-stIpKr8Kbc .md-pb {
    padding-bottom: 2rem !important;
  }
}
.cid-stIpKr8Kbc .mbr-author-name {
  color: #10806a;
}
.cid-stItoPebJa {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-stItoPebJa .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-stItoPebJa .title {
  max-width: 800px;
  margin: auto;
}
.cid-stItoPebJa .mbr-testimonial {
  padding: 0;
}
.cid-stItoPebJa .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-stItoPebJa .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  margin-bottom: 1.6rem;
  overflow: hidden;
}
.cid-stItoPebJa .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  height: 380px;
  object-fit: cover;
  min-height: 100%;
}
.cid-stItoPebJa .mbr-testimonial p {
  padding: 0 1rem;
}
.cid-stItoPebJa .mbr-testimonial .card-footer {
  margin-bottom: 2.2rem;
  border-top: 0;
  padding: 1rem 1rem 3rem 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
  position: relative;
}
.cid-stItoPebJa .mbr-testimonial .card-footer:before {
  content: '';
  position: absolute;
  background: #10806a;
  bottom: -1rem;
  left: 50%;
  width: 2px;
  height: 3rem;
}
@media (max-width: 300px) {
  .cid-stItoPebJa .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-stItoPebJa .mbr-author-desc {
  color: #b69b74;
}
.cid-stItoPebJa H2 {
  color: #10806a;
}
@media (max-width: 992px) {
  .cid-stItoPebJa .md-pb {
    padding-bottom: 2rem !important;
  }
}
.cid-stItoPebJa .mbr-author-name {
  color: #10806a;
}
.cid-sVfIsdy6ew {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sVfIsdy6ew .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-sVfIsdy6ew .title {
  max-width: 800px;
  margin: auto;
}
.cid-sVfIsdy6ew .mbr-testimonial {
  padding: 0;
}
.cid-sVfIsdy6ew .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-sVfIsdy6ew .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  margin-bottom: 1.6rem;
  overflow: hidden;
}
.cid-sVfIsdy6ew .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  height: 380px;
  object-fit: cover;
  min-height: 100%;
}
.cid-sVfIsdy6ew .mbr-testimonial p {
  padding: 0 1rem;
}
.cid-sVfIsdy6ew .mbr-testimonial .card-footer {
  margin-bottom: 2.2rem;
  border-top: 0;
  padding: 1rem 1rem 3rem 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
  position: relative;
}
.cid-sVfIsdy6ew .mbr-testimonial .card-footer:before {
  content: '';
  position: absolute;
  background: #10806a;
  bottom: -1rem;
  left: 50%;
  width: 2px;
  height: 3rem;
}
@media (max-width: 300px) {
  .cid-sVfIsdy6ew .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-sVfIsdy6ew .mbr-author-desc {
  color: #b69b74;
}
.cid-sVfIsdy6ew H2 {
  color: #10806a;
}
@media (max-width: 992px) {
  .cid-sVfIsdy6ew .md-pb {
    padding-bottom: 2rem !important;
  }
}
.cid-sVfIsdy6ew .mbr-author-name {
  color: #10806a;
}
.cid-stIvjgusHS {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stIvjgusHS .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-stIvjgusHS .title {
  max-width: 800px;
  margin: auto;
}
.cid-stIvjgusHS .mbr-testimonial {
  padding: 0;
}
.cid-stIvjgusHS .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-stIvjgusHS .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  margin-bottom: 1.6rem;
  overflow: hidden;
}
.cid-stIvjgusHS .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  height: 380px;
  object-fit: cover;
  min-height: 100%;
}
.cid-stIvjgusHS .mbr-testimonial p {
  padding: 0 1rem;
}
.cid-stIvjgusHS .mbr-testimonial .card-footer {
  margin-bottom: 2.2rem;
  border-top: 0;
  padding: 1rem 1rem 3rem 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
  position: relative;
}
.cid-stIvjgusHS .mbr-testimonial .card-footer:before {
  content: '';
  position: absolute;
  background: #10806a;
  bottom: -1rem;
  left: 50%;
  width: 2px;
  height: 3rem;
}
@media (max-width: 300px) {
  .cid-stIvjgusHS .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-stIvjgusHS .mbr-author-desc {
  color: #b69b74;
}
.cid-stIvjgusHS H2 {
  color: #10806a;
}
@media (max-width: 992px) {
  .cid-stIvjgusHS .md-pb {
    padding-bottom: 2rem !important;
  }
}
.cid-stIvjgusHS .mbr-author-name {
  color: #10806a;
}
.cid-t4Y6tRihcq {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t4Y6tRihcq .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-t4Y6tRihcq .title {
  max-width: 800px;
  margin: auto;
}
.cid-t4Y6tRihcq .mbr-testimonial {
  padding: 0;
}
.cid-t4Y6tRihcq .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-t4Y6tRihcq .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  margin-bottom: 1.6rem;
  overflow: hidden;
}
.cid-t4Y6tRihcq .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  height: 380px;
  object-fit: cover;
  min-height: 100%;
}
.cid-t4Y6tRihcq .mbr-testimonial p {
  padding: 0 1rem;
}
.cid-t4Y6tRihcq .mbr-testimonial .card-footer {
  margin-bottom: 2.2rem;
  border-top: 0;
  padding: 1rem 1rem 3rem 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
  position: relative;
}
.cid-t4Y6tRihcq .mbr-testimonial .card-footer:before {
  content: '';
  position: absolute;
  background: #10806a;
  bottom: -1rem;
  left: 50%;
  width: 2px;
  height: 3rem;
}
@media (max-width: 300px) {
  .cid-t4Y6tRihcq .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-t4Y6tRihcq .mbr-author-desc {
  color: #b69b74;
}
.cid-t4Y6tRihcq H2 {
  color: #10806a;
}
@media (max-width: 992px) {
  .cid-t4Y6tRihcq .md-pb {
    padding-bottom: 2rem !important;
  }
}
.cid-t4Y6tRihcq .mbr-author-name {
  color: #10806a;
}
.cid-sVfO6FfJAQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sVfO6FfJAQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVfO6FfJAQ .row {
  flex-direction: row-reverse;
}
.cid-sVfO6FfJAQ img {
  width: 100%;
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-sttkPcS60H {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sttkPcS60H nav.navbar {
  position: fixed;
}
.cid-sttkPcS60H .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-sttkPcS60H .dropdown-menu {
  padding: 0;
}
.cid-sttkPcS60H .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sttkPcS60H .dropdown-item:hover,
.cid-sttkPcS60H .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-sttkPcS60H .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sttkPcS60H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sttkPcS60H .nav-link {
  position: relative;
}
.cid-sttkPcS60H .container {
  display: flex;
  margin: auto;
}
.cid-sttkPcS60H .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sttkPcS60H .navbar-caption {
  padding-right: 4rem;
}
.cid-sttkPcS60H .dropdown-menu,
.cid-sttkPcS60H .navbar.opened {
  background: #ffffff !important;
}
.cid-sttkPcS60H .nav-item:focus,
.cid-sttkPcS60H .nav-link:focus {
  outline: none;
}
.cid-sttkPcS60H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sttkPcS60H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sttkPcS60H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sttkPcS60H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sttkPcS60H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sttkPcS60H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sttkPcS60H .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sttkPcS60H .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sttkPcS60H .navbar.opened {
  transition: all .3s;
}
.cid-sttkPcS60H .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sttkPcS60H .navbar .navbar-logo img {
  width: auto;
}
.cid-sttkPcS60H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sttkPcS60H .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sttkPcS60H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sttkPcS60H .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sttkPcS60H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sttkPcS60H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sttkPcS60H .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sttkPcS60H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sttkPcS60H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sttkPcS60H .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sttkPcS60H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sttkPcS60H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sttkPcS60H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sttkPcS60H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sttkPcS60H .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sttkPcS60H .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sttkPcS60H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sttkPcS60H .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sttkPcS60H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sttkPcS60H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sttkPcS60H .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sttkPcS60H .navbar.navbar-short {
  min-height: 60px;
}
.cid-sttkPcS60H .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sttkPcS60H .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sttkPcS60H .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sttkPcS60H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sttkPcS60H .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sttkPcS60H .dropdown-item.active,
.cid-sttkPcS60H .dropdown-item:active {
  background-color: transparent;
}
.cid-sttkPcS60H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sttkPcS60H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sttkPcS60H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sttkPcS60H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sttkPcS60H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sttkPcS60H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sttkPcS60H ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sttkPcS60H .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sttkPcS60H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sttkPcS60H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sttkPcS60H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sttkPcS60H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sttkPcS60H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sttkPcS60H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sttkPcS60H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sttkPcS60H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sttkPcS60H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sttkPcS60H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sttkPcS60H .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sttkPcS60H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sttkPcS60H .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-sttkPcS60H .navbar {
    height: 77px;
  }
  .cid-sttkPcS60H .navbar.opened {
    height: auto;
  }
  .cid-sttkPcS60H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sunZ0bMPei {
  background-image: url("../../../assets/images/banner-2021-alv-4.gif");
}
.cid-sunZ0bMPei .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sunZ0bMPei .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sunZ0bMPei .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sunZ0bMPei .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sunZ0bMPei .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sunZ0bMPei .mbr-section-title {
  color: #ffffff;
}
.cid-sunZ0bMPei .mbr-text,
.cid-sunZ0bMPei .mbr-section-btn {
  color: #ffffff;
}
.cid-stCK5U7Hf6 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-stCEJPuycl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/campos.gif");
}
.cid-stCEJPuycl .item {
  padding-bottom: 2rem;
}
.cid-stCEJPuycl .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-stCEJPuycl .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-stCEJPuycl .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-stCEJPuycl .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-stCEJPuycl .carousel-control,
.cid-stCEJPuycl .close {
  background: #1b1b1b;
}
.cid-stCEJPuycl .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-stCEJPuycl .carousel-control-prev span {
  margin-right: 5px;
}
.cid-stCEJPuycl .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-stCEJPuycl .carousel-control-next span {
  margin-left: 5px;
}
.cid-stCEJPuycl .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-stCEJPuycl .close::before {
  content: '\e91a';
}
.cid-stCEJPuycl .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-stCEJPuycl .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;
}
.cid-stCEJPuycl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stCEJPuycl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-stCEJPuycl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-stCEJPuycl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-stCEJPuycl .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-stCEJPuycl .carousel-indicators li.active,
.cid-stCEJPuycl .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-stCEJPuycl .carousel-indicators li::after,
.cid-stCEJPuycl .carousel-indicators li::before {
  content: none;
}
.cid-stCEJPuycl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-stCEJPuycl .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-stCEJPuycl .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-stCEJPuycl .carousel-indicators {
    display: none;
  }
}
.cid-stCEJPuycl .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-stCEJPuycl .carousel-inner > .active {
  display: block;
}
.cid-stCEJPuycl .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stCEJPuycl .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stCEJPuycl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-stCEJPuycl .carousel-control,
  .cid-stCEJPuycl .carousel-indicators,
  .cid-stCEJPuycl .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-stCEJPuycl .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-stCEJPuycl .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stCEJPuycl .carousel-indicators .active,
.cid-stCEJPuycl .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-stCEJPuycl .carousel-indicators .active {
  background: #fff;
}
.cid-stCEJPuycl .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-stCEJPuycl .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-stCEJPuycl .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stCEJPuycl .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-stCEJPuycl .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-stCEJPuycl .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-stCEJPuycl .carousel {
  width: 100%;
}
.cid-stCEJPuycl .modal-backdrop.in {
  opacity: 0.8;
}
.cid-stCEJPuycl .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-stCEJPuycl .modal.fade .modal-dialog,
.cid-stCEJPuycl .modal.in .modal-dialog {
  transform: none;
}
.cid-stCEJPuycl .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-stCEJPuycl H6 {
  text-align: center;
}
.cid-sttkPgVV5W {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sttkPgVV5W .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sttkPgVV5W .row {
  flex-direction: row-reverse;
}
.cid-sttkPgVV5W img {
  width: 100%;
}
.cid-stCS5I0VNh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/campos.gif");
}
.cid-stCS5I0VNh .item {
  padding-bottom: 2rem;
}
.cid-stCS5I0VNh .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-stCS5I0VNh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-stCS5I0VNh .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-stCS5I0VNh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-stCS5I0VNh .carousel-control,
.cid-stCS5I0VNh .close {
  background: #1b1b1b;
}
.cid-stCS5I0VNh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-stCS5I0VNh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-stCS5I0VNh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-stCS5I0VNh .carousel-control-next span {
  margin-left: 5px;
}
.cid-stCS5I0VNh .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-stCS5I0VNh .close::before {
  content: '\e91a';
}
.cid-stCS5I0VNh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-stCS5I0VNh .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;
}
.cid-stCS5I0VNh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stCS5I0VNh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-stCS5I0VNh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-stCS5I0VNh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-stCS5I0VNh .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-stCS5I0VNh .carousel-indicators li.active,
.cid-stCS5I0VNh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-stCS5I0VNh .carousel-indicators li::after,
.cid-stCS5I0VNh .carousel-indicators li::before {
  content: none;
}
.cid-stCS5I0VNh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-stCS5I0VNh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-stCS5I0VNh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-stCS5I0VNh .carousel-indicators {
    display: none;
  }
}
.cid-stCS5I0VNh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-stCS5I0VNh .carousel-inner > .active {
  display: block;
}
.cid-stCS5I0VNh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stCS5I0VNh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stCS5I0VNh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-stCS5I0VNh .carousel-control,
  .cid-stCS5I0VNh .carousel-indicators,
  .cid-stCS5I0VNh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-stCS5I0VNh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-stCS5I0VNh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stCS5I0VNh .carousel-indicators .active,
.cid-stCS5I0VNh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-stCS5I0VNh .carousel-indicators .active {
  background: #fff;
}
.cid-stCS5I0VNh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-stCS5I0VNh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-stCS5I0VNh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stCS5I0VNh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-stCS5I0VNh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-stCS5I0VNh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-stCS5I0VNh .carousel {
  width: 100%;
}
.cid-stCS5I0VNh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-stCS5I0VNh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-stCS5I0VNh .modal.fade .modal-dialog,
.cid-stCS5I0VNh .modal.in .modal-dialog {
  transform: none;
}
.cid-stCS5I0VNh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-stCS5I0VNh H6 {
  text-align: center;
}
.cid-stDKbx1Mab {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-stDKbx1Mab .item {
  padding-bottom: 2rem;
}
.cid-stDKbx1Mab .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-stDKbx1Mab .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-stDKbx1Mab .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-stDKbx1Mab .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-stDKbx1Mab .carousel-control,
.cid-stDKbx1Mab .close {
  background: #1b1b1b;
}
.cid-stDKbx1Mab .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-stDKbx1Mab .carousel-control-prev span {
  margin-right: 5px;
}
.cid-stDKbx1Mab .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-stDKbx1Mab .carousel-control-next span {
  margin-left: 5px;
}
.cid-stDKbx1Mab .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-stDKbx1Mab .close::before {
  content: '\e91a';
}
.cid-stDKbx1Mab .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-stDKbx1Mab .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;
}
.cid-stDKbx1Mab .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stDKbx1Mab .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-stDKbx1Mab .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-stDKbx1Mab .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-stDKbx1Mab .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-stDKbx1Mab .carousel-indicators li.active,
.cid-stDKbx1Mab .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-stDKbx1Mab .carousel-indicators li::after,
.cid-stDKbx1Mab .carousel-indicators li::before {
  content: none;
}
.cid-stDKbx1Mab .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-stDKbx1Mab .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-stDKbx1Mab .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-stDKbx1Mab .carousel-indicators {
    display: none;
  }
}
.cid-stDKbx1Mab .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-stDKbx1Mab .carousel-inner > .active {
  display: block;
}
.cid-stDKbx1Mab .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stDKbx1Mab .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stDKbx1Mab .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-stDKbx1Mab .carousel-control,
  .cid-stDKbx1Mab .carousel-indicators,
  .cid-stDKbx1Mab .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-stDKbx1Mab .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-stDKbx1Mab .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stDKbx1Mab .carousel-indicators .active,
.cid-stDKbx1Mab .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-stDKbx1Mab .carousel-indicators .active {
  background: #fff;
}
.cid-stDKbx1Mab .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-stDKbx1Mab .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-stDKbx1Mab .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stDKbx1Mab .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-stDKbx1Mab .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-stDKbx1Mab .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-stDKbx1Mab .carousel {
  width: 100%;
}
.cid-stDKbx1Mab .modal-backdrop.in {
  opacity: 0.8;
}
.cid-stDKbx1Mab .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-stDKbx1Mab .modal.fade .modal-dialog,
.cid-stDKbx1Mab .modal.in .modal-dialog {
  transform: none;
}
.cid-stDKbx1Mab .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-stDKbx1Mab H6 {
  text-align: center;
}
.cid-stDIZr0WAw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/campos.gif");
}
.cid-stDIZr0WAw .item {
  padding-bottom: 2rem;
}
.cid-stDIZr0WAw .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-stDIZr0WAw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-stDIZr0WAw .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-stDIZr0WAw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-stDIZr0WAw .carousel-control,
.cid-stDIZr0WAw .close {
  background: #1b1b1b;
}
.cid-stDIZr0WAw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-stDIZr0WAw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-stDIZr0WAw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-stDIZr0WAw .carousel-control-next span {
  margin-left: 5px;
}
.cid-stDIZr0WAw .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-stDIZr0WAw .close::before {
  content: '\e91a';
}
.cid-stDIZr0WAw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-stDIZr0WAw .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;
}
.cid-stDIZr0WAw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stDIZr0WAw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-stDIZr0WAw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-stDIZr0WAw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-stDIZr0WAw .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-stDIZr0WAw .carousel-indicators li.active,
.cid-stDIZr0WAw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-stDIZr0WAw .carousel-indicators li::after,
.cid-stDIZr0WAw .carousel-indicators li::before {
  content: none;
}
.cid-stDIZr0WAw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-stDIZr0WAw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-stDIZr0WAw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-stDIZr0WAw .carousel-indicators {
    display: none;
  }
}
.cid-stDIZr0WAw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-stDIZr0WAw .carousel-inner > .active {
  display: block;
}
.cid-stDIZr0WAw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stDIZr0WAw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stDIZr0WAw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-stDIZr0WAw .carousel-control,
  .cid-stDIZr0WAw .carousel-indicators,
  .cid-stDIZr0WAw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-stDIZr0WAw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-stDIZr0WAw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stDIZr0WAw .carousel-indicators .active,
.cid-stDIZr0WAw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-stDIZr0WAw .carousel-indicators .active {
  background: #fff;
}
.cid-stDIZr0WAw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-stDIZr0WAw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-stDIZr0WAw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stDIZr0WAw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-stDIZr0WAw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-stDIZr0WAw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-stDIZr0WAw .carousel {
  width: 100%;
}
.cid-stDIZr0WAw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-stDIZr0WAw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-stDIZr0WAw .modal.fade .modal-dialog,
.cid-stDIZr0WAw .modal.in .modal-dialog {
  transform: none;
}
.cid-stDIZr0WAw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-stDIZr0WAw H6 {
  text-align: center;
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-stF0gNNv9A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-stF0gNNv9A nav.navbar {
  position: fixed;
}
.cid-stF0gNNv9A .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-stF0gNNv9A .dropdown-menu {
  padding: 0;
}
.cid-stF0gNNv9A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stF0gNNv9A .dropdown-item:hover,
.cid-stF0gNNv9A .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-stF0gNNv9A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-stF0gNNv9A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-stF0gNNv9A .nav-link {
  position: relative;
}
.cid-stF0gNNv9A .container {
  display: flex;
  margin: auto;
}
.cid-stF0gNNv9A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stF0gNNv9A .navbar-caption {
  padding-right: 4rem;
}
.cid-stF0gNNv9A .dropdown-menu,
.cid-stF0gNNv9A .navbar.opened {
  background: #ffffff !important;
}
.cid-stF0gNNv9A .nav-item:focus,
.cid-stF0gNNv9A .nav-link:focus {
  outline: none;
}
.cid-stF0gNNv9A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-stF0gNNv9A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stF0gNNv9A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stF0gNNv9A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stF0gNNv9A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stF0gNNv9A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stF0gNNv9A .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-stF0gNNv9A .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stF0gNNv9A .navbar.opened {
  transition: all .3s;
}
.cid-stF0gNNv9A .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-stF0gNNv9A .navbar .navbar-logo img {
  width: auto;
}
.cid-stF0gNNv9A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-stF0gNNv9A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stF0gNNv9A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stF0gNNv9A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-stF0gNNv9A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stF0gNNv9A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stF0gNNv9A .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-stF0gNNv9A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stF0gNNv9A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-stF0gNNv9A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-stF0gNNv9A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stF0gNNv9A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stF0gNNv9A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stF0gNNv9A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stF0gNNv9A .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-stF0gNNv9A .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stF0gNNv9A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stF0gNNv9A .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stF0gNNv9A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-stF0gNNv9A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-stF0gNNv9A .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-stF0gNNv9A .navbar.navbar-short {
  min-height: 60px;
}
.cid-stF0gNNv9A .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stF0gNNv9A .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stF0gNNv9A .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stF0gNNv9A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stF0gNNv9A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stF0gNNv9A .dropdown-item.active,
.cid-stF0gNNv9A .dropdown-item:active {
  background-color: transparent;
}
.cid-stF0gNNv9A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stF0gNNv9A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stF0gNNv9A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stF0gNNv9A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stF0gNNv9A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stF0gNNv9A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stF0gNNv9A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stF0gNNv9A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-stF0gNNv9A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-stF0gNNv9A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-stF0gNNv9A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stF0gNNv9A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stF0gNNv9A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stF0gNNv9A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stF0gNNv9A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stF0gNNv9A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stF0gNNv9A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stF0gNNv9A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stF0gNNv9A .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stF0gNNv9A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stF0gNNv9A .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-stF0gNNv9A .navbar {
    height: 77px;
  }
  .cid-stF0gNNv9A .navbar.opened {
    height: auto;
  }
  .cid-stF0gNNv9A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suo0yKrAq2 {
  background-image: url("../../../assets/images/banner-2021-alv-8.gif");
}
.cid-suo0yKrAq2 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-suo0yKrAq2 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-suo0yKrAq2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-suo0yKrAq2 .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-suo0yKrAq2 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-suo0yKrAq2 .mbr-section-title {
  color: #ffffff;
}
.cid-suo0yKrAq2 .mbr-text,
.cid-suo0yKrAq2 .mbr-section-btn {
  color: #ffffff;
}
.cid-stNKiV00TG {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-stNKiV00TG .mbr-section-title {
  margin-bottom: 25px;
}
.cid-stNKiV00TG .mbr-section-subtitle {
  margin-bottom: 88px;
  font-weight: 400;
}
.cid-stNKiV00TG .image {
  position: relative;
  z-index: 0;
  top: -50px;
}
.cid-stNKiV00TG .image img {
  z-index: -1;
  width: 100%;
  max-height: 410px;
  object-fit: cover;
}
.cid-stNKiV00TG .mbr-gallery-filter {
  text-align: left;
  padding: 0 20px;
  border-bottom: 1px solid #cce4f0;
}
.cid-stNKiV00TG .mbr-gallery-filter .btn {
  padding: 0 20px 40px;
  margin: 0;
  margin-right: 35px;
  color: #003d59 !important;
  font-weight: 700;
  text-align: left;
  background: transparent !important;
  position: relative;
  border: none;
  min-width: auto;
  width: auto;
}
.cid-stNKiV00TG .mbr-gallery-filter ul {
  display: block;
}
.cid-stNKiV00TG .mbr-gallery-filter ul li {
  position: relative;
  padding: 0;
}
.cid-stNKiV00TG .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-stNKiV00TG .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-stNKiV00TG .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  width: 100%;
  bottom: 0;
  height: 11px;
  background-color: #46877e;
  transition: all 0.3s ease;
}
.cid-stNKiV00TG .mbr-gallery-row {
  margin-top: 50px;
}
.cid-stNKiV00TG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-stNKiV00TG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  border-radius: 4px;
}
.cid-stNKiV00TG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  border-radius: 4px;
}
.cid-stNKiV00TG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-stNKiV00TG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #003d59;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
}
.cid-stNKiV00TG .mbr-gallery-item > div:hover::before {
  opacity: 0 !important;
}
.cid-stNKiV00TG .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  display: block;
  font-weight: 700;
  width: 100%;
  bottom: 30px;
  left: 0;
  text-align: center;
  padding: 0 1rem;
  color: #fff;
  background: transparent;
}
.cid-stNKiV00TG .icon-focus {
  transition: all .3s;
  top: 30%;
  width: 48px;
  height: 48px;
  transform: translateY(-30%);
}
.cid-stNKiV00TG .mbr-gallery-item > div img,
.cid-stNKiV00TG .mbr-gallery-item div:before {
  border-radius: 4px;
  height: 255px;
}
.cid-stNKiV00TG .mbr-gallery-item > div {
  transition: all .3s;
  border-radius: 4px;
}
.cid-stNKiV00TG .mbr-gallery-item:hover > div {
  transform: scale(0.95);
}
.cid-stNKiV00TG .carousel-control-prev .mbri-left:before {
  content: "\e90a";
}
.cid-stNKiV00TG .carousel-control-next .mbri-right:before {
  content: "\e909";
}
.cid-stNKiV00TG .modal-body a.close {
  border-radius: 0;
  font-size: 32px;
  top: 0;
  right: 0;
  height: 70px;
  width: 70px;
  line-height: 70px;
}
@media (max-width: 991px) {
  .cid-stNKiV00TG .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-stNKiV00TG .mbr-section-title {
    text-align: center;
  }
  .cid-stNKiV00TG .image {
    top: auto;
    height: 420px;
  }
  .cid-stNKiV00TG .mbr-gallery-filter .btn {
    padding: 0 0 22px;
  }
  .cid-stNKiV00TG .mbr-gallery-filter ul li {
    margin-bottom: 10px;
  }
  .cid-stNKiV00TG .mbr-gallery-item > div img,
  .cid-stNKiV00TG .mbr-gallery-item div:before {
    height: auto;
    border-radius: 3px;
  }
  .cid-stNKiV00TG .mbr-gallery-item > div {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-stNKiV00TG .image {
    height: 290px;
  }
}
.cid-stF0gPOaBO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-stF0gPOaBO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-stF0gPOaBO .row {
  flex-direction: row-reverse;
}
.cid-stF0gPOaBO img {
  width: 100%;
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-stOCD1IJ2S {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/banner-bc27db-2000x855.jpg");
}
.cid-stOCD1IJ2S .link-align {
  width: 100%;
}
.cid-stOCD1IJ2S .link-wrap {
  display: inline-block;
}
.cid-stOCD1IJ2S .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-stOCD1IJ2S .wrap {
  transform: matrix3d(0.99863, -0.052336, 0, 0, 0.052336, 0.99863, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
.cid-stOCD1IJ2S .wrap .mask {
  background: none;
  display: flex;
  z-index: 8;
  visibility: inherit;
  transition: none 0s ease 0s;
  text-align: inherit;
  line-height: 1.05;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 17px;
  white-space: nowrap;
  min-height: 88px;
  width: 100%;
  max-height: 100px;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, -0.275637, 0.961262, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
@media (max-width: 992px) {
  .cid-stOCD1IJ2S .wrap .mask {
    background: none;
    min-height: auto;
  }
}
.cid-stOCD1IJ2S .wrap .mbr-section-subtitle {
  line-height: 1;
}
.cid-stOCD1IJ2S .wrap .price {
  color: #121d84;
}
@media (min-width: 992px) {
  .cid-stOCD1IJ2S .wrap .mbr-section-title.display-1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .cid-stOCD1IJ2S .mbr-text {
    text-align: right;
  }
}
.cid-stOCD1IJ2S .wrap .mask .wrap-text .price {
  color: #bbbbbb;
}
.cid-stOospC8TO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e6ecf2;
}
.cid-stOospC8TO .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-stOospC8TO .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-stOospC8TO .mbr-section-title {
  color: #130947;
  font-weight: 700;
  text-align: center;
}
.cid-stOospC8TO .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-stOospC8TO .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
}
.cid-stOospC8TO .timelines-container {
  margin-top: 60px;
}
.cid-stOospC8TO .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-stOospC8TO .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-stOospC8TO .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-stOospC8TO .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-stOospC8TO .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #10806a;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-stOospC8TO .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-stOospC8TO .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-stOospC8TO .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-stOospC8TO .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-stOospC8TO .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-stOospC8TO .container-fluid {
  padding: 0 2rem;
}
.cid-stOospC8TO .separline:before,
.cid-stOospC8TO .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #bbbbbb;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-stOospC8TO .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #bbbbbb;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-stOospC8TO .container-fluid {
    padding: 0 1rem;
  }
  .cid-stOospC8TO .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-stOospC8TO .separline:before,
  .cid-stOospC8TO .first-separline:before {
    left: -10px !important;
  }
  .cid-stOospC8TO .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-stOospC8TO .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-stOospC8TO .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-stOospC8TO .time-line-date-content p {
    float: left !important;
  }
  .cid-stOospC8TO .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-stOospC8TO .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-stOospC8TO .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-suQcGryuyc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/whatsapp2-1.gif");
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stZGjIQn11 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #10806a;
}
.cid-stZGjIQn11 H1 {
  color: #57468b;
}
.cid-stZGjIQn11 .mbr-text,
.cid-stZGjIQn11 .mbr-section-btn {
  color: #716c80;
}
.cid-stZGjIQn11 img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-stZGjIQn11 img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-stQTPJfaJ7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #10806a;
}
.cid-stQTPJfaJ7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 1;
}
.cid-stQTPJfaJ7 .mbr-section-subtitle {
  font-weight: 700 !important;
  color: #10806a;
  margin-bottom: 0.7rem;
}
.cid-stQTPJfaJ7 input,
.cid-stQTPJfaJ7 textarea {
  font-size: 14px;
}
.cid-stQTPJfaJ7 input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-stQTPJfaJ7 textarea {
  padding: 0.9rem 2rem !important;
  border-radius: 30px;
  height: 100%;
}
.cid-stQTPJfaJ7 .form-group {
  margin-bottom: 1.9rem;
  padding: 0rem;
}
.cid-stQTPJfaJ7 .col-auto {
  width: 100%;
  text-align: center;
}
.cid-stQTPJfaJ7 img {
  width: 90%;
  border-radius: 8px;
}
.cid-stQTPJfaJ7 .mbr-form .btn {
  margin: 0.4rem 0.4rem;
  margin-left: 0rem;
}
.cid-stQTPJfaJ7 .btn {
  padding: 1rem 3.5rem !important;
}
.cid-stQTPJfaJ7 .title-block {
  margin-bottom: 2rem;
}
.cid-stQTPJfaJ7 .form-control,
.cid-stQTPJfaJ7 .field-input {
  background-color: #e2e3e7;
  border-color: #e2e3e7;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-stQTPJfaJ7 .form-control:hover,
.cid-stQTPJfaJ7 .field-input:hover {
  background-color: #e2e3e7;
  border-color: #e2e3e7 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-stQTPJfaJ7 .form-control:focus,
.cid-stQTPJfaJ7 .field-input:focus {
  background-color: #ffffff;
  border-color: #e2e3e7 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-stQTPJfaJ7 input::-webkit-input-placeholder,
.cid-stQTPJfaJ7 textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-stQTPJfaJ7 input:-moz-placeholder,
.cid-stQTPJfaJ7 textarea:-moz-placeholder {
  color: #807d78;
}
.cid-stQTPJfaJ7 .jq-selectbox li,
.cid-stQTPJfaJ7 .jq-selectbox li {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-stQTPJfaJ7 .jq-selectbox li:hover,
.cid-stQTPJfaJ7 .jq-selectbox li.selected {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-stQTPJfaJ7 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
.cid-stQTPJfaJ7 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
.cid-stQTPJfaJ7 H5 {
  padding-bottom: 2rem;
}
.cid-stQTPJfaJ7 .mbr-text {
  color: #777777;
}
.cid-stQTPJfaJ7 .mbr-form {
  padding: 0rem;
}
.cid-stQTPJfaJ7 .btn-form {
  margin-top: 0.2rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-stQTPJfaJ7 .form-row {
    margin: 0;
  }
  .cid-stQTPJfaJ7 .btn-form {
    width: 100%;
    padding-right: 1rem;
  }
  .cid-stQTPJfaJ7 .btn {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-stQTPJfaJ7 img {
    width: 100%;
  }
}
.cid-stQTPJfaJ7 .form-row > [class*="col-"] {
  padding: 0 1rem;
}
.cid-stQTPJfaJ7 .mbr-text,
.cid-stQTPJfaJ7 .mbr-section-btn {
  color: #efecec;
}
.cid-stQTPJfaJ7 H3 {
  color: #ffffff;
}
.cid-stQSuln5Uk {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/marketing-banner.gif");
}
.cid-stQSuln5Uk .btn {
  border: 1px solid #efefef;
}
.cid-stQSuln5Uk .row {
  align-items: center;
}
.cid-stQSuln5Uk .mbr-iconfont {
  color: #5b6c8f;
}
@media (max-width: 767px) {
  .cid-stQSuln5Uk .row {
    text-align: center;
  }
  .cid-stQSuln5Uk .social-row {
    justify-content: center;
  }
}
.cid-stQSuln5Uk .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-stQSuln5Uk .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stQSuln5Uk .list {
    margin-bottom: 0rem;
  }
}
.cid-stQSuln5Uk .google-map {
  height: 34rem;
  position: relative;
}
.cid-stQSuln5Uk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-stQSuln5Uk .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-stQSuln5Uk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-stQSuln5Uk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-stQSuln5Uk .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stQSuln5Uk .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-stQSuln5Uk .mbr-section-subtitle {
  color: #10806a;
}
.cid-stQSuln5Uk .mbr-text {
  color: #5b6c8f;
}
.cid-stQSuln5Uk .phone {
  color: #10806a;
}
.cid-stZHgb2qbP {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #10806a;
}
.cid-stZHgb2qbP H1 {
  color: #57468b;
}
.cid-stZHgb2qbP .mbr-text,
.cid-stZHgb2qbP .mbr-section-btn {
  color: #716c80;
}
.cid-stZHgb2qbP img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-stZHgb2qbP img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-stQVGPg897 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fond-decompte.gif");
}
.cid-stQVGPg897 .mbr-overlay {
  background-color: #10806a;
  opacity: 1;
}
.cid-stQVGPg897 .mbr-section-subtitle {
  font-weight: 700 !important;
  color: #10806a;
  margin-bottom: 0.7rem;
}
.cid-stQVGPg897 input,
.cid-stQVGPg897 textarea {
  font-size: 14px;
}
.cid-stQVGPg897 input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-stQVGPg897 textarea {
  padding: 0.9rem 2rem !important;
  border-radius: 30px;
  height: 100%;
}
.cid-stQVGPg897 .form-group {
  margin-bottom: 1.9rem;
  padding: 0rem;
}
.cid-stQVGPg897 .col-auto {
  width: 100%;
  text-align: center;
}
.cid-stQVGPg897 img {
  width: 90%;
  border-radius: 8px;
}
.cid-stQVGPg897 .mbr-form .btn {
  margin: 0.4rem 0.4rem;
  margin-left: 0rem;
}
.cid-stQVGPg897 .btn {
  padding: 1rem 3.5rem !important;
}
.cid-stQVGPg897 .title-block {
  margin-bottom: 2rem;
}
.cid-stQVGPg897 .form-control,
.cid-stQVGPg897 .field-input {
  background-color: #e2e3e7;
  border-color: #e2e3e7;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-stQVGPg897 .form-control:hover,
.cid-stQVGPg897 .field-input:hover {
  background-color: #e2e3e7;
  border-color: #e2e3e7 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-stQVGPg897 .form-control:focus,
.cid-stQVGPg897 .field-input:focus {
  background-color: #ffffff;
  border-color: #e2e3e7 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-stQVGPg897 input::-webkit-input-placeholder,
.cid-stQVGPg897 textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-stQVGPg897 input:-moz-placeholder,
.cid-stQVGPg897 textarea:-moz-placeholder {
  color: #807d78;
}
.cid-stQVGPg897 .jq-selectbox li,
.cid-stQVGPg897 .jq-selectbox li {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-stQVGPg897 .jq-selectbox li:hover,
.cid-stQVGPg897 .jq-selectbox li.selected {
  background-color: #e2e3e7;
  color: #000000;
}
.cid-stQVGPg897 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
.cid-stQVGPg897 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #e2e3e7;
}
.cid-stQVGPg897 H5 {
  padding-bottom: 2rem;
}
.cid-stQVGPg897 .mbr-text {
  color: #777777;
}
.cid-stQVGPg897 .mbr-form {
  padding: 0rem;
}
.cid-stQVGPg897 .btn-form {
  margin-top: 0.2rem;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .cid-stQVGPg897 .form-row {
    margin: 0;
  }
  .cid-stQVGPg897 .btn-form {
    width: 100%;
    padding-right: 1rem;
  }
  .cid-stQVGPg897 .btn {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-stQVGPg897 img {
    width: 100%;
  }
}
.cid-stQVGPg897 .form-row > [class*="col-"] {
  padding: 0 1rem;
}
.cid-stQVGPg897 H3 {
  color: #fafafa;
}
.cid-stQVV5WGaM {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/whatsapp-image-2019-11-18-at-15.53.29-1280x734.jpg");
}
.cid-stQVV5WGaM .btn {
  border: 1px solid #efefef;
}
.cid-stQVV5WGaM .row {
  align-items: center;
}
.cid-stQVV5WGaM .mbr-iconfont {
  color: #5b6c8f;
}
@media (max-width: 767px) {
  .cid-stQVV5WGaM .row {
    text-align: center;
  }
  .cid-stQVV5WGaM .social-row {
    justify-content: center;
  }
}
.cid-stQVV5WGaM .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-stQVV5WGaM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stQVV5WGaM .list {
    margin-bottom: 0rem;
  }
}
.cid-stQVV5WGaM .google-map {
  height: 34rem;
  position: relative;
}
.cid-stQVV5WGaM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-stQVV5WGaM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-stQVV5WGaM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-stQVV5WGaM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-stQVV5WGaM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stQVV5WGaM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-stQVV5WGaM .mbr-section-subtitle {
  color: #10806a;
}
.cid-stQVV5WGaM .mbr-text {
  color: #5b6c8f;
}
.cid-stQVV5WGaM .phone {
  color: #10806a;
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-stPgeEh7zc {
  background-image: url("../../../assets/images/banner-8.gif");
}
.cid-stPgeEh7zc .link-align {
  width: 100%;
}
.cid-stPgeEh7zc .link-wrap {
  display: inline-block;
}
.cid-stPgeEh7zc .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-stPgeEh7zc .wrap {
  transform: matrix3d(0.99863, -0.052336, 0, 0, 0.052336, 0.99863, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
.cid-stPgeEh7zc .wrap .mask {
  background: #10806a;
  background: linear-gradient(#10806a 0%, #55af9d 69%, #9cdfd2 100%);
  display: flex;
  z-index: 8;
  visibility: inherit;
  transition: none 0s ease 0s;
  text-align: inherit;
  line-height: 1.05;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 17px;
  white-space: nowrap;
  min-height: 88px;
  width: 100%;
  max-height: 100px;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, -0.275637, 0.961262, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
@media (max-width: 992px) {
  .cid-stPgeEh7zc .wrap .mask {
    background: none;
    min-height: auto;
  }
}
.cid-stPgeEh7zc .wrap .mbr-section-subtitle {
  line-height: 1;
}
.cid-stPgeEh7zc .wrap .price {
  color: #121d84;
}
@media (min-width: 992px) {
  .cid-stPgeEh7zc .wrap .mbr-section-title.display-1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .cid-stPgeEh7zc .mbr-text {
    text-align: right;
  }
}
.cid-stPgeEh7zc .wrap .mask .wrap-text .price {
  color: #bbbbbb;
}
.cid-stPgeEIDC0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e6ecf2;
}
.cid-stPgeEIDC0 .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-stPgeEIDC0 .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-stPgeEIDC0 .mbr-section-title {
  color: #130947;
  font-weight: 700;
  text-align: center;
}
.cid-stPgeEIDC0 .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-stPgeEIDC0 .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
}
.cid-stPgeEIDC0 .timelines-container {
  margin-top: 60px;
}
.cid-stPgeEIDC0 .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-stPgeEIDC0 .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-stPgeEIDC0 .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-stPgeEIDC0 .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-stPgeEIDC0 .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #10806a;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-stPgeEIDC0 .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-stPgeEIDC0 .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-stPgeEIDC0 .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-stPgeEIDC0 .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-stPgeEIDC0 .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-stPgeEIDC0 .container-fluid {
  padding: 0 2rem;
}
.cid-stPgeEIDC0 .separline:before,
.cid-stPgeEIDC0 .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #bbbbbb;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-stPgeEIDC0 .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #bbbbbb;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-stPgeEIDC0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-stPgeEIDC0 .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-stPgeEIDC0 .separline:before,
  .cid-stPgeEIDC0 .first-separline:before {
    left: -10px !important;
  }
  .cid-stPgeEIDC0 .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-stPgeEIDC0 .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-stPgeEIDC0 .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-stPgeEIDC0 .time-line-date-content p {
    float: left !important;
  }
  .cid-stPgeEIDC0 .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-stPgeEIDC0 .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-stPgeEIDC0 .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-stPgeFELKP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-stPgeFELKP nav.navbar {
  position: fixed;
}
.cid-stPgeFELKP .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-stPgeFELKP .dropdown-menu {
  padding: 0;
}
.cid-stPgeFELKP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stPgeFELKP .dropdown-item:hover,
.cid-stPgeFELKP .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-stPgeFELKP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-stPgeFELKP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-stPgeFELKP .nav-link {
  position: relative;
}
.cid-stPgeFELKP .container {
  display: flex;
  margin: auto;
}
.cid-stPgeFELKP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stPgeFELKP .navbar-caption {
  padding-right: 4rem;
}
.cid-stPgeFELKP .dropdown-menu,
.cid-stPgeFELKP .navbar.opened {
  background: #ffffff !important;
}
.cid-stPgeFELKP .nav-item:focus,
.cid-stPgeFELKP .nav-link:focus {
  outline: none;
}
.cid-stPgeFELKP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-stPgeFELKP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPgeFELKP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPgeFELKP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stPgeFELKP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPgeFELKP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPgeFELKP .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-stPgeFELKP .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stPgeFELKP .navbar.opened {
  transition: all .3s;
}
.cid-stPgeFELKP .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-stPgeFELKP .navbar .navbar-logo img {
  width: auto;
}
.cid-stPgeFELKP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-stPgeFELKP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stPgeFELKP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stPgeFELKP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-stPgeFELKP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stPgeFELKP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stPgeFELKP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-stPgeFELKP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stPgeFELKP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-stPgeFELKP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-stPgeFELKP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stPgeFELKP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stPgeFELKP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stPgeFELKP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stPgeFELKP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-stPgeFELKP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stPgeFELKP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stPgeFELKP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stPgeFELKP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-stPgeFELKP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-stPgeFELKP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-stPgeFELKP .navbar.navbar-short {
  min-height: 60px;
}
.cid-stPgeFELKP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stPgeFELKP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stPgeFELKP .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stPgeFELKP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stPgeFELKP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stPgeFELKP .dropdown-item.active,
.cid-stPgeFELKP .dropdown-item:active {
  background-color: transparent;
}
.cid-stPgeFELKP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stPgeFELKP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stPgeFELKP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stPgeFELKP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stPgeFELKP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stPgeFELKP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPgeFELKP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stPgeFELKP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-stPgeFELKP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-stPgeFELKP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-stPgeFELKP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stPgeFELKP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stPgeFELKP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stPgeFELKP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stPgeFELKP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stPgeFELKP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stPgeFELKP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stPgeFELKP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stPgeFELKP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stPgeFELKP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stPgeFELKP .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-stPgeFELKP .navbar {
    height: 77px;
  }
  .cid-stPgeFELKP .navbar.opened {
    height: auto;
  }
  .cid-stPgeFELKP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stPgeG39FK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stPgeG39FK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stPgeG39FK .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stPgeG39FK .row {
    text-align: center;
  }
  .cid-stPgeG39FK .row > div {
    margin: auto;
  }
  .cid-stPgeG39FK .social-row {
    justify-content: center;
  }
}
.cid-stPgeG39FK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stPgeG39FK .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stPgeG39FK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stPgeG39FK .list {
    margin-bottom: 0rem;
  }
}
.cid-stPgeG39FK .mbr-text {
  color: #bbbbbb;
}
.cid-stPgeG39FK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stPgeG39FK .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stPgeG39FK div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stPgeG39FK .mbr-section-subtitle {
  text-align: center;
}
.cid-stPLboMS9c {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/desktop-table-office-2000x1381.jpg");
}
.cid-stPLboMS9c .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stPLboMS9c .mbr-section-title {
  color: #ffffff;
}
.cid-stPLboMS9c .mbr-text {
  color: #ffffff;
  font-weight: 500;
}
.cid-stPLboMS9c .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-left: 0.6rem;
}
.cid-stPLboMS9c .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #04836a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-stPLboMS9c .mbr-section-btn {
  display: flex;
}
.cid-stPLboMS9c .mbr-section-btn .btn {
  font-weight: 700 !important;
}
.cid-stPLboMS9c .video-wrap {
  cursor: pointer;
  margin-left: 30px;
}
.cid-stPLboMS9c .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-stPLboMS9c .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
  color: #279e64;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-stPLboMS9c .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-stPLboMS9c .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-stPLboMS9c .video-wrap .icon-wrap .line-video-1,
.cid-stPLboMS9c .video-wrap .icon-wrap .line-video-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: squares 2.4s linear 0s infinite;
  -webkit-animation: squares 2.4s linear 0s infinite;
  -ms-animation: squares 2.4s linear 0s infinite;
  -o-animation: squares 2.4s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}
.cid-stPLboMS9c .video-wrap .icon-wrap .line-video-2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.cid-stPLboMS9c .video-wrap .mbr-text {
  color: #ffffff;
  font-weight: 700;
}
.cid-stPLboMS9c .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-stPLboMS9c .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-stPLboMS9c .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-stPLboMS9c a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #121d84;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-stPLboMS9c a.close:hover {
  color: #121d84;
}
@media (max-width: 991px) {
  .cid-stPLboMS9c .separator,
  .cid-stPLboMS9c .sep-holder,
  .cid-stPLboMS9c .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stPLboMS9c .buttons-wrap {
    flex-direction: column;
  }
  .cid-stPLboMS9c .buttons-wrap .mbr-section-btn {
    justify-content: center;
  }
  .cid-stPLboMS9c .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 25px;
    justify-content: center;
  }
}
@-webkit-keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.cid-stPLboMS9c .skew {
  background-image: url("../../../assets/images/bg-skew.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -140px;
  margin-bottom: 0;
  z-index: 8;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
}
.cid-stPLboMS9c .skew .inner {
  min-height: 150px;
  align-items: center;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-stPLH4zPCI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-stPLH4zPCI .mbr-section-title {
  color: #10806a;
}
.cid-svjCCTHrd2 {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background4-1.jpg");
}
.cid-svjCCTHrd2 .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-svjCCTHrd2 .mbr-section-title {
  margin: 0;
}
.cid-svjCCTHrd2 .mbr-section-subtitle {
  color: #000000;
}
.cid-svjCCTHrd2 .card-img {
  text-align: inherit;
}
.cid-svjCCTHrd2 .card-img span {
  background: linear-gradient(90deg, #10806a, #10806a);
}
.cid-svjCCTHrd2 .mbr-text {
  color: #8d97ad;
}
.cid-svjCCTHrd2 .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-svjCCTHrd2 .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-svjCCTHrd2 .mbr-card-title {
  color: #10806a;
}
.cid-svjCBikLK4 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-6.jpg");
}
.cid-svjCBikLK4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-svjCBikLK4 .mbr-section-title {
  color: #ffffff;
}
.cid-svjE2h5H3r {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background4-1.jpg");
}
.cid-svjE2h5H3r .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-svjE2h5H3r .mbr-section-title {
  margin: 0;
}
.cid-svjE2h5H3r .mbr-section-subtitle {
  color: #000000;
}
.cid-svjE2h5H3r .card-img {
  text-align: inherit;
}
.cid-svjE2h5H3r .card-img span {
  background: linear-gradient(90deg, #10806a, #10806a);
}
.cid-svjE2h5H3r .mbr-text {
  color: #8d97ad;
}
.cid-svjE2h5H3r .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-svjE2h5H3r .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-svjE2h5H3r .mbr-card-title {
  color: #10806a;
}
.cid-stPLbquZNW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-stPLbquZNW nav.navbar {
  position: fixed;
}
.cid-stPLbquZNW .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-stPLbquZNW .dropdown-menu {
  padding: 0;
}
.cid-stPLbquZNW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stPLbquZNW .dropdown-item:hover,
.cid-stPLbquZNW .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-stPLbquZNW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-stPLbquZNW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-stPLbquZNW .nav-link {
  position: relative;
}
.cid-stPLbquZNW .container {
  display: flex;
  margin: auto;
}
.cid-stPLbquZNW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stPLbquZNW .navbar-caption {
  padding-right: 4rem;
}
.cid-stPLbquZNW .dropdown-menu,
.cid-stPLbquZNW .navbar.opened {
  background: #ffffff !important;
}
.cid-stPLbquZNW .nav-item:focus,
.cid-stPLbquZNW .nav-link:focus {
  outline: none;
}
.cid-stPLbquZNW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-stPLbquZNW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPLbquZNW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPLbquZNW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stPLbquZNW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPLbquZNW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPLbquZNW .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-stPLbquZNW .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stPLbquZNW .navbar.opened {
  transition: all .3s;
}
.cid-stPLbquZNW .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-stPLbquZNW .navbar .navbar-logo img {
  width: auto;
}
.cid-stPLbquZNW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-stPLbquZNW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stPLbquZNW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stPLbquZNW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-stPLbquZNW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stPLbquZNW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stPLbquZNW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-stPLbquZNW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stPLbquZNW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-stPLbquZNW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-stPLbquZNW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stPLbquZNW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stPLbquZNW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stPLbquZNW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stPLbquZNW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-stPLbquZNW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stPLbquZNW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stPLbquZNW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stPLbquZNW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-stPLbquZNW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-stPLbquZNW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-stPLbquZNW .navbar.navbar-short {
  min-height: 60px;
}
.cid-stPLbquZNW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stPLbquZNW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stPLbquZNW .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stPLbquZNW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stPLbquZNW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stPLbquZNW .dropdown-item.active,
.cid-stPLbquZNW .dropdown-item:active {
  background-color: transparent;
}
.cid-stPLbquZNW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stPLbquZNW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stPLbquZNW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stPLbquZNW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stPLbquZNW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stPLbquZNW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPLbquZNW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stPLbquZNW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-stPLbquZNW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-stPLbquZNW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-stPLbquZNW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stPLbquZNW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stPLbquZNW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stPLbquZNW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stPLbquZNW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stPLbquZNW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stPLbquZNW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stPLbquZNW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stPLbquZNW .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stPLbquZNW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stPLbquZNW .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-stPLbquZNW .navbar {
    height: 77px;
  }
  .cid-stPLbquZNW .navbar.opened {
    height: auto;
  }
  .cid-stPLbquZNW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stPLbrmVi2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stPLbrmVi2 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stPLbrmVi2 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stPLbrmVi2 .row {
    text-align: center;
  }
  .cid-stPLbrmVi2 .row > div {
    margin: auto;
  }
  .cid-stPLbrmVi2 .social-row {
    justify-content: center;
  }
}
.cid-stPLbrmVi2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stPLbrmVi2 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stPLbrmVi2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stPLbrmVi2 .list {
    margin-bottom: 0rem;
  }
}
.cid-stPLbrmVi2 .mbr-text {
  color: #bbbbbb;
}
.cid-stPLbrmVi2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stPLbrmVi2 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stPLbrmVi2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stPLbrmVi2 .mbr-section-subtitle {
  text-align: center;
}
.cid-stPQBRg3Bb {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/desktop-table-office-2000x1381.jpg");
}
.cid-stPQBRg3Bb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stPQBRg3Bb .mbr-section-title {
  color: #ffffff;
}
.cid-stPQBRg3Bb .mbr-text {
  color: #ffffff;
  font-weight: 500;
}
.cid-stPQBRg3Bb .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-left: 0.6rem;
}
.cid-stPQBRg3Bb .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #04836a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-stPQBRg3Bb .mbr-section-btn {
  display: flex;
}
.cid-stPQBRg3Bb .mbr-section-btn .btn {
  font-weight: 700 !important;
}
.cid-stPQBRg3Bb .video-wrap {
  cursor: pointer;
  margin-left: 30px;
}
.cid-stPQBRg3Bb .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-stPQBRg3Bb .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
  color: #279e64;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-stPQBRg3Bb .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-stPQBRg3Bb .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-stPQBRg3Bb .video-wrap .icon-wrap .line-video-1,
.cid-stPQBRg3Bb .video-wrap .icon-wrap .line-video-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: squares 2.4s linear 0s infinite;
  -webkit-animation: squares 2.4s linear 0s infinite;
  -ms-animation: squares 2.4s linear 0s infinite;
  -o-animation: squares 2.4s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}
.cid-stPQBRg3Bb .video-wrap .icon-wrap .line-video-2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.cid-stPQBRg3Bb .video-wrap .mbr-text {
  color: #ffffff;
  font-weight: 700;
}
.cid-stPQBRg3Bb .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-stPQBRg3Bb .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-stPQBRg3Bb .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-stPQBRg3Bb a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #121d84;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-stPQBRg3Bb a.close:hover {
  color: #121d84;
}
@media (max-width: 991px) {
  .cid-stPQBRg3Bb .separator,
  .cid-stPQBRg3Bb .sep-holder,
  .cid-stPQBRg3Bb .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stPQBRg3Bb .buttons-wrap {
    flex-direction: column;
  }
  .cid-stPQBRg3Bb .buttons-wrap .mbr-section-btn {
    justify-content: center;
  }
  .cid-stPQBRg3Bb .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 25px;
    justify-content: center;
  }
}
@-webkit-keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.cid-stPQBRg3Bb .skew {
  background-image: url("../../../assets/images/bg-skew.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -140px;
  margin-bottom: 0;
  z-index: 8;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
}
.cid-stPQBRg3Bb .skew .inner {
  min-height: 150px;
  align-items: center;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-stPQBSbWzK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-stPQBSbWzK .mbr-section-title {
  color: #10806a;
}
.cid-stQbLE9Md3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-stQbLE9Md3 H1 {
  color: #10806a;
}
.cid-stQbLE9Md3 .mbr-text,
.cid-stQbLE9Md3 .mbr-section-btn {
  color: #716c80;
}
.cid-stQbLE9Md3 img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-stQbLE9Md3 .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-stQbLE9Md3 img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-stPQBThJHD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-stPQBThJHD nav.navbar {
  position: fixed;
}
.cid-stPQBThJHD .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-stPQBThJHD .dropdown-menu {
  padding: 0;
}
.cid-stPQBThJHD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stPQBThJHD .dropdown-item:hover,
.cid-stPQBThJHD .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-stPQBThJHD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-stPQBThJHD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-stPQBThJHD .nav-link {
  position: relative;
}
.cid-stPQBThJHD .container {
  display: flex;
  margin: auto;
}
.cid-stPQBThJHD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stPQBThJHD .navbar-caption {
  padding-right: 4rem;
}
.cid-stPQBThJHD .dropdown-menu,
.cid-stPQBThJHD .navbar.opened {
  background: #ffffff !important;
}
.cid-stPQBThJHD .nav-item:focus,
.cid-stPQBThJHD .nav-link:focus {
  outline: none;
}
.cid-stPQBThJHD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-stPQBThJHD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPQBThJHD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPQBThJHD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stPQBThJHD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPQBThJHD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPQBThJHD .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-stPQBThJHD .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stPQBThJHD .navbar.opened {
  transition: all .3s;
}
.cid-stPQBThJHD .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-stPQBThJHD .navbar .navbar-logo img {
  width: auto;
}
.cid-stPQBThJHD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-stPQBThJHD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stPQBThJHD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stPQBThJHD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-stPQBThJHD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stPQBThJHD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stPQBThJHD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-stPQBThJHD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stPQBThJHD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-stPQBThJHD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-stPQBThJHD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stPQBThJHD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stPQBThJHD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stPQBThJHD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stPQBThJHD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-stPQBThJHD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stPQBThJHD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stPQBThJHD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stPQBThJHD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-stPQBThJHD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-stPQBThJHD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-stPQBThJHD .navbar.navbar-short {
  min-height: 60px;
}
.cid-stPQBThJHD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stPQBThJHD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stPQBThJHD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stPQBThJHD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stPQBThJHD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stPQBThJHD .dropdown-item.active,
.cid-stPQBThJHD .dropdown-item:active {
  background-color: transparent;
}
.cid-stPQBThJHD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stPQBThJHD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stPQBThJHD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stPQBThJHD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stPQBThJHD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stPQBThJHD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPQBThJHD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stPQBThJHD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-stPQBThJHD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-stPQBThJHD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-stPQBThJHD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stPQBThJHD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stPQBThJHD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stPQBThJHD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stPQBThJHD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stPQBThJHD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stPQBThJHD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stPQBThJHD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stPQBThJHD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stPQBThJHD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stPQBThJHD .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-stPQBThJHD .navbar {
    height: 77px;
  }
  .cid-stPQBThJHD .navbar.opened {
    height: auto;
  }
  .cid-stPQBThJHD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stQk12LxBY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #e9e9e9;
}
.cid-stQk12LxBY H1 {
  color: #10806a;
}
.cid-stQk12LxBY .mbr-text,
.cid-stQk12LxBY .mbr-section-btn {
  color: #716c80;
}
.cid-stQk12LxBY img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-stQk12LxBY .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-stQk12LxBY img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-stQpJ85soS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-stQpJ85soS H1 {
  color: #10806a;
}
.cid-stQpJ85soS .mbr-text,
.cid-stQpJ85soS .mbr-section-btn {
  color: #716c80;
}
.cid-stQpJ85soS img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-stQpJ85soS .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-stQpJ85soS img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-stQqFwjYH3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #e9e9e9;
}
.cid-stQqFwjYH3 H1 {
  color: #10806a;
}
.cid-stQqFwjYH3 .mbr-text,
.cid-stQqFwjYH3 .mbr-section-btn {
  color: #716c80;
}
.cid-stQqFwjYH3 img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-stQqFwjYH3 .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-stQqFwjYH3 img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-stQttNLlk3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-stQttNLlk3 .column-wrapper {
  padding-left: 1.5rem;
}
.cid-stQttNLlk3 .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-stQttNLlk3 .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-stQttNLlk3 .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #10806a;
}
.cid-stQttNLlk3 .mbr-text,
.cid-stQttNLlk3 .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-stQttNLlk3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-stPQBUd3yF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stPQBUd3yF .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stPQBUd3yF .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stPQBUd3yF .row {
    text-align: center;
  }
  .cid-stPQBUd3yF .row > div {
    margin: auto;
  }
  .cid-stPQBUd3yF .social-row {
    justify-content: center;
  }
}
.cid-stPQBUd3yF .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stPQBUd3yF .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stPQBUd3yF .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stPQBUd3yF .list {
    margin-bottom: 0rem;
  }
}
.cid-stPQBUd3yF .mbr-text {
  color: #bbbbbb;
}
.cid-stPQBUd3yF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stPQBUd3yF .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stPQBUd3yF div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stPQBUd3yF .mbr-section-subtitle {
  text-align: center;
}
.cid-suAp9AmpVN {
  background-image: url("../../../assets/images/banner-2021-alv-10.gif");
}
.cid-suAp9AmpVN .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-suAp9AmpVN .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-suAp9AmpVN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-suAp9AmpVN .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-suAp9AmpVN .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-suAp9AmpVN .mbr-section-title {
  color: #ffffff;
}
.cid-suAp9AmpVN .mbr-text,
.cid-suAp9AmpVN .mbr-section-btn {
  color: #ffffff;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suApKfeuXE {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-suApKfeuXE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suApKfeuXE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suApKfeuXE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suApKfeuXE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suApKfeuXE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #184021;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #184021, #04836a) !important;
}
.cid-suApKfeuXE .mbr-gallery-item > div:hover::before {
  opacity: 0.5 !important;
}
.cid-suApKfeuXE .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #232323 !important;
}
.cid-suApKfeuXE .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-suApKfeuXE .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #232323 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-suApKfeuXE .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #04836a !important;
}
.cid-suApKfeuXE .mbr-gallery-filter ul {
  display: block;
}
.cid-suApKfeuXE .mbr-gallery-filter ul li {
  position: relative;
}
.cid-suApKfeuXE .mbr-gallery-filter li.active .btn {
  color: #04836a !important;
  background: transparent;
}
.cid-suApKfeuXE .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #04836a !important;
}
.cid-suApKfeuXE .mbr-gallery-filter li.active::after,
.cid-suApKfeuXE .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #04836a !important;
}
.cid-suApKfeuXE .mbr-gallery-title {
  transition: all.3s;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 100%;
  top: -2rem;
  right: 0;
  text-align: right;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
.cid-suApKfeuXE .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-suApKfeuXE .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-suApKfeuXE .icon-focus:before {
  content: '\e95e';
}
.cid-suApKfeuXE .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-suApKfeuXE .mbr-section-title {
  margin: 0;
}
.cid-suApKfeuXE .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-suApKfeuXE .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-suEpEXUN3U {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/banner-bc27db-2000x855.jpg");
}
.cid-suEpEXUN3U .link-align {
  width: 100%;
}
.cid-suEpEXUN3U .link-wrap {
  display: inline-block;
}
.cid-suEpEXUN3U .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-suEpEXUN3U .wrap {
  transform: matrix3d(0.99863, -0.052336, 0, 0, 0.052336, 0.99863, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
.cid-suEpEXUN3U .wrap .mask {
  background: none;
  display: flex;
  z-index: 8;
  visibility: inherit;
  transition: none 0s ease 0s;
  text-align: inherit;
  line-height: 1.05;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 17px;
  white-space: nowrap;
  min-height: 88px;
  width: 100%;
  max-height: 100px;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, -0.275637, 0.961262, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
@media (max-width: 992px) {
  .cid-suEpEXUN3U .wrap .mask {
    background: none;
    min-height: auto;
  }
}
.cid-suEpEXUN3U .wrap .mbr-section-subtitle {
  line-height: 1;
}
.cid-suEpEXUN3U .wrap .price {
  color: #121d84;
}
@media (min-width: 992px) {
  .cid-suEpEXUN3U .wrap .mbr-section-title.display-1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .cid-suEpEXUN3U .mbr-text {
    text-align: right;
  }
}
.cid-suEpEXUN3U .wrap .mask .wrap-text .price {
  color: #bbbbbb;
}
.cid-suEpEYdsdV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e6ecf2;
}
.cid-suEpEYdsdV .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-suEpEYdsdV .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-suEpEYdsdV .mbr-section-title {
  color: #130947;
  font-weight: 700;
  text-align: center;
}
.cid-suEpEYdsdV .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-suEpEYdsdV .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
}
.cid-suEpEYdsdV .timelines-container {
  margin-top: 60px;
}
.cid-suEpEYdsdV .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-suEpEYdsdV .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-suEpEYdsdV .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-suEpEYdsdV .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-suEpEYdsdV .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #10806a;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-suEpEYdsdV .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-suEpEYdsdV .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-suEpEYdsdV .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-suEpEYdsdV .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-suEpEYdsdV .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-suEpEYdsdV .container-fluid {
  padding: 0 2rem;
}
.cid-suEpEYdsdV .separline:before,
.cid-suEpEYdsdV .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #bbbbbb;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-suEpEYdsdV .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #bbbbbb;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-suEpEYdsdV .container-fluid {
    padding: 0 1rem;
  }
  .cid-suEpEYdsdV .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-suEpEYdsdV .separline:before,
  .cid-suEpEYdsdV .first-separline:before {
    left: -10px !important;
  }
  .cid-suEpEYdsdV .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-suEpEYdsdV .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-suEpEYdsdV .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-suEpEYdsdV .time-line-date-content p {
    float: left !important;
  }
  .cid-suEpEYdsdV .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-suEpEYdsdV .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-suEpEYdsdV .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-suEpEZ40J8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suEpEZ40J8 nav.navbar {
  position: fixed;
}
.cid-suEpEZ40J8 .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-suEpEZ40J8 .dropdown-menu {
  padding: 0;
}
.cid-suEpEZ40J8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suEpEZ40J8 .dropdown-item:hover,
.cid-suEpEZ40J8 .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-suEpEZ40J8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-suEpEZ40J8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suEpEZ40J8 .nav-link {
  position: relative;
}
.cid-suEpEZ40J8 .container {
  display: flex;
  margin: auto;
}
.cid-suEpEZ40J8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suEpEZ40J8 .navbar-caption {
  padding-right: 4rem;
}
.cid-suEpEZ40J8 .dropdown-menu,
.cid-suEpEZ40J8 .navbar.opened {
  background: #ffffff !important;
}
.cid-suEpEZ40J8 .nav-item:focus,
.cid-suEpEZ40J8 .nav-link:focus {
  outline: none;
}
.cid-suEpEZ40J8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suEpEZ40J8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suEpEZ40J8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-suEpEZ40J8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suEpEZ40J8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suEpEZ40J8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suEpEZ40J8 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-suEpEZ40J8 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suEpEZ40J8 .navbar.opened {
  transition: all .3s;
}
.cid-suEpEZ40J8 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-suEpEZ40J8 .navbar .navbar-logo img {
  width: auto;
}
.cid-suEpEZ40J8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suEpEZ40J8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suEpEZ40J8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suEpEZ40J8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-suEpEZ40J8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suEpEZ40J8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suEpEZ40J8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suEpEZ40J8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suEpEZ40J8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-suEpEZ40J8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-suEpEZ40J8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suEpEZ40J8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suEpEZ40J8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suEpEZ40J8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suEpEZ40J8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suEpEZ40J8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suEpEZ40J8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suEpEZ40J8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suEpEZ40J8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suEpEZ40J8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suEpEZ40J8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-suEpEZ40J8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-suEpEZ40J8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suEpEZ40J8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-suEpEZ40J8 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suEpEZ40J8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suEpEZ40J8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suEpEZ40J8 .dropdown-item.active,
.cid-suEpEZ40J8 .dropdown-item:active {
  background-color: transparent;
}
.cid-suEpEZ40J8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suEpEZ40J8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suEpEZ40J8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suEpEZ40J8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suEpEZ40J8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suEpEZ40J8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suEpEZ40J8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suEpEZ40J8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suEpEZ40J8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-suEpEZ40J8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-suEpEZ40J8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suEpEZ40J8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suEpEZ40J8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suEpEZ40J8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suEpEZ40J8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suEpEZ40J8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-suEpEZ40J8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-suEpEZ40J8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suEpEZ40J8 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-suEpEZ40J8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suEpEZ40J8 .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-suEpEZ40J8 .navbar {
    height: 77px;
  }
  .cid-suEpEZ40J8 .navbar.opened {
    height: auto;
  }
  .cid-suEpEZ40J8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suEpEZrXgn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-suEpEZrXgn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-suEpEZrXgn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-suEpEZrXgn .row {
    text-align: center;
  }
  .cid-suEpEZrXgn .row > div {
    margin: auto;
  }
  .cid-suEpEZrXgn .social-row {
    justify-content: center;
  }
}
.cid-suEpEZrXgn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-suEpEZrXgn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-suEpEZrXgn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-suEpEZrXgn .list {
    margin-bottom: 0rem;
  }
}
.cid-suEpEZrXgn .mbr-text {
  color: #bbbbbb;
}
.cid-suEpEZrXgn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-suEpEZrXgn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-suEpEZrXgn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-suEpEZrXgn .mbr-section-subtitle {
  text-align: center;
}
.cid-suEqjmo7UR {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-suEqjmo7UR .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-suEqjmo7UR .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-suEqjmo7UR .form-row {
    flex-direction: column;
  }
}
.cid-suEqjmo7UR h4 {
  margin-bottom: 3rem;
}
.cid-suEqjmo7UR .form-control,
.cid-suEqjmo7UR .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-suEqjmo7UR .form-control,
.cid-suEqjmo7UR .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-suEqjmo7UR .form-control::-webkit-input-placeholder,
.cid-suEqjmo7UR .field-input::-webkit-input-placeholder,
.cid-suEqjmo7UR .form-control::-webkit-input-placeholder,
.cid-suEqjmo7UR .field-input::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-suEqjmo7UR .form-control:-moz-placeholder,
.cid-suEqjmo7UR .field-input:-moz-placeholder,
.cid-suEqjmo7UR .form-control:-moz-placeholder,
.cid-suEqjmo7UR .field-input:-moz-placeholder {
  color: #5b6c8f;
}
.cid-suEqjmo7UR .form-control:hover,
.cid-suEqjmo7UR .field-input:hover,
.cid-suEqjmo7UR .form-control:focus,
.cid-suEqjmo7UR .field-input:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5 !important;
  color: #103178;
  box-shadow: none;
  outline: none;
}
.cid-suEqjmo7UR .form-control:hover::-webkit-input-placeholder,
.cid-suEqjmo7UR .field-input:hover::-webkit-input-placeholder,
.cid-suEqjmo7UR .form-control:focus::-webkit-input-placeholder,
.cid-suEqjmo7UR .field-input:focus::-webkit-input-placeholder,
.cid-suEqjmo7UR .form-control:hover::-webkit-input-placeholder,
.cid-suEqjmo7UR .field-input:hover::-webkit-input-placeholder,
.cid-suEqjmo7UR .form-control:focus::-webkit-input-placeholder,
.cid-suEqjmo7UR .field-input:focus::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-suEqjmo7UR .form-control:hover:-moz-placeholder,
.cid-suEqjmo7UR .field-input:hover:-moz-placeholder,
.cid-suEqjmo7UR .form-control:focus:-moz-placeholder,
.cid-suEqjmo7UR .field-input:focus:-moz-placeholder,
.cid-suEqjmo7UR .form-control:hover:-moz-placeholder,
.cid-suEqjmo7UR .field-input:hover:-moz-placeholder,
.cid-suEqjmo7UR .form-control:focus:-moz-placeholder,
.cid-suEqjmo7UR .field-input:focus:-moz-placeholder {
  color: #5b6c8f;
}
.cid-suEqjmo7UR .jq-number__spin:hover,
.cid-suEqjmo7UR .jq-number__spin:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-suEqjmo7UR .jq-number__spin {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-suEqjmo7UR .jq-selectbox li,
.cid-suEqjmo7UR .jq-selectbox li {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-suEqjmo7UR .jq-selectbox li:hover,
.cid-suEqjmo7UR .jq-selectbox li.selected {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-suEqjmo7UR .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-suEqjmo7UR .jq-number__spin.minus:hover:after,
.cid-suEqjmo7UR .jq-number__spin.plus:hover:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-suEqjmo7UR .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-suEqjmo7UR .jq-number__spin.minus:after,
.cid-suEqjmo7UR .jq-number__spin.plus:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-suEqjmo7UR input::-webkit-clear-button {
  display: none;
}
.cid-suEqjmo7UR input::-webkit-inner-spin-button {
  display: none;
}
.cid-suEqjmo7UR input::-webkit-outer-spin-button {
  display: none;
}
.cid-suEqjmo7UR input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-suEqjmo7UR H4 {
  text-align: center;
  color: #103178;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suQszyBKmT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-suQszyBKmT .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-suQszyBKmT .text-wrapper:hover .mbr-section-title a {
  color: #10806a !important;
}
.cid-suQszyBKmT .image-wrapper,
.cid-suQszyBKmT img {
  width: 100%;
  object-fit: cover;
}
.cid-suQszyBKmT .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-suQszyBKmT .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suQszyBKmT .mbr-section-btn .btn-secondary-outline:hover,
.cid-suQszyBKmT .mbr-section-btn .btn-secondary-outline .active,
.cid-suQszyBKmT .mbr-section-btn .btn-secondary-outline:focus {
  color: #04836a !important;
}
@media (max-width: 991px) {
  .cid-suQszyBKmT {
    flex-direction: column;
  }
  .cid-suQszyBKmT .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-suQszyBKmT .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-suQyrrRQXA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/banner-2021-alv-6.gif");
}
.cid-suQyrrRQXA .mbr-overlay {
  background-color: #184021;
  opacity: 0.8;
}
.cid-suQyrrRQXA H4 {
  color: #efecec;
}
.cid-suQyrrRQXA P {
  color: #f1eeea;
}
.cid-suQyrrRQXA LABEL {
  color: #f1eeea;
}
.cid-suQyrrRQXA H5 {
  color: #efecec;
}
.cid-suQyrrRQXA H1 {
  color: #ffffff;
}
.cid-suROAFDvzD {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-suROAFDvzD .nav-tabs .nav-item.open .nav-link:focus,
.cid-suROAFDvzD .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-suROAFDvzD .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-suROAFDvzD .nav-tabs .nav-item {
  padding: .5rem;
}
.cid-suROAFDvzD .nav-tabs .nav-link {
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  background-color: #10806a;
  border-radius: .25rem;
  transition: all .5s;
}
.cid-suROAFDvzD .nav-tabs .nav-link:hover {
  cursor: pointer;
  background-color: #04836a;
}
.cid-suROAFDvzD .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #04836a;
  border-color: #04836a;
}
.cid-suROAFDvzD .nav-tabs .nav-link.active:hover {
  background-color: #04836a;
}
.cid-suROAFDvzD P {
  color: #716c80;
}
@media (max-width: 576px) {
  .cid-suROAFDvzD .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-suROAFDvzD .mbr-text,
  .cid-suROAFDvzD .nav-link {
    text-align: center;
  }
}
.cid-stFmMSB8a3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-stFmMSB8a3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-stFmMSB8a3 .row {
    text-align: center;
  }
  .cid-stFmMSB8a3 .row > div {
    margin: auto;
  }
  .cid-stFmMSB8a3 .social-row {
    justify-content: center;
  }
}
.cid-stFmMSB8a3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-stFmMSB8a3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-stFmMSB8a3 .list {
    margin-bottom: 0rem;
  }
}
.cid-stFmMSB8a3 .mbr-text {
  color: #bbbbbb;
}
.cid-stFmMSB8a3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-stFmMSB8a3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-stFmMSB8a3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-stFmMSB8a3 .mbr-section-subtitle {
  text-align: center;
}
.cid-suRT8TmlSO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-suRT8TmlSO nav.navbar {
  position: fixed;
}
.cid-suRT8TmlSO .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-suRT8TmlSO .dropdown-menu {
  padding: 0;
}
.cid-suRT8TmlSO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suRT8TmlSO .dropdown-item:hover,
.cid-suRT8TmlSO .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-suRT8TmlSO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-suRT8TmlSO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-suRT8TmlSO .nav-link {
  position: relative;
}
.cid-suRT8TmlSO .container {
  display: flex;
  margin: auto;
}
.cid-suRT8TmlSO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suRT8TmlSO .navbar-caption {
  padding-right: 4rem;
}
.cid-suRT8TmlSO .dropdown-menu,
.cid-suRT8TmlSO .navbar.opened {
  background: #ffffff !important;
}
.cid-suRT8TmlSO .nav-item:focus,
.cid-suRT8TmlSO .nav-link:focus {
  outline: none;
}
.cid-suRT8TmlSO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-suRT8TmlSO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suRT8TmlSO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-suRT8TmlSO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-suRT8TmlSO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suRT8TmlSO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suRT8TmlSO .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-suRT8TmlSO .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-suRT8TmlSO .navbar.opened {
  transition: all .3s;
}
.cid-suRT8TmlSO .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-suRT8TmlSO .navbar .navbar-logo img {
  width: auto;
}
.cid-suRT8TmlSO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-suRT8TmlSO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suRT8TmlSO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suRT8TmlSO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-suRT8TmlSO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suRT8TmlSO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suRT8TmlSO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suRT8TmlSO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suRT8TmlSO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-suRT8TmlSO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-suRT8TmlSO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suRT8TmlSO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suRT8TmlSO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suRT8TmlSO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suRT8TmlSO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suRT8TmlSO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suRT8TmlSO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suRT8TmlSO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suRT8TmlSO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-suRT8TmlSO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-suRT8TmlSO .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-suRT8TmlSO .navbar.navbar-short {
  min-height: 60px;
}
.cid-suRT8TmlSO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suRT8TmlSO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-suRT8TmlSO .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-suRT8TmlSO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suRT8TmlSO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suRT8TmlSO .dropdown-item.active,
.cid-suRT8TmlSO .dropdown-item:active {
  background-color: transparent;
}
.cid-suRT8TmlSO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suRT8TmlSO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suRT8TmlSO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suRT8TmlSO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suRT8TmlSO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suRT8TmlSO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suRT8TmlSO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-suRT8TmlSO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-suRT8TmlSO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-suRT8TmlSO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-suRT8TmlSO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suRT8TmlSO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suRT8TmlSO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suRT8TmlSO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suRT8TmlSO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suRT8TmlSO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-suRT8TmlSO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-suRT8TmlSO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suRT8TmlSO .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-suRT8TmlSO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suRT8TmlSO .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-suRT8TmlSO .navbar {
    height: 77px;
  }
  .cid-suRT8TmlSO .navbar.opened {
    height: auto;
  }
  .cid-suRT8TmlSO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suRT8U3qLo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-suRT8U3qLo .text-wrapper {
  padding: 2rem 0;
  padding-right: 20%;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-left: 20%;
}
.cid-suRT8U3qLo .text-wrapper:hover .mbr-section-title a {
  color: #10806a !important;
}
.cid-suRT8U3qLo .image-wrapper,
.cid-suRT8U3qLo img {
  width: 100%;
  object-fit: cover;
}
.cid-suRT8U3qLo .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-suRT8U3qLo .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-suRT8U3qLo .mbr-section-btn .btn-secondary-outline:hover,
.cid-suRT8U3qLo .mbr-section-btn .btn-secondary-outline .active,
.cid-suRT8U3qLo .mbr-section-btn .btn-secondary-outline:focus {
  color: #04836a !important;
}
@media (max-width: 991px) {
  .cid-suRT8U3qLo {
    flex-direction: column;
  }
  .cid-suRT8U3qLo .text-wrapper {
    width: 100%;
    padding: 50px 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-suRT8U3qLo .text-wrapper {
    padding: 30px 1rem;
  }
}
.cid-suRT8UpNbs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/banner-2021-alv-6.gif");
}
.cid-suRT8UpNbs .mbr-overlay {
  background-color: #184021;
  opacity: 0.9;
}
.cid-suRT8UpNbs H4 {
  color: #efecec;
}
.cid-suRT8UpNbs P {
  color: #f1eeea;
}
.cid-suRT8UpNbs LABEL {
  color: #f1eeea;
}
.cid-suRT8UpNbs H5 {
  color: #efecec;
}
.cid-suRT8UpNbs H1 {
  color: #ffffff;
}
.cid-suRT8VTfic {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-suRT8VTfic .nav-tabs .nav-item.open .nav-link:focus,
.cid-suRT8VTfic .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-suRT8VTfic .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-suRT8VTfic .nav-tabs .nav-item {
  padding: .5rem;
}
.cid-suRT8VTfic .nav-tabs .nav-link {
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  background-color: #10806a;
  border-radius: .25rem;
  transition: all .5s;
}
.cid-suRT8VTfic .nav-tabs .nav-link:hover {
  cursor: pointer;
  background-color: #04836a;
}
.cid-suRT8VTfic .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #04836a;
  border-color: #04836a;
}
.cid-suRT8VTfic .nav-tabs .nav-link.active:hover {
  background-color: #04836a;
}
.cid-suRT8VTfic P {
  color: #716c80;
}
@media (max-width: 576px) {
  .cid-suRT8VTfic .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-suRT8VTfic .mbr-text,
  .cid-suRT8VTfic .nav-link {
    text-align: center;
  }
}
.cid-suRT8WedG9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-suRT8WedG9 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-suRT8WedG9 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-suRT8WedG9 .row {
    text-align: center;
  }
  .cid-suRT8WedG9 .row > div {
    margin: auto;
  }
  .cid-suRT8WedG9 .social-row {
    justify-content: center;
  }
}
.cid-suRT8WedG9 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-suRT8WedG9 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-suRT8WedG9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-suRT8WedG9 .list {
    margin-bottom: 0rem;
  }
}
.cid-suRT8WedG9 .mbr-text {
  color: #bbbbbb;
}
.cid-suRT8WedG9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-suRT8WedG9 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-suRT8WedG9 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-suRT8WedG9 .mbr-section-subtitle {
  text-align: center;
}
.cid-sveRyIZpl2 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/lausannevaduz-8-2000x1500.jpg");
}
.cid-sveRyIZpl2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sveRyIZpl2 .mbr-section-title {
  color: #ffffff;
}
.cid-sveRyIZpl2 .mbr-text {
  color: #ffffff;
  font-weight: 500;
}
.cid-sveRyIZpl2 .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-left: 0.6rem;
}
.cid-sveRyIZpl2 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #04836a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sveRyIZpl2 .mbr-section-btn {
  display: flex;
}
.cid-sveRyIZpl2 .mbr-section-btn .btn {
  font-weight: 700 !important;
}
.cid-sveRyIZpl2 .video-wrap {
  cursor: pointer;
  margin-left: 30px;
}
.cid-sveRyIZpl2 .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sveRyIZpl2 .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
  color: #279e64;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-sveRyIZpl2 .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sveRyIZpl2 .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sveRyIZpl2 .video-wrap .icon-wrap .line-video-1,
.cid-sveRyIZpl2 .video-wrap .icon-wrap .line-video-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: squares 2.4s linear 0s infinite;
  -webkit-animation: squares 2.4s linear 0s infinite;
  -ms-animation: squares 2.4s linear 0s infinite;
  -o-animation: squares 2.4s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}
.cid-sveRyIZpl2 .video-wrap .icon-wrap .line-video-2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.cid-sveRyIZpl2 .video-wrap .mbr-text {
  color: #ffffff;
  font-weight: 700;
}
.cid-sveRyIZpl2 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sveRyIZpl2 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sveRyIZpl2 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sveRyIZpl2 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #121d84;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sveRyIZpl2 a.close:hover {
  color: #121d84;
}
@media (max-width: 991px) {
  .cid-sveRyIZpl2 .separator,
  .cid-sveRyIZpl2 .sep-holder,
  .cid-sveRyIZpl2 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sveRyIZpl2 .buttons-wrap {
    flex-direction: column;
  }
  .cid-sveRyIZpl2 .buttons-wrap .mbr-section-btn {
    justify-content: center;
  }
  .cid-sveRyIZpl2 .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 25px;
    justify-content: center;
  }
}
@-webkit-keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.cid-sveRyIZpl2 .skew {
  background-image: url("../../../assets/images/bg-skew.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -140px;
  margin-bottom: 0;
  z-index: 8;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
}
.cid-sveRyIZpl2 .skew .inner {
  min-height: 150px;
  align-items: center;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-sveRyJDgOh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sveUAzZyV7 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #e7e7e7;
}
.cid-sveUAzZyV7 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sveUAzZyV7 .icon-box {
  background: #10806a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sveUAzZyV7 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sveUAzZyV7 .card {
    margin-bottom: 2rem;
  }
  .cid-sveUAzZyV7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sveZ79QBi6 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sveZ79QBi6 .line {
  background-color: #10806a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svkEnRu0B9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-svkEnRu0B9 h4 {
  margin-bottom: 0;
}
.cid-svkEnRu0B9 p {
  color: #767676;
}
.cid-svkEnRu0B9 .cardcenter {
  background-color: #10806a;
  transition: all 0.3s;
  border-radius: 10px;
  padding: 1.5rem;
  height: fit-content;
  position: relative;
}
.cid-svkEnRu0B9 .cardcenter:hover {
  background-color: #106dd2;
}
.cid-svkEnRu0B9 .ico2 {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 8rem;
  opacity: 0.3;
}
.cid-svkEnRu0B9 .cards {
  height: fit-content;
  margin-top: -1.5rem;
}
.cid-svkEnRu0B9 .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 0.25rem!important;
  box-shadow: none!important;
}
.cid-svkEnRu0B9 .btn[class*="-outline"] span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-svkEnRu0B9 .btn[class*="-outline"]:hover span {
  padding-left: 10px;
}
.cid-svkEnRu0B9 .btn[class*="-outline"]:hover {
  background-color: transparent!important;
  color: #04836a !important;
  box-shadow: none!important;
}
.cid-svkEnRu0B9 .btn[class*="-outline"]:active,
.cid-svkEnRu0B9 .btn[class*="-outline"]:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-svkEnRu0B9 .card-box {
  padding-top: 2rem;
}
.cid-svkEnRu0B9 .card-wrapper {
  height: 100%;
}
.cid-svkEnRu0B9 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-svkEnRu0B9 img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-svkEnRu0B9 .card-title {
  color: #10806a;
}
.cid-svkEnRu0B9 .main-title {
  color: #232323;
}
.cid-svkEnRu0B9 .text {
  color: #ffffff;
}
.cid-svkEnRu0B9 .card-subtitle {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-svkEnRu0B9 .cards {
    margin-top: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-svkEnRu0B9 .link {
    margin: auto;
  }
}
.cid-svkBHqLH50 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #121d84;
}
.cid-svkBHqLH50 .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svkBHqLH50 .mbr-text {
  color: #ffffff;
}
.cid-svf0YYkFUh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-svf0YYkFUh .card-icon {
  font-size: 72px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-svf0YYkFUh .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-svf0YYkFUh .card {
  margin: 0!important;
  padding: 0!important;
  border-radius: 0;
}
.cid-svf0YYkFUh p {
  font-weight: 400;
}
.cid-svf0YYkFUh .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
  transition: all 0.3s;
}
.cid-svf0YYkFUh .link-ico:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: gray!important;
}
.cid-svf0YYkFUh .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-svf0YYkFUh .bg1 {
  background: #04836a;
}
.cid-svf0YYkFUh .bg2 {
  background: #e6c63b;
}
.cid-svf0YYkFUh .bg3 {
  background: #121d84;
}
.cid-svf0YYkFUh .bg4 {
  background: #10806a;
}
.cid-svf0YYkFUh .card-wrapper {
  padding: 4rem 2rem;
  transition: background 0.3s;
}
.cid-svf0YYkFUh .card-wrapper:hover .link-ico {
  background-color: #ffffff;
  border-color: #ffffff;
  color: gray!important;
}
.cid-svf0YYkFUh .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.cid-svf0YYkFUh .card-title,
.cid-svf0YYkFUh .card-ico,
.cid-svf0YYkFUh .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-svf0YYkFUh .mbr-text,
.cid-svf0YYkFUh .card-link {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-svf0YYkFUh .row {
    padding: 0 1rem;
  }
}
.cid-sveRyKHm4h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sveRyKHm4h nav.navbar {
  position: fixed;
}
.cid-sveRyKHm4h .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-sveRyKHm4h .dropdown-menu {
  padding: 0;
}
.cid-sveRyKHm4h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sveRyKHm4h .dropdown-item:hover,
.cid-sveRyKHm4h .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-sveRyKHm4h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sveRyKHm4h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sveRyKHm4h .nav-link {
  position: relative;
}
.cid-sveRyKHm4h .container {
  display: flex;
  margin: auto;
}
.cid-sveRyKHm4h .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sveRyKHm4h .navbar-caption {
  padding-right: 4rem;
}
.cid-sveRyKHm4h .dropdown-menu,
.cid-sveRyKHm4h .navbar.opened {
  background: #ffffff !important;
}
.cid-sveRyKHm4h .nav-item:focus,
.cid-sveRyKHm4h .nav-link:focus {
  outline: none;
}
.cid-sveRyKHm4h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sveRyKHm4h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sveRyKHm4h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sveRyKHm4h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sveRyKHm4h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sveRyKHm4h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sveRyKHm4h .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sveRyKHm4h .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sveRyKHm4h .navbar.opened {
  transition: all .3s;
}
.cid-sveRyKHm4h .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sveRyKHm4h .navbar .navbar-logo img {
  width: auto;
}
.cid-sveRyKHm4h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sveRyKHm4h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sveRyKHm4h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sveRyKHm4h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sveRyKHm4h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sveRyKHm4h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sveRyKHm4h .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sveRyKHm4h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sveRyKHm4h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sveRyKHm4h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sveRyKHm4h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sveRyKHm4h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sveRyKHm4h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sveRyKHm4h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sveRyKHm4h .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sveRyKHm4h .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sveRyKHm4h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sveRyKHm4h .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sveRyKHm4h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sveRyKHm4h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sveRyKHm4h .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sveRyKHm4h .navbar.navbar-short {
  min-height: 60px;
}
.cid-sveRyKHm4h .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sveRyKHm4h .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sveRyKHm4h .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sveRyKHm4h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sveRyKHm4h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sveRyKHm4h .dropdown-item.active,
.cid-sveRyKHm4h .dropdown-item:active {
  background-color: transparent;
}
.cid-sveRyKHm4h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sveRyKHm4h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sveRyKHm4h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sveRyKHm4h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sveRyKHm4h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sveRyKHm4h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sveRyKHm4h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sveRyKHm4h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sveRyKHm4h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sveRyKHm4h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sveRyKHm4h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sveRyKHm4h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sveRyKHm4h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sveRyKHm4h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sveRyKHm4h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sveRyKHm4h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sveRyKHm4h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sveRyKHm4h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sveRyKHm4h .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sveRyKHm4h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sveRyKHm4h .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-sveRyKHm4h .navbar {
    height: 77px;
  }
  .cid-sveRyKHm4h .navbar.opened {
    height: auto;
  }
  .cid-sveRyKHm4h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sveRyLziRT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-sveRyLziRT .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sveRyLziRT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sveRyLziRT .row {
    text-align: center;
  }
  .cid-sveRyLziRT .row > div {
    margin: auto;
  }
  .cid-sveRyLziRT .social-row {
    justify-content: center;
  }
}
.cid-sveRyLziRT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sveRyLziRT .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sveRyLziRT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sveRyLziRT .list {
    margin-bottom: 0rem;
  }
}
.cid-sveRyLziRT .mbr-text {
  color: #bbbbbb;
}
.cid-sveRyLziRT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sveRyLziRT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sveRyLziRT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sveRyLziRT .mbr-section-subtitle {
  text-align: center;
}
.cid-svjGHYOyeD {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/desktop-table-office-2000x1381.jpg");
}
.cid-svjGHYOyeD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-svjGHYOyeD .mbr-section-title {
  color: #ffffff;
}
.cid-svjGHYOyeD .mbr-text {
  color: #ffffff;
  font-weight: 500;
}
.cid-svjGHYOyeD .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-left: 0.6rem;
}
.cid-svjGHYOyeD .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #04836a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-svjGHYOyeD .mbr-section-btn {
  display: flex;
}
.cid-svjGHYOyeD .mbr-section-btn .btn {
  font-weight: 700 !important;
}
.cid-svjGHYOyeD .video-wrap {
  cursor: pointer;
  margin-left: 30px;
}
.cid-svjGHYOyeD .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-svjGHYOyeD .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
  color: #279e64;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-svjGHYOyeD .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-svjGHYOyeD .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-svjGHYOyeD .video-wrap .icon-wrap .line-video-1,
.cid-svjGHYOyeD .video-wrap .icon-wrap .line-video-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: squares 2.4s linear 0s infinite;
  -webkit-animation: squares 2.4s linear 0s infinite;
  -ms-animation: squares 2.4s linear 0s infinite;
  -o-animation: squares 2.4s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}
.cid-svjGHYOyeD .video-wrap .icon-wrap .line-video-2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.cid-svjGHYOyeD .video-wrap .mbr-text {
  color: #ffffff;
  font-weight: 700;
}
.cid-svjGHYOyeD .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-svjGHYOyeD .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-svjGHYOyeD .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-svjGHYOyeD a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #121d84;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-svjGHYOyeD a.close:hover {
  color: #121d84;
}
@media (max-width: 991px) {
  .cid-svjGHYOyeD .separator,
  .cid-svjGHYOyeD .sep-holder,
  .cid-svjGHYOyeD .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-svjGHYOyeD .buttons-wrap {
    flex-direction: column;
  }
  .cid-svjGHYOyeD .buttons-wrap .mbr-section-btn {
    justify-content: center;
  }
  .cid-svjGHYOyeD .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 25px;
    justify-content: center;
  }
}
@-webkit-keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.cid-svjGHYOyeD .skew {
  background-image: url("../../../assets/images/bg-skew.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -140px;
  margin-bottom: 0;
  z-index: 8;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
}
.cid-svjGHYOyeD .skew .inner {
  min-height: 150px;
  align-items: center;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-svjGHZqaYO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-svjGHZqaYO .mbr-section-title {
  color: #10806a;
}
.cid-svjGHZEm3w {
  padding-top: 30px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background4-1.jpg");
}
.cid-svjGHZEm3w .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-svjGHZEm3w .mbr-section-title {
  margin: 0;
}
.cid-svjGHZEm3w .mbr-section-subtitle {
  color: #000000;
}
.cid-svjGHZEm3w .card-img {
  text-align: inherit;
}
.cid-svjGHZEm3w .card-img span {
  background: linear-gradient(90deg, #10806a, #10806a);
}
.cid-svjGHZEm3w .mbr-text {
  color: #8d97ad;
}
.cid-svjGHZEm3w .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-svjGHZEm3w .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-svjGHZEm3w .mbr-card-title {
  color: #10806a;
}
.cid-svjLnELKSR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-svjLnELKSR .mbr-text {
  color: #767676;
}
.cid-svjLnELKSR .mbr-section-subtitle {
  color: #767676;
}
.cid-svjLnELKSR .title .num {
  width: 100%;
  display: block;
}
.cid-svjLnELKSR .title .card-title {
  z-index: 1;
}
.cid-svjLnELKSR .num {
  color: #10806a;
}
@media (max-width: 767px) {
  .cid-svjLnELKSR * {
    text-align: center !important;
  }
  .cid-svjLnELKSR .content-column {
    margin-bottom: 2rem;
  }
}
.cid-svjLnELKSR .mbr-section-title,
.cid-svjLnELKSR .card-box {
  text-align: center;
}
.cid-svjOlwQli4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #10806a;
}
.cid-svjOlwQli4 .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #10806a, #04836a);
}
.cid-svjOlwQli4 .btn-col {
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 767px) {
  .cid-svjOlwQli4 .btn-col {
    justify-content: center;
  }
}
.cid-svjOlwQli4 .mbr-text,
.cid-svjOlwQli4 .mbr-section-btn {
  color: #ffffff;
}
.cid-svjOlwQli4 p {
  margin: 0;
}
.cid-svjGI0IxXe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-svjGI0IxXe nav.navbar {
  position: fixed;
}
.cid-svjGI0IxXe .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-svjGI0IxXe .dropdown-menu {
  padding: 0;
}
.cid-svjGI0IxXe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-svjGI0IxXe .dropdown-item:hover,
.cid-svjGI0IxXe .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-svjGI0IxXe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-svjGI0IxXe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-svjGI0IxXe .nav-link {
  position: relative;
}
.cid-svjGI0IxXe .container {
  display: flex;
  margin: auto;
}
.cid-svjGI0IxXe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-svjGI0IxXe .navbar-caption {
  padding-right: 4rem;
}
.cid-svjGI0IxXe .dropdown-menu,
.cid-svjGI0IxXe .navbar.opened {
  background: #ffffff !important;
}
.cid-svjGI0IxXe .nav-item:focus,
.cid-svjGI0IxXe .nav-link:focus {
  outline: none;
}
.cid-svjGI0IxXe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-svjGI0IxXe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svjGI0IxXe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svjGI0IxXe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-svjGI0IxXe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-svjGI0IxXe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-svjGI0IxXe .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-svjGI0IxXe .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-svjGI0IxXe .navbar.opened {
  transition: all .3s;
}
.cid-svjGI0IxXe .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-svjGI0IxXe .navbar .navbar-logo img {
  width: auto;
}
.cid-svjGI0IxXe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-svjGI0IxXe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-svjGI0IxXe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-svjGI0IxXe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-svjGI0IxXe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-svjGI0IxXe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-svjGI0IxXe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-svjGI0IxXe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-svjGI0IxXe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-svjGI0IxXe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-svjGI0IxXe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svjGI0IxXe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svjGI0IxXe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svjGI0IxXe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svjGI0IxXe .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-svjGI0IxXe .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-svjGI0IxXe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svjGI0IxXe .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svjGI0IxXe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-svjGI0IxXe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-svjGI0IxXe .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-svjGI0IxXe .navbar.navbar-short {
  min-height: 60px;
}
.cid-svjGI0IxXe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-svjGI0IxXe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svjGI0IxXe .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svjGI0IxXe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svjGI0IxXe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svjGI0IxXe .dropdown-item.active,
.cid-svjGI0IxXe .dropdown-item:active {
  background-color: transparent;
}
.cid-svjGI0IxXe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svjGI0IxXe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svjGI0IxXe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svjGI0IxXe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-svjGI0IxXe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svjGI0IxXe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svjGI0IxXe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-svjGI0IxXe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-svjGI0IxXe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-svjGI0IxXe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-svjGI0IxXe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-svjGI0IxXe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-svjGI0IxXe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-svjGI0IxXe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-svjGI0IxXe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-svjGI0IxXe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-svjGI0IxXe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-svjGI0IxXe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-svjGI0IxXe .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-svjGI0IxXe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svjGI0IxXe .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-svjGI0IxXe .navbar {
    height: 77px;
  }
  .cid-svjGI0IxXe .navbar.opened {
    height: auto;
  }
  .cid-svjGI0IxXe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svjGI147aE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-svjGI147aE .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-svjGI147aE .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-svjGI147aE .row {
    text-align: center;
  }
  .cid-svjGI147aE .row > div {
    margin: auto;
  }
  .cid-svjGI147aE .social-row {
    justify-content: center;
  }
}
.cid-svjGI147aE .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-svjGI147aE .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-svjGI147aE .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-svjGI147aE .list {
    margin-bottom: 0rem;
  }
}
.cid-svjGI147aE .mbr-text {
  color: #bbbbbb;
}
.cid-svjGI147aE .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-svjGI147aE .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-svjGI147aE div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-svjGI147aE .mbr-section-subtitle {
  text-align: center;
}
.cid-sFpijhLh92 {
  background-image: url("../../../assets/images/banner-8.gif");
}
.cid-sFpijhLh92 .link-align {
  width: 100%;
}
.cid-sFpijhLh92 .link-wrap {
  display: inline-block;
}
.cid-sFpijhLh92 .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-sFpijhLh92 .wrap {
  transform: matrix3d(0.99863, -0.052336, 0, 0, 0.052336, 0.99863, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
.cid-sFpijhLh92 .wrap .mask {
  background: #10806a;
  background: linear-gradient(#10806a 0%, #55af9d 69%, #9cdfd2 100%);
  display: flex;
  z-index: 8;
  visibility: inherit;
  transition: none 0s ease 0s;
  text-align: inherit;
  line-height: 1.05;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 17px;
  white-space: nowrap;
  min-height: 88px;
  width: 100%;
  max-height: 100px;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, -0.275637, 0.961262, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
@media (max-width: 992px) {
  .cid-sFpijhLh92 .wrap .mask {
    background: none;
    min-height: auto;
  }
}
.cid-sFpijhLh92 .wrap .mbr-section-subtitle {
  line-height: 1;
}
.cid-sFpijhLh92 .wrap .price {
  color: #121d84;
}
@media (min-width: 992px) {
  .cid-sFpijhLh92 .wrap .mbr-section-title.display-1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .cid-sFpijhLh92 .mbr-text {
    text-align: right;
  }
}
.cid-sFpijhLh92 .wrap .mask .wrap-text .price {
  color: #bbbbbb;
}
.cid-sFpijifcvz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e6ecf2;
}
.cid-sFpijifcvz .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-sFpijifcvz .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sFpijifcvz .mbr-section-title {
  color: #130947;
  font-weight: 700;
  text-align: center;
}
.cid-sFpijifcvz .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sFpijifcvz .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
}
.cid-sFpijifcvz .timelines-container {
  margin-top: 60px;
}
.cid-sFpijifcvz .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-sFpijifcvz .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-sFpijifcvz .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-sFpijifcvz .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-sFpijifcvz .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #10806a;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-sFpijifcvz .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-sFpijifcvz .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-sFpijifcvz .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-sFpijifcvz .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-sFpijifcvz .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-sFpijifcvz .container-fluid {
  padding: 0 2rem;
}
.cid-sFpijifcvz .separline:before,
.cid-sFpijifcvz .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #bbbbbb;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-sFpijifcvz .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #bbbbbb;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-sFpijifcvz .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFpijifcvz .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-sFpijifcvz .separline:before,
  .cid-sFpijifcvz .first-separline:before {
    left: -10px !important;
  }
  .cid-sFpijifcvz .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-sFpijifcvz .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-sFpijifcvz .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-sFpijifcvz .time-line-date-content p {
    float: left !important;
  }
  .cid-sFpijifcvz .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-sFpijifcvz .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-sFpijifcvz .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-sFpijjiw2g {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFpijjiw2g nav.navbar {
  position: fixed;
}
.cid-sFpijjiw2g .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-sFpijjiw2g .dropdown-menu {
  padding: 0;
}
.cid-sFpijjiw2g .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFpijjiw2g .dropdown-item:hover,
.cid-sFpijjiw2g .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-sFpijjiw2g .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sFpijjiw2g .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFpijjiw2g .nav-link {
  position: relative;
}
.cid-sFpijjiw2g .container {
  display: flex;
  margin: auto;
}
.cid-sFpijjiw2g .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sFpijjiw2g .navbar-caption {
  padding-right: 4rem;
}
.cid-sFpijjiw2g .dropdown-menu,
.cid-sFpijjiw2g .navbar.opened {
  background: #ffffff !important;
}
.cid-sFpijjiw2g .nav-item:focus,
.cid-sFpijjiw2g .nav-link:focus {
  outline: none;
}
.cid-sFpijjiw2g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFpijjiw2g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFpijjiw2g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sFpijjiw2g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFpijjiw2g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFpijjiw2g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFpijjiw2g .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sFpijjiw2g .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFpijjiw2g .navbar.opened {
  transition: all .3s;
}
.cid-sFpijjiw2g .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sFpijjiw2g .navbar .navbar-logo img {
  width: auto;
}
.cid-sFpijjiw2g .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFpijjiw2g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFpijjiw2g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFpijjiw2g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sFpijjiw2g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFpijjiw2g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFpijjiw2g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sFpijjiw2g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFpijjiw2g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sFpijjiw2g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sFpijjiw2g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFpijjiw2g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFpijjiw2g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFpijjiw2g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFpijjiw2g .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sFpijjiw2g .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sFpijjiw2g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFpijjiw2g .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFpijjiw2g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFpijjiw2g .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFpijjiw2g .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sFpijjiw2g .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFpijjiw2g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sFpijjiw2g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sFpijjiw2g .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFpijjiw2g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFpijjiw2g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFpijjiw2g .dropdown-item.active,
.cid-sFpijjiw2g .dropdown-item:active {
  background-color: transparent;
}
.cid-sFpijjiw2g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFpijjiw2g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFpijjiw2g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFpijjiw2g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFpijjiw2g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFpijjiw2g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFpijjiw2g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFpijjiw2g .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFpijjiw2g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sFpijjiw2g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sFpijjiw2g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sFpijjiw2g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sFpijjiw2g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sFpijjiw2g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sFpijjiw2g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFpijjiw2g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sFpijjiw2g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sFpijjiw2g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFpijjiw2g .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sFpijjiw2g a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFpijjiw2g .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-sFpijjiw2g .navbar {
    height: 77px;
  }
  .cid-sFpijjiw2g .navbar.opened {
    height: auto;
  }
  .cid-sFpijjiw2g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFpijjH6dx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-sFpijjH6dx .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sFpijjH6dx .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sFpijjH6dx .row {
    text-align: center;
  }
  .cid-sFpijjH6dx .row > div {
    margin: auto;
  }
  .cid-sFpijjH6dx .social-row {
    justify-content: center;
  }
}
.cid-sFpijjH6dx .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sFpijjH6dx .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sFpijjH6dx .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFpijjH6dx .list {
    margin-bottom: 0rem;
  }
}
.cid-sFpijjH6dx .mbr-text {
  color: #bbbbbb;
}
.cid-sFpijjH6dx .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sFpijjH6dx .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sFpijjH6dx div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sFpijjH6dx .mbr-section-subtitle {
  text-align: center;
}
.cid-sVg3LjdJEA {
  background-image: url("../../../assets/images/banner-8.gif");
}
.cid-sVg3LjdJEA .link-align {
  width: 100%;
}
.cid-sVg3LjdJEA .link-wrap {
  display: inline-block;
}
.cid-sVg3LjdJEA .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-sVg3LjdJEA .wrap {
  transform: matrix3d(0.99863, -0.052336, 0, 0, 0.052336, 0.99863, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
.cid-sVg3LjdJEA .wrap .mask {
  background: #10806a;
  background: linear-gradient(#10806a 0%, #55af9d 69%, #9cdfd2 100%);
  display: flex;
  z-index: 8;
  visibility: inherit;
  transition: none 0s ease 0s;
  text-align: inherit;
  line-height: 1.05;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 17px;
  white-space: nowrap;
  min-height: 88px;
  width: 100%;
  max-height: 100px;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, -0.275637, 0.961262, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
@media (max-width: 992px) {
  .cid-sVg3LjdJEA .wrap .mask {
    background: none;
    min-height: auto;
  }
}
.cid-sVg3LjdJEA .wrap .mbr-section-subtitle {
  line-height: 1;
}
.cid-sVg3LjdJEA .wrap .price {
  color: #121d84;
}
@media (min-width: 992px) {
  .cid-sVg3LjdJEA .wrap .mbr-section-title.display-1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .cid-sVg3LjdJEA .mbr-text {
    text-align: right;
  }
}
.cid-sVg3LjdJEA .wrap .mask .wrap-text .price {
  color: #bbbbbb;
}
.cid-sVg3LkwJsT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVg3LkwJsT nav.navbar {
  position: fixed;
}
.cid-sVg3LkwJsT .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-sVg3LkwJsT .dropdown-menu {
  padding: 0;
}
.cid-sVg3LkwJsT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVg3LkwJsT .dropdown-item:hover,
.cid-sVg3LkwJsT .dropdown-item:focus {
  background: #04836a !important;
  color: white !important;
}
.cid-sVg3LkwJsT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sVg3LkwJsT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVg3LkwJsT .nav-link {
  position: relative;
}
.cid-sVg3LkwJsT .container {
  display: flex;
  margin: auto;
}
.cid-sVg3LkwJsT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sVg3LkwJsT .navbar-caption {
  padding-right: 4rem;
}
.cid-sVg3LkwJsT .dropdown-menu,
.cid-sVg3LkwJsT .navbar.opened {
  background: #ffffff !important;
}
.cid-sVg3LkwJsT .nav-item:focus,
.cid-sVg3LkwJsT .nav-link:focus {
  outline: none;
}
.cid-sVg3LkwJsT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVg3LkwJsT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVg3LkwJsT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sVg3LkwJsT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVg3LkwJsT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVg3LkwJsT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVg3LkwJsT .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sVg3LkwJsT .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVg3LkwJsT .navbar.opened {
  transition: all .3s;
}
.cid-sVg3LkwJsT .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sVg3LkwJsT .navbar .navbar-logo img {
  width: auto;
}
.cid-sVg3LkwJsT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVg3LkwJsT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVg3LkwJsT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVg3LkwJsT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-sVg3LkwJsT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVg3LkwJsT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVg3LkwJsT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sVg3LkwJsT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVg3LkwJsT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sVg3LkwJsT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sVg3LkwJsT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVg3LkwJsT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVg3LkwJsT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVg3LkwJsT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVg3LkwJsT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sVg3LkwJsT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sVg3LkwJsT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVg3LkwJsT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVg3LkwJsT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVg3LkwJsT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVg3LkwJsT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sVg3LkwJsT .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVg3LkwJsT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sVg3LkwJsT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sVg3LkwJsT .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sVg3LkwJsT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVg3LkwJsT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVg3LkwJsT .dropdown-item.active,
.cid-sVg3LkwJsT .dropdown-item:active {
  background-color: transparent;
}
.cid-sVg3LkwJsT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVg3LkwJsT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVg3LkwJsT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVg3LkwJsT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sVg3LkwJsT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVg3LkwJsT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVg3LkwJsT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVg3LkwJsT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVg3LkwJsT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sVg3LkwJsT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sVg3LkwJsT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sVg3LkwJsT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sVg3LkwJsT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sVg3LkwJsT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sVg3LkwJsT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sVg3LkwJsT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sVg3LkwJsT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sVg3LkwJsT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sVg3LkwJsT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sVg3LkwJsT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVg3LkwJsT .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-sVg3LkwJsT .navbar {
    height: 77px;
  }
  .cid-sVg3LkwJsT .navbar.opened {
    height: auto;
  }
  .cid-sVg3LkwJsT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sVg3X8aQjK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e6ecf2;
}
.cid-sVg3X8aQjK .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-sVg3X8aQjK .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sVg3X8aQjK .mbr-section-title {
  color: #130947;
  font-weight: 700;
  text-align: center;
}
.cid-sVg3X8aQjK .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sVg3X8aQjK .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
}
.cid-sVg3X8aQjK .timelines-container {
  margin-top: 60px;
}
.cid-sVg3X8aQjK .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-sVg3X8aQjK .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-sVg3X8aQjK .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-sVg3X8aQjK .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-sVg3X8aQjK .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #10806a;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-sVg3X8aQjK .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-sVg3X8aQjK .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-sVg3X8aQjK .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-sVg3X8aQjK .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-sVg3X8aQjK .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-sVg3X8aQjK .container-fluid {
  padding: 0 2rem;
}
.cid-sVg3X8aQjK .separline:before,
.cid-sVg3X8aQjK .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #bbbbbb;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-sVg3X8aQjK .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #bbbbbb;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-sVg3X8aQjK .container-fluid {
    padding: 0 1rem;
  }
  .cid-sVg3X8aQjK .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-sVg3X8aQjK .separline:before,
  .cid-sVg3X8aQjK .first-separline:before {
    left: -10px !important;
  }
  .cid-sVg3X8aQjK .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-sVg3X8aQjK .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-sVg3X8aQjK .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-sVg3X8aQjK .time-line-date-content p {
    float: left !important;
  }
  .cid-sVg3X8aQjK .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-sVg3X8aQjK .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-sVg3X8aQjK .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-sVg3LkV4Vk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-sVg3LkV4Vk .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sVg3LkV4Vk .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sVg3LkV4Vk .row {
    text-align: center;
  }
  .cid-sVg3LkV4Vk .row > div {
    margin: auto;
  }
  .cid-sVg3LkV4Vk .social-row {
    justify-content: center;
  }
}
.cid-sVg3LkV4Vk .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sVg3LkV4Vk .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sVg3LkV4Vk .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sVg3LkV4Vk .list {
    margin-bottom: 0rem;
  }
}
.cid-sVg3LkV4Vk .mbr-text {
  color: #bbbbbb;
}
.cid-sVg3LkV4Vk .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sVg3LkV4Vk .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sVg3LkV4Vk div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sVg3LkV4Vk .mbr-section-subtitle {
  text-align: center;
}
