body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((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.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #00aab4 !important;
}
.bg-success {
  background-color: #0a5028 !important;
}
.bg-info {
  background-color: #0046a0 !important;
}
.bg-warning {
  background-color: #8c0a00 !important;
}
.bg-danger {
  background-color: #aa006e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #00aab4 !important;
  border-color: #00aab4 !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: #00585d !important;
  border-color: #00585d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #00585d !important;
  border-color: #00585d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ce9700 !important;
  border-color: #ce9700 !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: #775700 !important;
  border-color: #775700 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #775700 !important;
  border-color: #775700 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0046a0 !important;
  border-color: #0046a0 !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: #002049 !important;
  border-color: #002049 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #002049 !important;
  border-color: #002049 !important;
}
.btn-success,
.btn-success:active {
  background-color: #0a5028 !important;
  border-color: #0a5028 !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: #000301 !important;
  border-color: #000301 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000301 !important;
  border-color: #000301 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #8c0a00 !important;
  border-color: #8c0a00 !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: #350400 !important;
  border-color: #350400 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #350400 !important;
  border-color: #350400 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #aa006e !important;
  border-color: #aa006e !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: #530036 !important;
  border-color: #530036 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #530036 !important;
  border-color: #530036 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00aab4;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #00585d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #00aab4 !important;
  border-color: #00aab4 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ce9700;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #775700 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ce9700 !important;
  border-color: #ce9700 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0046a0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #002049 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0046a0 !important;
  border-color: #0046a0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0a5028;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000301 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0a5028 !important;
  border-color: #0a5028 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8c0a00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #350400 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #8c0a00 !important;
  border-color: #8c0a00 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #aa006e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #530036 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #aa006e !important;
  border-color: #aa006e !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #00aab4 !important;
}
.text-secondary {
  color: #ce9700 !important;
}
.text-success {
  color: #0a5028 !important;
}
.text-info {
  color: #0046a0 !important;
}
.text-warning {
  color: #8c0a00 !important;
}
.text-danger {
  color: #aa006e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #004a4e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #684c00 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00193a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #260300 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #44002c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #00aab4;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0046a0;
}
.alert-warning {
  background-color: #8c0a00;
}
.alert-danger {
  background-color: #aa006e;
}
.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: #00aab4;
  border-color: #00aab4;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #00aab4;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #35f4ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #56ea95;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #2182ff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ff1e0d;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ff2ab4;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #00aab4 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #00aab4;
}
/* 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: #00aab4;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #00aab4;
}
.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: #00aab4;
  border-bottom-color: #00aab4;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #00aab4 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ce9700 !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='%2300aab4' %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-sz5nXGTrTj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz5nXGTrTj nav.navbar {
  position: fixed;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz5nXGTrTj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz5nXGTrTj .dropdown-item:hover,
.cid-sz5nXGTrTj .dropdown-item:focus {
  background: #00aab4 !important;
  color: white !important;
}
.cid-sz5nXGTrTj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz5nXGTrTj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz5nXGTrTj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz5nXGTrTj .nav-link {
  position: relative;
}
.cid-sz5nXGTrTj .container {
  display: flex;
  margin: auto;
}
.cid-sz5nXGTrTj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sz5nXGTrTj .dropdown-menu,
.cid-sz5nXGTrTj .navbar.opened {
  background: #78be14 !important;
}
.cid-sz5nXGTrTj .nav-item:focus,
.cid-sz5nXGTrTj .nav-link:focus {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz5nXGTrTj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz5nXGTrTj .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.opened {
  transition: all .3s;
}
.cid-sz5nXGTrTj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sz5nXGTrTj .navbar .navbar-logo img {
  width: auto;
}
.cid-sz5nXGTrTj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar.collapsed {
  justify-content: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz5nXGTrTj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz5nXGTrTj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz5nXGTrTj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sz5nXGTrTj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz5nXGTrTj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz5nXGTrTj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz5nXGTrTj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz5nXGTrTj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz5nXGTrTj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz5nXGTrTj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sz5nXGTrTj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz5nXGTrTj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown-item.active,
.cid-sz5nXGTrTj .dropdown-item:active {
  background-color: transparent;
}
.cid-sz5nXGTrTj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz5nXGTrTj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz5nXGTrTj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz5nXGTrTj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz5nXGTrTj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #78be14;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz5nXGTrTj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .navbar {
    height: 70px;
  }
  .cid-sz5nXGTrTj .navbar.opened {
    height: auto;
  }
  .cid-sz5nXGTrTj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s48MCQYojq {
  background-image: url("../../../assets/images/avc-20230922-17-34-15-52a7737.webp");
}
.cid-s48MCQYojq .mbr-section-title {
  text-align: center;
  color: #78be14;
}
.cid-s48MCQYojq .mbr-text,
.cid-s48MCQYojq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-s48MCQYojq .mbr-section-title,
  .cid-s48MCQYojq .mbr-section-btn,
  .cid-s48MCQYojq .mbr-text {
    text-align: center;
  }
}
.cid-sxRpvS2PrL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxRpvS2PrL img,
.cid-sxRpvS2PrL .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-sxRpvS2PrL .item:focus,
.cid-sxRpvS2PrL span:focus {
  outline: none;
}
.cid-sxRpvS2PrL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sxRpvS2PrL .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sxRpvS2PrL .item {
  padding: 0;
  margin: 0;
}
.cid-sxRpvS2PrL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sxRpvS2PrL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sxRpvS2PrL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sxRpvS2PrL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sxRpvS2PrL .mbr-section-title {
  color: #232323;
}
.cid-sxRstkSfiB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxRstkSfiB .video-wrapper iframe {
  width: 100%;
}
.cid-sxRstkSfiB .mbr-section-title,
.cid-sxRstkSfiB .mbr-section-subtitle,
.cid-sxRstkSfiB .mbr-text {
  text-align: center;
}
.cid-sxRuRMIgSm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sxRuRMIgSm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxRuRMIgSm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxRuRMIgSm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxRuRMIgSm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxRuRMIgSm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxRuRMIgSm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxRuRMIgSm .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxRuRMIgSm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxRuRMIgSm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxRuRMIgSm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxRuRMIgSm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxRuRMIgSm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxRuRMIgSm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxRuRMIgSm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz5nXGTrTj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz5nXGTrTj nav.navbar {
  position: fixed;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz5nXGTrTj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz5nXGTrTj .dropdown-item:hover,
.cid-sz5nXGTrTj .dropdown-item:focus {
  background: #00aab4 !important;
  color: white !important;
}
.cid-sz5nXGTrTj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz5nXGTrTj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz5nXGTrTj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz5nXGTrTj .nav-link {
  position: relative;
}
.cid-sz5nXGTrTj .container {
  display: flex;
  margin: auto;
}
.cid-sz5nXGTrTj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sz5nXGTrTj .dropdown-menu,
.cid-sz5nXGTrTj .navbar.opened {
  background: #78be14 !important;
}
.cid-sz5nXGTrTj .nav-item:focus,
.cid-sz5nXGTrTj .nav-link:focus {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz5nXGTrTj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz5nXGTrTj .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.opened {
  transition: all .3s;
}
.cid-sz5nXGTrTj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sz5nXGTrTj .navbar .navbar-logo img {
  width: auto;
}
.cid-sz5nXGTrTj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar.collapsed {
  justify-content: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz5nXGTrTj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz5nXGTrTj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz5nXGTrTj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sz5nXGTrTj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz5nXGTrTj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz5nXGTrTj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz5nXGTrTj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz5nXGTrTj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz5nXGTrTj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz5nXGTrTj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sz5nXGTrTj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz5nXGTrTj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown-item.active,
.cid-sz5nXGTrTj .dropdown-item:active {
  background-color: transparent;
}
.cid-sz5nXGTrTj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz5nXGTrTj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz5nXGTrTj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz5nXGTrTj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz5nXGTrTj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #78be14;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz5nXGTrTj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .navbar {
    height: 70px;
  }
  .cid-sz5nXGTrTj .navbar.opened {
    height: auto;
  }
  .cid-sz5nXGTrTj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxRwZFCzOr {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/78956735-10156934359943763-6134789860923277312-o-1200x701.jpeg");
}
.cid-sxRwZFCzOr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sxRwZFCzOr .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sxRwZFCzOr .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sxRwZFCzOr .mbr-section-title {
  color: #ffffff;
}
.cid-sxRwZFCzOr .mbr-text,
.cid-sxRwZFCzOr .mbr-section-btn,
.cid-sxRwZFCzOr .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-sxRDMoTmu1 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxRDMoTmu1 .timeline-element {
  position: relative;
}
.cid-sxRDMoTmu1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxRDMoTmu1 .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #78be14;
  top: 30px;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sxRDMoTmu1 .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRDMoTmu1 .iconBackground {
    left: 50%;
  }
}
.cid-sxRDMoTmu1 .row:after {
  content: "";
  position: absolute;
  background-color: #78be14;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-sxRDMoTmu1 .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRDMoTmu1 .row:after {
    left: 50%;
  }
}
.cid-sxRDMoTmu1 .row:nth-child(odd) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-sxRDMoTmu1 .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-sxRDMoTmu1 .timeline-date-wrapper,
  .cid-sxRDMoTmu1 .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sxRDMoTmu1 .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sxRDMoTmu1 .timeline-date-wrapper,
  .cid-sxRDMoTmu1 .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sxRDMoTmu1 .timeline-date-wrapper,
  .cid-sxRDMoTmu1 .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-sxRDMoTmu1 .mbr-section-subtitle {
  color: #353535;
}
.cid-sxRDMoTmu1 .mbr-timeline-title {
  color: #ce9700;
}
.cid-sxRFejEEfq {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/avc-8495-2000x1333.webp");
}
.cid-sxRFejEEfq .mbr-text,
.cid-sxRFejEEfq .mbr-section-btn {
  color: #232323;
}
.cid-sxRFejEEfq .card-title,
.cid-sxRFejEEfq .card-box {
  color: #ffffff;
}
.cid-sxRFejEEfq .mbr-text,
.cid-sxRFejEEfq .link-wrap {
  color: #ffffff;
}
.cid-sxRNKZDL2F {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxRRa0tQwN {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #78be14;
}
.cid-sxRRa0tQwN .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-sxRRa0tQwN .number {
  color: #ffffff;
}
.cid-sxRRa0tQwN .period {
  display: block;
}
.cid-sxRRa0tQwN .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sxRRa0tQwN .period {
    font-size: 0.8rem;
  }
}
.cid-sxRRa0tQwN .btn {
  height: 100%;
  margin: 0;
}
.cid-sxRRa0tQwN .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sxRRa0tQwN .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sxRRa0tQwN .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sxRRa0tQwN .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sxRRa0tQwN .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sxRRa0tQwN H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tOIydsxErD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tOIydsxErD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOIydsxErD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOIydsxErD .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tOIydsxErD .team-card:hover {
  transform: translateY(-10px);
}
.cid-tOIydsxErD .item-wrapper {
  background: #ce9700;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tOIydsxErD .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tOIydsxErD .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tOIydsxErD .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tOIydsxErD .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-tOIydsxErD .social-row {
  text-align: center;
}
.cid-tOIydsxErD .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tOIydsxErD .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tOIydsxErD .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tOIydsxErD .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tOIydsxErD .mbr-section-title {
  color: #ce9700;
}
.cid-sxRuRMIgSm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sxRuRMIgSm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxRuRMIgSm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxRuRMIgSm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxRuRMIgSm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxRuRMIgSm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxRuRMIgSm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxRuRMIgSm .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxRuRMIgSm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxRuRMIgSm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxRuRMIgSm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxRuRMIgSm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxRuRMIgSm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxRuRMIgSm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxRuRMIgSm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz5nXGTrTj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz5nXGTrTj nav.navbar {
  position: fixed;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz5nXGTrTj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz5nXGTrTj .dropdown-item:hover,
.cid-sz5nXGTrTj .dropdown-item:focus {
  background: #00aab4 !important;
  color: white !important;
}
.cid-sz5nXGTrTj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz5nXGTrTj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz5nXGTrTj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz5nXGTrTj .nav-link {
  position: relative;
}
.cid-sz5nXGTrTj .container {
  display: flex;
  margin: auto;
}
.cid-sz5nXGTrTj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sz5nXGTrTj .dropdown-menu,
.cid-sz5nXGTrTj .navbar.opened {
  background: #78be14 !important;
}
.cid-sz5nXGTrTj .nav-item:focus,
.cid-sz5nXGTrTj .nav-link:focus {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz5nXGTrTj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz5nXGTrTj .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.opened {
  transition: all .3s;
}
.cid-sz5nXGTrTj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sz5nXGTrTj .navbar .navbar-logo img {
  width: auto;
}
.cid-sz5nXGTrTj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar.collapsed {
  justify-content: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz5nXGTrTj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz5nXGTrTj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz5nXGTrTj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sz5nXGTrTj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz5nXGTrTj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz5nXGTrTj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz5nXGTrTj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz5nXGTrTj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz5nXGTrTj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz5nXGTrTj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sz5nXGTrTj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz5nXGTrTj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown-item.active,
.cid-sz5nXGTrTj .dropdown-item:active {
  background-color: transparent;
}
.cid-sz5nXGTrTj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz5nXGTrTj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz5nXGTrTj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz5nXGTrTj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz5nXGTrTj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #78be14;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz5nXGTrTj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .navbar {
    height: 70px;
  }
  .cid-sz5nXGTrTj .navbar.opened {
    height: auto;
  }
  .cid-sz5nXGTrTj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxRUaq7d6H {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/avc-2022032602-10-32-57a0052-2-2000x1333.jpeg");
}
.cid-sxRUaq7d6H .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sxRUaq7d6H .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sxRUaq7d6H .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sxRUaq7d6H .mbr-section-title {
  color: #ffffff;
}
.cid-sxRUaq7d6H .mbr-text,
.cid-sxRUaq7d6H .mbr-section-btn,
.cid-sxRUaq7d6H .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-sxRUard7Jh {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxRUard7Jh .timeline-element {
  position: relative;
}
.cid-sxRUard7Jh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxRUard7Jh .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #78be14;
  top: 30px;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sxRUard7Jh .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRUard7Jh .iconBackground {
    left: 50%;
  }
}
.cid-sxRUard7Jh .row:after {
  content: "";
  position: absolute;
  background-color: #78be14;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-sxRUard7Jh .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRUard7Jh .row:after {
    left: 50%;
  }
}
.cid-sxRUard7Jh .row:nth-child(odd) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-sxRUard7Jh .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-sxRUard7Jh .timeline-date-wrapper,
  .cid-sxRUard7Jh .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sxRUard7Jh .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sxRUard7Jh .timeline-date-wrapper,
  .cid-sxRUard7Jh .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sxRUard7Jh .timeline-date-wrapper,
  .cid-sxRUard7Jh .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-sxRUard7Jh .mbr-section-subtitle {
  color: #353535;
}
.cid-sxRUard7Jh .mbr-timeline-title {
  color: #0a5028;
}
.cid-sxRUasbDyN {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/avc-4127-2000x1333.webp");
}
.cid-sxRUasbDyN .mbr-text,
.cid-sxRUasbDyN .mbr-section-btn {
  color: #232323;
}
.cid-sxRUasbDyN .card-title,
.cid-sxRUasbDyN .card-box {
  color: #ffffff;
}
.cid-sxRUasbDyN .mbr-text,
.cid-sxRUasbDyN .link-wrap {
  color: #ffffff;
}
.cid-sxRUatd3X9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxRUatu8pK {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #78be14;
}
.cid-sxRUatu8pK .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-sxRUatu8pK .number {
  color: #ffffff;
}
.cid-sxRUatu8pK .period {
  display: block;
}
.cid-sxRUatu8pK .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sxRUatu8pK .period {
    font-size: 0.8rem;
  }
}
.cid-sxRUatu8pK .btn {
  height: 100%;
  margin: 0;
}
.cid-sxRUatu8pK .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sxRUatu8pK .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sxRUatu8pK .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sxRUatu8pK .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sxRUatu8pK .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sxRUatu8pK H3 {
  text-align: center;
  color: #ffffff;
}
.cid-sxVXkSgG1z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #0a5028;
}
.cid-sxVXkSgG1z img,
.cid-sxVXkSgG1z .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-sxVXkSgG1z .item:focus,
.cid-sxVXkSgG1z span:focus {
  outline: none;
}
.cid-sxVXkSgG1z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sxVXkSgG1z .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sxVXkSgG1z .item {
  padding: 0;
  margin: 0;
}
.cid-sxVXkSgG1z .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #0a5028;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sxVXkSgG1z .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sxVXkSgG1z .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sxVXkSgG1z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sxVXkSgG1z .mbr-section-title {
  color: #232323;
}
.cid-tOIC9fZETz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tOIC9fZETz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOIC9fZETz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOIC9fZETz .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tOIC9fZETz .team-card:hover {
  transform: translateY(-10px);
}
.cid-tOIC9fZETz .item-wrapper {
  background: #0a5028;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tOIC9fZETz .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tOIC9fZETz .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tOIC9fZETz .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tOIC9fZETz .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-tOIC9fZETz .social-row {
  text-align: center;
}
.cid-tOIC9fZETz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tOIC9fZETz .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tOIC9fZETz .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tOIC9fZETz .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tOIC9fZETz .mbr-section-title {
  color: #0046a0;
}
.cid-tOIC9fZETz .mbr-role,
.cid-tOIC9fZETz .social-row {
  color: #ffffff;
}
.cid-tOIC9fZETz .card-text,
.cid-tOIC9fZETz .mbr-section-btn,
.cid-tOIC9fZETz .social-row {
  color: #ffffff;
}
.cid-sxRUauIFaa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sxRUauIFaa .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxRUauIFaa .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxRUauIFaa .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxRUauIFaa .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxRUauIFaa .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxRUauIFaa .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxRUauIFaa .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxRUauIFaa .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxRUauIFaa .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxRUauIFaa .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxRUauIFaa .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxRUauIFaa .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxRUauIFaa .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxRUauIFaa .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz5nXGTrTj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz5nXGTrTj nav.navbar {
  position: fixed;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz5nXGTrTj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz5nXGTrTj .dropdown-item:hover,
.cid-sz5nXGTrTj .dropdown-item:focus {
  background: #00aab4 !important;
  color: white !important;
}
.cid-sz5nXGTrTj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz5nXGTrTj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz5nXGTrTj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz5nXGTrTj .nav-link {
  position: relative;
}
.cid-sz5nXGTrTj .container {
  display: flex;
  margin: auto;
}
.cid-sz5nXGTrTj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sz5nXGTrTj .dropdown-menu,
.cid-sz5nXGTrTj .navbar.opened {
  background: #78be14 !important;
}
.cid-sz5nXGTrTj .nav-item:focus,
.cid-sz5nXGTrTj .nav-link:focus {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz5nXGTrTj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz5nXGTrTj .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.opened {
  transition: all .3s;
}
.cid-sz5nXGTrTj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sz5nXGTrTj .navbar .navbar-logo img {
  width: auto;
}
.cid-sz5nXGTrTj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar.collapsed {
  justify-content: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz5nXGTrTj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz5nXGTrTj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz5nXGTrTj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sz5nXGTrTj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz5nXGTrTj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz5nXGTrTj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz5nXGTrTj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz5nXGTrTj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz5nXGTrTj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz5nXGTrTj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sz5nXGTrTj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz5nXGTrTj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown-item.active,
.cid-sz5nXGTrTj .dropdown-item:active {
  background-color: transparent;
}
.cid-sz5nXGTrTj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz5nXGTrTj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz5nXGTrTj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz5nXGTrTj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz5nXGTrTj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #78be14;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz5nXGTrTj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .navbar {
    height: 70px;
  }
  .cid-sz5nXGTrTj .navbar.opened {
    height: auto;
  }
  .cid-sz5nXGTrTj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxRUbQtpqr {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/avc-20190222-12-2000x874.jpeg");
}
.cid-sxRUbQtpqr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sxRUbQtpqr .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sxRUbQtpqr .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sxRUbQtpqr .mbr-section-title {
  color: #ffffff;
}
.cid-sxRUbQtpqr .mbr-text,
.cid-sxRUbQtpqr .mbr-section-btn,
.cid-sxRUbQtpqr .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-sxRUbRgW2F {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxRUbRgW2F .timeline-element {
  position: relative;
}
.cid-sxRUbRgW2F .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxRUbRgW2F .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #78be14;
  top: 30px;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sxRUbRgW2F .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRUbRgW2F .iconBackground {
    left: 50%;
  }
}
.cid-sxRUbRgW2F .row:after {
  content: "";
  position: absolute;
  background-color: #78be14;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-sxRUbRgW2F .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRUbRgW2F .row:after {
    left: 50%;
  }
}
.cid-sxRUbRgW2F .row:nth-child(odd) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-sxRUbRgW2F .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-sxRUbRgW2F .timeline-date-wrapper,
  .cid-sxRUbRgW2F .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sxRUbRgW2F .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sxRUbRgW2F .timeline-date-wrapper,
  .cid-sxRUbRgW2F .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sxRUbRgW2F .timeline-date-wrapper,
  .cid-sxRUbRgW2F .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-sxRUbRgW2F .mbr-section-subtitle {
  color: #353535;
}
.cid-sxRUbRgW2F .mbr-timeline-title {
  color: #0046a0;
}
.cid-sxRUbRZZ2l {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/avc-20190916-14-54-46-dji-47-2000x1333.jpg");
}
.cid-sxRUbRZZ2l .mbr-text,
.cid-sxRUbRZZ2l .mbr-section-btn {
  color: #232323;
}
.cid-sxRUbRZZ2l .card-title,
.cid-sxRUbRZZ2l .card-box {
  color: #ffffff;
}
.cid-sxRUbRZZ2l .mbr-text,
.cid-sxRUbRZZ2l .link-wrap {
  color: #ffffff;
}
.cid-sxRUbSgtSJ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxW17E1atf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxW17E1atf .video-wrapper iframe {
  width: 100%;
}
.cid-sxW17E1atf .mbr-section-title,
.cid-sxW17E1atf .mbr-section-subtitle,
.cid-sxW17E1atf .mbr-text {
  text-align: center;
}
.cid-sxRUbSwHfj {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #78be14;
}
.cid-sxRUbSwHfj .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-sxRUbSwHfj .number {
  color: #ffffff;
}
.cid-sxRUbSwHfj .period {
  display: block;
}
.cid-sxRUbSwHfj .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sxRUbSwHfj .period {
    font-size: 0.8rem;
  }
}
.cid-sxRUbSwHfj .btn {
  height: 100%;
  margin: 0;
}
.cid-sxRUbSwHfj .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sxRUbSwHfj .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sxRUbSwHfj .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sxRUbSwHfj .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sxRUbSwHfj .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sxRUbSwHfj H3 {
  text-align: center;
  color: #ffffff;
}
.cid-sxW1G3yzST {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxW1G3yzST .item:focus,
.cid-sxW1G3yzST span:focus {
  outline: none;
}
.cid-sxW1G3yzST .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sxW1G3yzST .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sxW1G3yzST .item {
  padding: 0;
  margin: 0;
}
.cid-sxW1G3yzST .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sxW1G3yzST .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sxW1G3yzST .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sxW1G3yzST .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sxW1G3yzST .mbr-section-title {
  color: #232323;
}
.cid-tOIEf0JWUm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-tOIEf0JWUm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOIEf0JWUm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOIEf0JWUm .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tOIEf0JWUm .team-card:hover {
  transform: translateY(-10px);
}
.cid-tOIEf0JWUm .item-wrapper {
  background: #0046a0;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tOIEf0JWUm .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tOIEf0JWUm .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tOIEf0JWUm .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tOIEf0JWUm .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-tOIEf0JWUm .social-row {
  text-align: center;
}
.cid-tOIEf0JWUm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tOIEf0JWUm .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tOIEf0JWUm .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tOIEf0JWUm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tOIEf0JWUm .mbr-section-title {
  color: #0046a0;
}
.cid-tOIEf0JWUm .mbr-role,
.cid-tOIEf0JWUm .social-row {
  color: #ffffff;
}
.cid-tOIEf0JWUm .card-text,
.cid-tOIEf0JWUm .mbr-section-btn,
.cid-tOIEf0JWUm .social-row {
  color: #ffffff;
}
.cid-sxRUbTGCcB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sxRUbTGCcB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxRUbTGCcB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxRUbTGCcB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxRUbTGCcB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxRUbTGCcB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxRUbTGCcB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxRUbTGCcB .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxRUbTGCcB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxRUbTGCcB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxRUbTGCcB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxRUbTGCcB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxRUbTGCcB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxRUbTGCcB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxRUbTGCcB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz5nXGTrTj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz5nXGTrTj nav.navbar {
  position: fixed;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz5nXGTrTj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz5nXGTrTj .dropdown-item:hover,
.cid-sz5nXGTrTj .dropdown-item:focus {
  background: #00aab4 !important;
  color: white !important;
}
.cid-sz5nXGTrTj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz5nXGTrTj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz5nXGTrTj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz5nXGTrTj .nav-link {
  position: relative;
}
.cid-sz5nXGTrTj .container {
  display: flex;
  margin: auto;
}
.cid-sz5nXGTrTj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sz5nXGTrTj .dropdown-menu,
.cid-sz5nXGTrTj .navbar.opened {
  background: #78be14 !important;
}
.cid-sz5nXGTrTj .nav-item:focus,
.cid-sz5nXGTrTj .nav-link:focus {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz5nXGTrTj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz5nXGTrTj .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.opened {
  transition: all .3s;
}
.cid-sz5nXGTrTj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sz5nXGTrTj .navbar .navbar-logo img {
  width: auto;
}
.cid-sz5nXGTrTj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar.collapsed {
  justify-content: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz5nXGTrTj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz5nXGTrTj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz5nXGTrTj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sz5nXGTrTj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz5nXGTrTj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz5nXGTrTj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz5nXGTrTj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz5nXGTrTj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz5nXGTrTj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz5nXGTrTj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sz5nXGTrTj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz5nXGTrTj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown-item.active,
.cid-sz5nXGTrTj .dropdown-item:active {
  background-color: transparent;
}
.cid-sz5nXGTrTj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz5nXGTrTj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz5nXGTrTj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz5nXGTrTj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz5nXGTrTj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #78be14;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz5nXGTrTj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .navbar {
    height: 70px;
  }
  .cid-sz5nXGTrTj .navbar.opened {
    height: auto;
  }
  .cid-sz5nXGTrTj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxRUdk4qnO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/avc-20191014-11-28-55-57a8491-1-2000x1333.jpeg");
}
.cid-sxRUdk4qnO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sxRUdk4qnO .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sxRUdk4qnO .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sxRUdk4qnO .mbr-section-title {
  color: #ffffff;
}
.cid-sxRUdk4qnO .mbr-text,
.cid-sxRUdk4qnO .mbr-section-btn,
.cid-sxRUdk4qnO .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-sxRUdkOQJJ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxRUdkOQJJ .timeline-element {
  position: relative;
}
.cid-sxRUdkOQJJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxRUdkOQJJ .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #78be14;
  top: 30px;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sxRUdkOQJJ .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRUdkOQJJ .iconBackground {
    left: 50%;
  }
}
.cid-sxRUdkOQJJ .row:after {
  content: "";
  position: absolute;
  background-color: #78be14;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-sxRUdkOQJJ .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRUdkOQJJ .row:after {
    left: 50%;
  }
}
.cid-sxRUdkOQJJ .row:nth-child(odd) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-sxRUdkOQJJ .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-sxRUdkOQJJ .timeline-date-wrapper,
  .cid-sxRUdkOQJJ .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sxRUdkOQJJ .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sxRUdkOQJJ .timeline-date-wrapper,
  .cid-sxRUdkOQJJ .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sxRUdkOQJJ .timeline-date-wrapper,
  .cid-sxRUdkOQJJ .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-sxRUdkOQJJ .mbr-section-subtitle {
  color: #353535;
}
.cid-sxRUdkOQJJ .mbr-timeline-title {
  color: #8c0a00;
}
.cid-sxRUdlAqeq {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/avc-1103-1737x1158.webp");
}
.cid-sxRUdlAqeq .mbr-text,
.cid-sxRUdlAqeq .mbr-section-btn {
  color: #232323;
}
.cid-sxRUdlAqeq .card-title,
.cid-sxRUdlAqeq .card-box {
  color: #ffffff;
}
.cid-sxRUdlAqeq .mbr-text,
.cid-sxRUdlAqeq .link-wrap {
  color: #ffffff;
}
.cid-sxRUdlPg9u {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxRUdm4voc {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #78be14;
}
.cid-sxRUdm4voc .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-sxRUdm4voc .number {
  color: #ffffff;
}
.cid-sxRUdm4voc .period {
  display: block;
}
.cid-sxRUdm4voc .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sxRUdm4voc .period {
    font-size: 0.8rem;
  }
}
.cid-sxRUdm4voc .btn {
  height: 100%;
  margin: 0;
}
.cid-sxRUdm4voc .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sxRUdm4voc .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sxRUdm4voc .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sxRUdm4voc .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sxRUdm4voc .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sxRUdm4voc H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tOIHrgmQe5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-tOIHrgmQe5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOIHrgmQe5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOIHrgmQe5 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tOIHrgmQe5 .team-card:hover {
  transform: translateY(-10px);
}
.cid-tOIHrgmQe5 .item-wrapper {
  background: #8c0a00;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tOIHrgmQe5 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tOIHrgmQe5 .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tOIHrgmQe5 .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tOIHrgmQe5 .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-tOIHrgmQe5 .social-row {
  text-align: center;
}
.cid-tOIHrgmQe5 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tOIHrgmQe5 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tOIHrgmQe5 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tOIHrgmQe5 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tOIHrgmQe5 .mbr-section-title {
  color: #00aab4;
}
.cid-tOIHrgmQe5 .mbr-role,
.cid-tOIHrgmQe5 .social-row {
  color: #ffffff;
}
.cid-tOIHrgmQe5 .card-text,
.cid-tOIHrgmQe5 .mbr-section-btn,
.cid-tOIHrgmQe5 .social-row {
  color: #ffffff;
}
.cid-sxRUdnaf49 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sxRUdnaf49 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxRUdnaf49 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxRUdnaf49 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxRUdnaf49 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxRUdnaf49 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxRUdnaf49 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxRUdnaf49 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxRUdnaf49 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxRUdnaf49 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxRUdnaf49 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxRUdnaf49 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxRUdnaf49 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxRUdnaf49 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxRUdnaf49 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz5nXGTrTj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz5nXGTrTj nav.navbar {
  position: fixed;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz5nXGTrTj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz5nXGTrTj .dropdown-item:hover,
.cid-sz5nXGTrTj .dropdown-item:focus {
  background: #00aab4 !important;
  color: white !important;
}
.cid-sz5nXGTrTj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz5nXGTrTj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz5nXGTrTj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz5nXGTrTj .nav-link {
  position: relative;
}
.cid-sz5nXGTrTj .container {
  display: flex;
  margin: auto;
}
.cid-sz5nXGTrTj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sz5nXGTrTj .dropdown-menu,
.cid-sz5nXGTrTj .navbar.opened {
  background: #78be14 !important;
}
.cid-sz5nXGTrTj .nav-item:focus,
.cid-sz5nXGTrTj .nav-link:focus {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz5nXGTrTj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz5nXGTrTj .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.opened {
  transition: all .3s;
}
.cid-sz5nXGTrTj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sz5nXGTrTj .navbar .navbar-logo img {
  width: auto;
}
.cid-sz5nXGTrTj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar.collapsed {
  justify-content: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz5nXGTrTj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz5nXGTrTj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz5nXGTrTj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sz5nXGTrTj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz5nXGTrTj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz5nXGTrTj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz5nXGTrTj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz5nXGTrTj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz5nXGTrTj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz5nXGTrTj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sz5nXGTrTj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz5nXGTrTj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown-item.active,
.cid-sz5nXGTrTj .dropdown-item:active {
  background-color: transparent;
}
.cid-sz5nXGTrTj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz5nXGTrTj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz5nXGTrTj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz5nXGTrTj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz5nXGTrTj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #78be14;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz5nXGTrTj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .navbar {
    height: 70px;
  }
  .cid-sz5nXGTrTj .navbar.opened {
    height: auto;
  }
  .cid-sz5nXGTrTj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxRUfHPHtz {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img-6969.jpeg");
}
.cid-sxRUfHPHtz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sxRUfHPHtz .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sxRUfHPHtz .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sxRUfHPHtz .mbr-section-title {
  color: #ffffff;
}
.cid-sxRUfHPHtz .mbr-text,
.cid-sxRUfHPHtz .mbr-section-btn,
.cid-sxRUfHPHtz .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-sxRUfIv9lb {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxRUfIv9lb .timeline-element {
  position: relative;
}
.cid-sxRUfIv9lb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxRUfIv9lb .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #78be14;
  top: 30px;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sxRUfIv9lb .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRUfIv9lb .iconBackground {
    left: 50%;
  }
}
.cid-sxRUfIv9lb .row:after {
  content: "";
  position: absolute;
  background-color: #78be14;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-sxRUfIv9lb .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRUfIv9lb .row:after {
    left: 50%;
  }
}
.cid-sxRUfIv9lb .row:nth-child(odd) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-sxRUfIv9lb .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-sxRUfIv9lb .timeline-date-wrapper,
  .cid-sxRUfIv9lb .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sxRUfIv9lb .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sxRUfIv9lb .timeline-date-wrapper,
  .cid-sxRUfIv9lb .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sxRUfIv9lb .timeline-date-wrapper,
  .cid-sxRUfIv9lb .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-sxRUfIv9lb .mbr-section-subtitle {
  color: #353535;
}
.cid-sxRUfIv9lb .mbr-timeline-title {
  color: #00aab4;
}
.cid-sxRUfJfxxO {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/img-4801.webp");
}
.cid-sxRUfJfxxO .mbr-text,
.cid-sxRUfJfxxO .mbr-section-btn {
  color: #232323;
}
.cid-sxRUfJfxxO .card-title,
.cid-sxRUfJfxxO .card-box {
  color: #ffffff;
}
.cid-sxRUfJfxxO .mbr-text,
.cid-sxRUfJfxxO .link-wrap {
  color: #ffffff;
}
.cid-sxRUfJtSYz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLOLJ2Fydm {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #78be14;
}
.cid-uLOLJ2Fydm .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-uLOLJ2Fydm .number {
  color: #ffffff;
}
.cid-uLOLJ2Fydm .period {
  display: block;
}
.cid-uLOLJ2Fydm .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uLOLJ2Fydm .period {
    font-size: 0.8rem;
  }
}
.cid-uLOLJ2Fydm .btn {
  height: 100%;
  margin: 0;
}
.cid-uLOLJ2Fydm .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uLOLJ2Fydm .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uLOLJ2Fydm .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLOLJ2Fydm .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uLOLJ2Fydm .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uLOLJ2Fydm H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tOIJtD0e4z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-tOIJtD0e4z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOIJtD0e4z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOIJtD0e4z .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tOIJtD0e4z .team-card:hover {
  transform: translateY(-10px);
}
.cid-tOIJtD0e4z .item-wrapper {
  background: #00aab4;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tOIJtD0e4z .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tOIJtD0e4z .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tOIJtD0e4z .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tOIJtD0e4z .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-tOIJtD0e4z .social-row {
  text-align: center;
}
.cid-tOIJtD0e4z .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tOIJtD0e4z .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tOIJtD0e4z .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tOIJtD0e4z .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tOIJtD0e4z .mbr-section-title {
  color: #00aab4;
}
.cid-tOIJtD0e4z .mbr-role,
.cid-tOIJtD0e4z .social-row {
  color: #ffffff;
}
.cid-tOIJtD0e4z .card-text,
.cid-tOIJtD0e4z .mbr-section-btn,
.cid-tOIJtD0e4z .social-row {
  color: #ffffff;
}
.cid-sxRUfKK4In {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sxRUfKK4In .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxRUfKK4In .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxRUfKK4In .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxRUfKK4In .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxRUfKK4In .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxRUfKK4In .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxRUfKK4In .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxRUfKK4In .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxRUfKK4In .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxRUfKK4In .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxRUfKK4In .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxRUfKK4In .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxRUfKK4In .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxRUfKK4In .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz5nXGTrTj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz5nXGTrTj nav.navbar {
  position: fixed;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz5nXGTrTj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz5nXGTrTj .dropdown-item:hover,
.cid-sz5nXGTrTj .dropdown-item:focus {
  background: #00aab4 !important;
  color: white !important;
}
.cid-sz5nXGTrTj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz5nXGTrTj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz5nXGTrTj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz5nXGTrTj .nav-link {
  position: relative;
}
.cid-sz5nXGTrTj .container {
  display: flex;
  margin: auto;
}
.cid-sz5nXGTrTj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sz5nXGTrTj .dropdown-menu,
.cid-sz5nXGTrTj .navbar.opened {
  background: #78be14 !important;
}
.cid-sz5nXGTrTj .nav-item:focus,
.cid-sz5nXGTrTj .nav-link:focus {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-sz5nXGTrTj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz5nXGTrTj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz5nXGTrTj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz5nXGTrTj .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.opened {
  transition: all .3s;
}
.cid-sz5nXGTrTj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sz5nXGTrTj .navbar .navbar-logo img {
  width: auto;
}
.cid-sz5nXGTrTj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar.collapsed {
  justify-content: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz5nXGTrTj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz5nXGTrTj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz5nXGTrTj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz5nXGTrTj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sz5nXGTrTj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sz5nXGTrTj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz5nXGTrTj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz5nXGTrTj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz5nXGTrTj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz5nXGTrTj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz5nXGTrTj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz5nXGTrTj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz5nXGTrTj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sz5nXGTrTj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz5nXGTrTj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz5nXGTrTj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz5nXGTrTj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz5nXGTrTj .dropdown-item.active,
.cid-sz5nXGTrTj .dropdown-item:active {
  background-color: transparent;
}
.cid-sz5nXGTrTj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz5nXGTrTj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #78be14;
}
.cid-sz5nXGTrTj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz5nXGTrTj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz5nXGTrTj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz5nXGTrTj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz5nXGTrTj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #78be14;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sz5nXGTrTj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sz5nXGTrTj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sz5nXGTrTj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz5nXGTrTj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz5nXGTrTj .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-sz5nXGTrTj .navbar {
    height: 70px;
  }
  .cid-sz5nXGTrTj .navbar.opened {
    height: auto;
  }
  .cid-sz5nXGTrTj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxRUelC0jw {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/au_header.JPG");
}
.cid-sxRUelC0jw .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sxRUelC0jw .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sxRUelC0jw .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sxRUelC0jw .mbr-section-title {
  color: #ffffff;
}
.cid-sxRUelC0jw .mbr-text,
.cid-sxRUelC0jw .mbr-section-btn,
.cid-sxRUelC0jw .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-sxRUemhwtY {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxRUemhwtY .timeline-element {
  position: relative;
}
.cid-sxRUemhwtY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sxRUemhwtY .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #78be14;
  top: 30px;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sxRUemhwtY .iconBackground {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRUemhwtY .iconBackground {
    left: 50%;
  }
}
.cid-sxRUemhwtY .row:after {
  content: "";
  position: absolute;
  background-color: #78be14;
  width: 2px;
  top: 50px;
  height: calc(100% - 10px);
}
@media (max-width: 767px) {
  .cid-sxRUemhwtY .row:after {
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sxRUemhwtY .row:after {
    left: 50%;
  }
}
.cid-sxRUemhwtY .row:nth-child(odd) .mbr-timeline-date {
  text-align: right;
}
@media (max-width: 767px) {
  .cid-sxRUemhwtY .row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .cid-sxRUemhwtY .timeline-date-wrapper,
  .cid-sxRUemhwtY .timeline-text-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sxRUemhwtY .mbr-timeline-date {
    text-align: left !important;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sxRUemhwtY .timeline-date-wrapper,
  .cid-sxRUemhwtY .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sxRUemhwtY .timeline-date-wrapper,
  .cid-sxRUemhwtY .timeline-text-wrapper {
    padding: 2rem;
  }
}
.cid-sxRUemhwtY .mbr-section-subtitle {
  color: #353535;
}
.cid-sxRUemhwtY .mbr-timeline-title {
  color: #aa006e;
}
.cid-sxRUemZoIw {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/1601279-265479526994440-4172301842442823951-n-960x640.webp");
}
.cid-sxRUemZoIw .mbr-text,
.cid-sxRUemZoIw .mbr-section-btn {
  color: #232323;
}
.cid-sxRUemZoIw .card-title,
.cid-sxRUemZoIw .card-box {
  color: #ffffff;
}
.cid-sxRUemZoIw .mbr-text,
.cid-sxRUemZoIw .link-wrap {
  color: #ffffff;
}
.cid-sxRUeneuoX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sxRUent7AA {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #78be14;
}
.cid-sxRUent7AA .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-sxRUent7AA .number {
  color: #ffffff;
}
.cid-sxRUent7AA .period {
  display: block;
}
.cid-sxRUent7AA .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sxRUent7AA .period {
    font-size: 0.8rem;
  }
}
.cid-sxRUent7AA .btn {
  height: 100%;
  margin: 0;
}
.cid-sxRUent7AA .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sxRUent7AA .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sxRUent7AA .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sxRUent7AA .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sxRUent7AA .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sxRUent7AA H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tOIIFPIV6q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-tOIIFPIV6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOIIFPIV6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOIIFPIV6q .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tOIIFPIV6q .team-card:hover {
  transform: translateY(-10px);
}
.cid-tOIIFPIV6q .item-wrapper {
  background: #aa006e;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tOIIFPIV6q .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tOIIFPIV6q .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tOIIFPIV6q .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tOIIFPIV6q .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-tOIIFPIV6q .social-row {
  text-align: center;
}
.cid-tOIIFPIV6q .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tOIIFPIV6q .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tOIIFPIV6q .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tOIIFPIV6q .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tOIIFPIV6q .mbr-section-title {
  color: #00aab4;
}
.cid-tOIIFPIV6q .mbr-role,
.cid-tOIIFPIV6q .social-row {
  color: #ffffff;
}
.cid-tOIIFPIV6q .card-text,
.cid-tOIIFPIV6q .mbr-section-btn,
.cid-tOIIFPIV6q .social-row {
  color: #ffffff;
}
.cid-sxRUeozhR4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sxRUeozhR4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxRUeozhR4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxRUeozhR4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxRUeozhR4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxRUeozhR4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxRUeozhR4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxRUeozhR4 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxRUeozhR4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxRUeozhR4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxRUeozhR4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxRUeozhR4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxRUeozhR4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxRUeozhR4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxRUeozhR4 .media-container-row .row-copirayt p {
  width: 100%;
}
