body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.015em;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.25rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.0625rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.9rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((80vw - 20rem) / (48 - 20)));
    line-height: 1;
  }
  .display-2 {
    font-size: 2.6rem;
    font-size: calc( 1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((98vw - 20rem) / (48 - 20)));
    line-height: 1;
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((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: #4353ff !important;
}
.bg-success {
  background-color: #ea4c89 !important;
}
.bg-info {
  background-color: #707cff !important;
}
.bg-warning {
  background-color: #f46f30 !important;
}
.bg-danger {
  background-color: #7ccb61 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4353ff !important;
  border-color: #4353ff !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: #0014eb !important;
  border-color: #0014eb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0014eb !important;
  border-color: #0014eb !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #1da1f2 !important;
  border-color: #1da1f2 !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: #0a70ae !important;
  border-color: #0a70ae !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0a70ae !important;
  border-color: #0a70ae !important;
}
.btn-info,
.btn-info:active {
  background-color: #707cff !important;
  border-color: #707cff !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: #192dff !important;
  border-color: #192dff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #192dff !important;
  border-color: #192dff !important;
}
.btn-success,
.btn-success:active {
  background-color: #ea4c89 !important;
  border-color: #ea4c89 !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: #c8175c !important;
  border-color: #c8175c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c8175c !important;
  border-color: #c8175c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f46f30 !important;
  border-color: #f46f30 !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: #c3460a !important;
  border-color: #c3460a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #c3460a !important;
  border-color: #c3460a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #7ccb61 !important;
  border-color: #7ccb61 !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: #50a035 !important;
  border-color: #50a035 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #50a035 !important;
  border-color: #50a035 !important;
}
.btn-white,
.btn-white:active {
  background-color: #e2e2e2 !important;
  border-color: #e2e2e2 !important;
  color: #626262 !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: #ffffff !important;
  background-color: #b7b7b7 !important;
  border-color: #b7b7b7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #626262 !important;
  background-color: #b7b7b7 !important;
  border-color: #b7b7b7 !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: #4353ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0014eb !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: #4353ff !important;
  border-color: #4353ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1da1f2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0a70ae !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: #1da1f2 !important;
  border-color: #1da1f2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #707cff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #192dff !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: #707cff !important;
  border-color: #707cff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ea4c89;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #c8175c !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: #ea4c89 !important;
  border-color: #ea4c89 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f46f30;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #c3460a !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: #f46f30 !important;
  border-color: #f46f30 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #7ccb61;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #50a035 !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: #7ccb61 !important;
  border-color: #7ccb61 !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: #e2e2e2;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #b7b7b7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #626262 !important;
  background-color: #e2e2e2 !important;
  border-color: #e2e2e2 !important;
}
.text-primary {
  color: #4353ff !important;
}
.text-secondary {
  color: #1da1f2 !important;
}
.text-success {
  color: #ea4c89 !important;
}
.text-info {
  color: #707cff !important;
}
.text-warning {
  color: #f46f30 !important;
}
.text-danger {
  color: #7ccb61 !important;
}
.text-white {
  color: #e2e2e2 !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0013dc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0967a0 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ba1655 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0a1fff !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b4400a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4a9531 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #afafaf !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: #4353ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #707cff;
}
.alert-warning {
  background-color: #f46f30;
}
.alert-danger {
  background-color: #7ccb61;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4353ff;
  border-color: #4353ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4353ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fef6f2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbfefa;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #4353ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #4353ff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4353ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4353ff;
}
.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: #4353ff;
  border-bottom-color: #4353ff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4353ff !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: #1da1f2 !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='%234353ff' %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-duration: .3s;
  transition: 0.3s;
}
a:hover {
  background-image: none !important;
}
a:hover:before {
  width: 100%;
}
.mbr-fonts-style a {
  position: relative;
}
.mbr-fonts-style a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: currentColor;
  transition: 0.3s;
}
.mbr-fonts-style a:hover:before {
  width: 100%;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 1320px) {
  .container {
    max-width: 100%;
    padding: 0 4%;
  }
}
.container-fluid {
  max-width: 100%;
  width: 100%;
  padding: 0 4%;
}
.row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 54px;
  padding: 15px 25px;
  border-radius: 7px !important;
  border: none;
  box-shadow: none;
  font-weight: 500;
  transition: .2s all !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.mbr-section-btn .btn-white:hover {
  background-color: #4353ff !important;
  color: #FFFFFF !important;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
.cid-v7dRLrUg4t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v7dRLrUg4t nav.navbar {
  position: fixed;
}
.cid-v7dRLrUg4t .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-v7dRLrUg4t .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v7dRLrUg4t .dropdown-item {
  border: none !important;
  background: #000000 !important;
  font-weight: 400;
}
.cid-v7dRLrUg4t .dropdown-item:hover,
.cid-v7dRLrUg4t .dropdown-item:focus {
  background: #000000 !important;
  color: #004aad !important;
}
.cid-v7dRLrUg4t .dropdown-item:hover span {
  color: white;
}
.cid-v7dRLrUg4t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7dRLrUg4t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7dRLrUg4t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7dRLrUg4t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.2rem;
}
.cid-v7dRLrUg4t .nav-link {
  position: relative;
}
.cid-v7dRLrUg4t .container {
  display: flex;
  margin: 0 auto;
  max-width: 1100px;
}
@media (min-width: 992px) {
  .cid-v7dRLrUg4t .container {
    flex-wrap: nowrap;
  }
}
.cid-v7dRLrUg4t .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v7dRLrUg4t .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v7dRLrUg4t .dropdown-menu,
.cid-v7dRLrUg4t .navbar.opened {
  background: #000000 !important;
}
.cid-v7dRLrUg4t .nav-item:focus,
.cid-v7dRLrUg4t .nav-link:focus {
  outline: none;
}
.cid-v7dRLrUg4t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7dRLrUg4t .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v7dRLrUg4t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7dRLrUg4t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7dRLrUg4t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7dRLrUg4t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7dRLrUg4t .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-v7dRLrUg4t .navbar.opened {
  transition: all 0.3s;
}
.cid-v7dRLrUg4t .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v7dRLrUg4t .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v7dRLrUg4t .navbar .navbar-logo img {
  width: auto;
}
.cid-v7dRLrUg4t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7dRLrUg4t .navbar.collapsed {
  justify-content: center;
}
.cid-v7dRLrUg4t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7dRLrUg4t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7dRLrUg4t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7dRLrUg4t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7dRLrUg4t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7dRLrUg4t .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-v7dRLrUg4t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7dRLrUg4t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7dRLrUg4t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7dRLrUg4t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7dRLrUg4t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7dRLrUg4t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7dRLrUg4t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7dRLrUg4t .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-v7dRLrUg4t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7dRLrUg4t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7dRLrUg4t .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v7dRLrUg4t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v7dRLrUg4t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7dRLrUg4t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v7dRLrUg4t .navbar.navbar-short {
  min-height: 100px;
}
.cid-v7dRLrUg4t .navbar.navbar-short .navbar-brand {
  min-height: 100px;
}
.cid-v7dRLrUg4t .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v7dRLrUg4t .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v7dRLrUg4t .navbar-brand .navbar-caption:hover,
.cid-v7dRLrUg4t .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7dRLrUg4t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7dRLrUg4t .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v7dRLrUg4t .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7dRLrUg4t .dropdown-item.active,
.cid-v7dRLrUg4t .dropdown-item:active {
  background-color: transparent;
}
.cid-v7dRLrUg4t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7dRLrUg4t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7dRLrUg4t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7dRLrUg4t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 2.3rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v7dRLrUg4t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v7dRLrUg4t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v7dRLrUg4t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7dRLrUg4t ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v7dRLrUg4t ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v7dRLrUg4t .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v7dRLrUg4t .navbar-buttons {
    text-align: left;
  }
}
.cid-v7dRLrUg4t .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v7dRLrUg4t .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v7dRLrUg4t button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v7dRLrUg4t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #004aad;
}
.cid-v7dRLrUg4t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v7dRLrUg4t button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7dRLrUg4t button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7dRLrUg4t button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v7dRLrUg4t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7dRLrUg4t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7dRLrUg4t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7dRLrUg4t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7dRLrUg4t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7dRLrUg4t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7dRLrUg4t .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-v7dRLrUg4t .navbar {
    height: 70px;
  }
  .cid-v7dRLrUg4t .navbar.opened {
    height: auto;
  }
  .cid-v7dRLrUg4t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7dRLrUg4t .navbar-nav {
  margin: 0 auto;
}
.cid-v7dRLrUg4t .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v7dRLrUg4t .nav-item .nav-link {
  padding: 8px 20px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.cid-v7dRLrUg4t .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7dRLrUg4t .nav-item .nav-link:hover,
.cid-v7dRLrUg4t .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004aad !important;
  text-decoration-color: #004aad;
}
.cid-v7dRLrUg4t .nav-item .nav-link:hover::after,
.cid-v7dRLrUg4t .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v7dRLrUg4t .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7dRLrUg4t .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7dRLrUg4t .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v7dRLrUg4t .navbar {
    justify-content: flex-start !important;
  }
  .cid-v7dRLrUg4t .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v7dRLrUg4t .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v7dRLrUg4t .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v7dRLrUg4t .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v7dRLrUg4t .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v7dRLrUg4t .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v7dRLrUg4t .content-wrap {
  min-height: 100px;
}
.cid-v7dRvZeca7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7ccb61;
}
.cid-v7dRvZeca7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dRvZeca7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dRvZeca7 .items-wrapper {
  margin: 0;
}
.cid-v7dRvZeca7 .items-wrapper .card {
  padding: 0;
  justify-content: center;
}
.cid-v7dRvZeca7 .content-wrap {
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-v7dRvZeca7 .content-wrap {
    padding-right: 0;
  }
}
.cid-v7dRvZeca7 .content-wrap .label-wrapper {
  margin-bottom: 24px;
}
.cid-v7dRvZeca7 .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-v7dRvZeca7 .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7dRvZeca7 .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 85%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7dRvZeca7 .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7dRvZeca7 .content-wrap .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v7dRvZeca7 .content-wrap .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-v7dRvZeca7 .image-wrapper {
  background-color: #f7f7f7;
  padding: 8px;
}
@media (max-width: 992px) {
  .cid-v7dRvZeca7 .image-wrapper {
    margin-top: 32px;
  }
}
.cid-v7dRvZeca7 .image-wrapper img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7dRvZeca7 .image-wrapper img {
    height: 300px;
  }
}
.cid-v7dRvZeca7 .mbr-label {
  color: #000000;
}
.cid-v7dRvZeca7 .mbr-section-title {
  color: #000000;
}
.cid-v7dRvZeca7 .mbr-text {
  color: #4f4f4f;
}
.cid-v7dRvZeca7 .mbr-text,
.cid-v7dRvZeca7 .text-wrapper {
  color: #000000;
}
.cid-toppNMey2n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-toppNMey2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-toppNMey2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toppNMey2n .text-wrap {
  width: 100%;
}
.cid-toppNMey2n .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-toppNMey2n .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-toppNMey2n .list-wrap {
  margin-top: 52px;
}
.cid-toppNMey2n .list-title {
  margin-bottom: 10px;
  color: #000000;
}
.cid-toppNMey2n .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 12px;
  width: 100%;
  list-style: none;
  padding-left: 24px;
  margin-bottom: 0;
  color: #000000;
  transition: 0.4s all;
}
.cid-toppNMey2n .list li {
  position: relative;
  width: 100%;
  margin: 0 0 8px 0;
  color: inherit !important;
}
.cid-toppNMey2n .list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  width: 16px;
  height: 1px;
  background-color: currentColor;
}
.cid-topn8RebHF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292323;
}
.cid-topn8RebHF .mbr-fallback-image.disabled {
  display: none;
}
.cid-topn8RebHF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-topn8RebHF .text-wrap {
  width: 100%;
}
.cid-topn8RebHF .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-topn8RebHF .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-topn8RebHF .comment-text {
  margin-top: 40px;
  color: #ffffff;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-topnk35qRO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-topnk35qRO .mbr-fallback-image.disabled {
  display: none;
}
.cid-topnk35qRO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-topnk35qRO .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-topnk35qRO .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-topnk35qRO .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-topnk35qRO .card-col {
    padding: 20px 0 0;
  }
}
.cid-topnk35qRO .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-topnk35qRO .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-topnk35qRO .card-wrapper {
    max-width: 100%;
  }
}
.cid-topnk35qRO .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-topnk35qRO .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-topnk35qRO .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-topnk35qRO .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-topnk35qRO .image-wrapper {
    max-width: 100%;
  }
}
.cid-topnk35qRO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-topnk35qRO .mbr-text,
.cid-topnk35qRO .mbr-section-btn {
  color: #000000;
}
.cid-v7dXGmVNuS {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7dXGmVNuS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dXGmVNuS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dXGmVNuS .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7dXGmVNuS .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7dXGmVNuS .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7dXGmVNuS .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7dXGmVNuS .container {
    padding: 0 16px;
  }
}
.cid-v7dXGmVNuS .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v7dXGmVNuS .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7dXGmVNuS .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v7dXGmVNuS .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-v7dXGmVNuS .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7dXGmVNuS .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-v7dXGmVNuS .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7dXGmVNuS .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v7dXGmVNuS .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7dXGmVNuS .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7dXGmVNuS .mbr-section-subtitle {
  color: #000000;
}
.cid-v7dXGmVNuS .mbr-text {
  color: #000000;
}
.cid-v7dQVmmDq9 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7dQVmmDq9 .container {
  pointer-events: none;
  z-index: 1;
}
.cid-v7dQVmmDq9 .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-v7dQVmmDq9 .brand__text {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7dQVmmDq9 .brand__email {
  margin-bottom: 15px;
}
.cid-v7dQVmmDq9 .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-v7dQVmmDq9 .footer__title {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7dQVmmDq9 .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-v7dQVmmDq9 .footer__items a:hover {
  color: #7ccb61 !important;
}
.cid-v7dQVmmDq9 .social {
  margin-top: 30px;
}
.cid-v7dQVmmDq9 .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 50%;
  margin-right: 10px;
  color: #000000;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-v7dQVmmDq9 .social .social__items:hover {
  background-color: #7ccb61;
  border-color: #7ccb61;
}
.cid-v7dQVmmDq9 .social .social__items:hover span {
  color: #000000 !important;
}
.cid-v7dQVmmDq9 .social .social__items:last-child {
  margin-right: 0;
}
.cid-v7dQVmmDq9 .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-v7dQVmmDq9 .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-v7dQVmmDq9 .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-v7dQVmmDq9 .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
}
.cid-v7dQVmmDq9 .footer__bot_items a:hover {
  color: #7ccb61 !important;
}
.cid-v7dQVmmDq9 .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-v7dQVmmDq9 .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-v7dQVmmDq9 .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #7ccb61;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-v7dQVmmDq9 .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-v7dQVmmDq9 .divider {
    margin-top: 30px;
  }
  .cid-v7dQVmmDq9 .footer__bottom {
    padding: 30px 0;
  }
  .cid-v7dQVmmDq9 .align-right,
  .cid-v7dQVmmDq9 .privacy {
    text-align: center;
  }
  .cid-v7dQVmmDq9 .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-v7dQVmmDq9 .privacy {
  color: #000000;
}
.cid-v7dQVmmDq9 .footer__adress {
  color: #000000;
}
.cid-v7dQVSGa79 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  border-bottom: 1px solid #e9e9e9;
  background-color: #ffffff;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}
.cid-v7dQVSGa79 .container {
  z-index: 1;
}
.cid-v7dQVSGa79 .card {
  position: relative;
  margin-bottom: 60px;
  padding: 0 45px 55px 0;
}
.cid-v7dQVSGa79 .card:hover .card__info {
  transform: translate(0px, 55px);
}
.cid-v7dQVSGa79 .card:hover .hover__socicon {
  transform: scale(1, 1);
}
.cid-v7dQVSGa79 .image__card {
  position: relative;
}
.cid-v7dQVSGa79 .image__card img {
  border-radius: 4px 4px 0 0;
  width: 100%;
  object-fit: cover;
  min-height: 300px;
}
.cid-v7dQVSGa79 .card__info {
  padding: 25px 25px 30px 50px;
  background: #ffffff;
  box-shadow: 5.994px 14.835px 30px 0px rgba(229, 234, 239, 0.5);
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  transform: translate(45px, 55px);
  transition: all 0.3s ease-in-out;
}
.cid-v7dQVSGa79 .card__title {
  margin-bottom: 5px;
  color: #000000;
}
.cid-v7dQVSGa79 .hover__socicon {
  position: absolute;
  text-align: center;
  width: 45px;
  background: #ffffff;
  box-shadow: 8px 0px 8.6px 1.4px rgba(229, 234, 239, 0.2);
  right: 0;
  top: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 100% 0%;
  transition: all 0.3s ease-in-out;
}
.cid-v7dQVSGa79 .hover__socicon > div {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}
.cid-v7dQVSGa79 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  font-size: 20px;
  color: #1da1f2;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.cid-v7dQVSGa79 .icons__wrap:hover {
  color: #7ccb61;
}
.cid-v7dQVSGa79 .animation__background .circle1 {
  display: inline-block;
  width: 15px;
  height: 15px;
  top: 2%;
  left: 32%;
  border-radius: 50%;
  background: #ea4c89;
  position: absolute;
  animation: animationTwo 25s infinite linear;
}
.cid-v7dQVSGa79 .animation__background .circle2 {
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 6%;
  top: 42%;
  position: absolute;
  border-radius: 50%;
  background-color: #f46f30;
  animation: animationOne 32s infinite linear;
}
.cid-v7dQVSGa79 .animation__background .circle3 {
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 6%;
  bottom: 130px;
  position: absolute;
  border-radius: 50%;
  background-color: #707cff;
  animation: animationTwo 29s infinite linear;
}
.cid-v7dQVSGa79 .animation__background .circle4 {
  display: inline-block;
  width: 15px;
  height: 15px;
  right: 50%;
  top: 50%;
  position: absolute;
  border-radius: 50%;
  background-color: #7ccb61;
  animation: animationOne 27s infinite linear;
}
.cid-v7dQVSGa79 .animation__background .circle5 {
  display: inline-block;
  width: 10px;
  height: 10px;
  right: 40%;
  bottom: 20%;
  position: absolute;
  border-radius: 50%;
  background-color: #4353ff;
  animation: animationTwo 22s infinite linear;
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-v7M4xRAmhc {
  padding-top: 4rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v7M4xRAmhc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7M4xRAmhc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7M4xRAmhc .content-wrapper {
  display: flex;
  justify-content: center;
}
.cid-v7M4xRAmhc .content-wrapper .card-wrapper {
  background-color: #ffffff;
  border: 2px solid #3a001d;
  width: 58%;
  padding: 82px;
  -webkit-flex: inherit;
}
@media (max-width: 1440px) {
  .cid-v7M4xRAmhc .content-wrapper .card-wrapper {
    width: 68%;
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .cid-v7M4xRAmhc .content-wrapper .card-wrapper {
    width: 100%;
    padding: 22px;
  }
}
.cid-v7M4xRAmhc .content-wrapper .card-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7M4xRAmhc .content-wrapper .card-wrapper .logo-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v7M4xRAmhc .content-wrapper .card-wrapper .logo-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: inline-block;
}
.cid-v7M4xRAmhc .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7M4xRAmhc .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-v7M4xRAmhc .content-wrapper .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 90%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-v7M4xRAmhc .content-wrapper .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7M4xRAmhc .content-wrapper .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v7M4xRAmhc .mbr-section-title {
  color: #3a001d;
}
.cid-v7M4xRAmhc .mbr-text,
.cid-v7M4xRAmhc .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v7M4xRAmhc .mbr-section-title,
.cid-v7M4xRAmhc .mbr-section-btn,
.cid-v7M4xRAmhc .title-wrapper,
.cid-v7M4xRAmhc .logo-wrapper {
  text-align: center;
}
.cid-v7M4xRAmhc .mbr-section-title,
.cid-v7M4xRAmhc .mbr-section-btn,
.cid-v7M4xRAmhc .logo-wrapper,
.cid-v7M4xRAmhc .title-wrapper {
  color: #000000;
}
.cid-topqquKPXF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7ccb61;
}
.cid-topqquKPXF .mbr-section-head {
  width: 100%;
  margin-bottom: 70px;
}
.cid-topqquKPXF .mbr-section-title {
  color: #000000;
}
.cid-topqquKPXF .mbr-section-subtitle {
  color: #000000;
  margin-top: 16px;
}
.cid-topqquKPXF .items-row {
  margin: 0;
  gap: 80px;
}
@media (max-width: 991px) {
  .cid-topqquKPXF .items-row {
    gap: 30px;
  }
}
.cid-topqquKPXF .item {
  width: calc(50% - 40px);
  padding: 0;
}
@media (max-width: 991px) {
  .cid-topqquKPXF .item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .cid-topqquKPXF .item {
    width: 100%;
  }
}
.cid-topqquKPXF .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  overflow: hidden;
}
.cid-topqquKPXF .item-img {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s all;
}
.cid-topqquKPXF .item-img img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.49253731;
  --bs-aspect-ratio: 1.49253731;
  object-fit: cover;
}
.cid-topqquKPXF .item-img:hover {
  opacity: 0.7;
}
.cid-topqquKPXF .item-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 40px 15% 40px 51px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-topqquKPXF .item-content {
    padding: 40px 30px 40px 30px;
  }
}
@media (max-width: 575px) {
  .cid-topqquKPXF .item-content {
    padding: 40px 30px 40px 20px;
  }
}
.cid-topqquKPXF .item-text-box {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.cid-topqquKPXF .label-container {
  padding: 6px 13px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  margin-right: 15px;
}
.cid-topqquKPXF .label-text {
  color: #747474;
}
.cid-topqquKPXF .date-text {
  flex-grow: 1;
  color: #747474;
}
.cid-topqquKPXF .item-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-topqquKPXF .mbr-text {
  color: #000000;
  padding-top: 20px;
}
.cid-topqquKPXF .mbr-section-btn {
  margin-top: 20px;
}
.cid-v7dXMrDIjA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7dXMrDIjA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dXMrDIjA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dXMrDIjA .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7dXMrDIjA .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7dXMrDIjA .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7dXMrDIjA .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7dXMrDIjA .container {
    padding: 0 16px;
  }
}
.cid-v7dXMrDIjA .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v7dXMrDIjA .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7dXMrDIjA .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v7dXMrDIjA .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-v7dXMrDIjA .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7dXMrDIjA .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-v7dXMrDIjA .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7dXMrDIjA .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v7dXMrDIjA .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7dXMrDIjA .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7dXMrDIjA .mbr-section-subtitle {
  color: #000000;
}
.cid-v7dXMrDIjA .mbr-text {
  color: #000000;
}
.cid-v7dYdz8MVv {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v7dYdz8MVv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dYdz8MVv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dYdz8MVv .section-head {
  margin-bottom: 50px;
}
.cid-v7dYdz8MVv .mbr-section-title {
  color: #000000;
}
.cid-v7dYdz8MVv .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-v7dYdz8MVv .card {
  padding: 0;
}
.cid-v7dYdz8MVv .card-header {
  padding: 0;
  margin-bottom: 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #e2e2e2;
}
.cid-v7dYdz8MVv .panel-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 0;
}
.cid-v7dYdz8MVv .panel-title-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-right: 14px;
  color: #000000;
}
.cid-v7dYdz8MVv .panel-title-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000000;
  transition: .3s all;
}
.cid-v7dYdz8MVv .panel-title-icon span:nth-child(1) {
  width: 100%;
  height: 2px;
}
.cid-v7dYdz8MVv .panel-title-icon span:nth-child(2) {
  width: 2px;
  height: 100%;
}
.cid-v7dYdz8MVv .panel-title[aria-expanded="true"] .panel-title-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cid-v7dYdz8MVv .sign {
  display: none !important;
}
.cid-v7dYdz8MVv .panel-title-edit {
  color: #000000;
}
.cid-v7dYdz8MVv .panel-body {
  padding: 15px 0;
}
.cid-v7dYdz8MVv .panel-text {
  color: #747474;
  margin-bottom: 10px;
}
.cid-topqv2cu9G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-topqv2cu9G .img-container {
  position: relative;
}
.cid-topqv2cu9G .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-topqv2cu9G .image-wrapper img {
  width: 100%;
  height: 46vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-topqv2cu9G .image-wrapper img {
    height: auto;
  }
}
.cid-topqv2cu9G .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-topqv2cu9G .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-topqv2cu9G .mbr-text {
  padding-top: 10px;
  color: #000000;
}
.cid-topn7YBAnQ {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #7ccb61;
}
.cid-topn7YBAnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-topn7YBAnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-topn7YBAnQ .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #000000;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-topn7YBAnQ .label-text {
  color: #000000;
}
.cid-topn7YBAnQ .mbr-title {
  margin-top: 30px;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-topn7YBAnQ .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-topn7YBAnQ .mbr-subtitle {
  margin-top: 40px;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-topn7YBAnQ .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-topn7YBAnQ .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-v7elCFkWgP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v7elCFkWgP nav.navbar {
  position: fixed;
}
.cid-v7elCFkWgP .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-v7elCFkWgP .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v7elCFkWgP .dropdown-item {
  border: none !important;
  background: #000000 !important;
  font-weight: 400;
}
.cid-v7elCFkWgP .dropdown-item:hover,
.cid-v7elCFkWgP .dropdown-item:focus {
  background: #000000 !important;
  color: #004aad !important;
}
.cid-v7elCFkWgP .dropdown-item:hover span {
  color: white;
}
.cid-v7elCFkWgP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7elCFkWgP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7elCFkWgP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7elCFkWgP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.2rem;
}
.cid-v7elCFkWgP .nav-link {
  position: relative;
}
.cid-v7elCFkWgP .container {
  display: flex;
  margin: 0 auto;
  max-width: 1100px;
}
@media (min-width: 992px) {
  .cid-v7elCFkWgP .container {
    flex-wrap: nowrap;
  }
}
.cid-v7elCFkWgP .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v7elCFkWgP .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v7elCFkWgP .dropdown-menu,
.cid-v7elCFkWgP .navbar.opened {
  background: #000000 !important;
}
.cid-v7elCFkWgP .nav-item:focus,
.cid-v7elCFkWgP .nav-link:focus {
  outline: none;
}
.cid-v7elCFkWgP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7elCFkWgP .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v7elCFkWgP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7elCFkWgP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7elCFkWgP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7elCFkWgP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7elCFkWgP .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-v7elCFkWgP .navbar.opened {
  transition: all 0.3s;
}
.cid-v7elCFkWgP .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v7elCFkWgP .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v7elCFkWgP .navbar .navbar-logo img {
  width: auto;
}
.cid-v7elCFkWgP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7elCFkWgP .navbar.collapsed {
  justify-content: center;
}
.cid-v7elCFkWgP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7elCFkWgP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7elCFkWgP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7elCFkWgP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7elCFkWgP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7elCFkWgP .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-v7elCFkWgP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7elCFkWgP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7elCFkWgP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7elCFkWgP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7elCFkWgP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7elCFkWgP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7elCFkWgP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7elCFkWgP .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-v7elCFkWgP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7elCFkWgP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7elCFkWgP .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v7elCFkWgP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v7elCFkWgP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7elCFkWgP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v7elCFkWgP .navbar.navbar-short {
  min-height: 100px;
}
.cid-v7elCFkWgP .navbar.navbar-short .navbar-brand {
  min-height: 100px;
}
.cid-v7elCFkWgP .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v7elCFkWgP .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v7elCFkWgP .navbar-brand .navbar-caption:hover,
.cid-v7elCFkWgP .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7elCFkWgP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7elCFkWgP .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v7elCFkWgP .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7elCFkWgP .dropdown-item.active,
.cid-v7elCFkWgP .dropdown-item:active {
  background-color: transparent;
}
.cid-v7elCFkWgP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7elCFkWgP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7elCFkWgP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7elCFkWgP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 2.3rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v7elCFkWgP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v7elCFkWgP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v7elCFkWgP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7elCFkWgP ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v7elCFkWgP ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v7elCFkWgP .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v7elCFkWgP .navbar-buttons {
    text-align: left;
  }
}
.cid-v7elCFkWgP .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v7elCFkWgP .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v7elCFkWgP button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v7elCFkWgP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #004aad;
}
.cid-v7elCFkWgP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v7elCFkWgP button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7elCFkWgP button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7elCFkWgP button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v7elCFkWgP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7elCFkWgP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7elCFkWgP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7elCFkWgP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7elCFkWgP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7elCFkWgP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7elCFkWgP .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-v7elCFkWgP .navbar {
    height: 70px;
  }
  .cid-v7elCFkWgP .navbar.opened {
    height: auto;
  }
  .cid-v7elCFkWgP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7elCFkWgP .navbar-nav {
  margin: 0 auto;
}
.cid-v7elCFkWgP .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v7elCFkWgP .nav-item .nav-link {
  padding: 8px 20px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.cid-v7elCFkWgP .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7elCFkWgP .nav-item .nav-link:hover,
.cid-v7elCFkWgP .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004aad !important;
  text-decoration-color: #004aad;
}
.cid-v7elCFkWgP .nav-item .nav-link:hover::after,
.cid-v7elCFkWgP .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v7elCFkWgP .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7elCFkWgP .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7elCFkWgP .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v7elCFkWgP .navbar {
    justify-content: flex-start !important;
  }
  .cid-v7elCFkWgP .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v7elCFkWgP .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v7elCFkWgP .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v7elCFkWgP .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v7elCFkWgP .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v7elCFkWgP .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v7elCFkWgP .content-wrap {
  min-height: 100px;
}
.cid-v7elCHscIW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7ccb61;
}
.cid-v7elCHscIW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7elCHscIW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7elCHscIW .items-wrapper {
  margin: 0;
}
.cid-v7elCHscIW .items-wrapper .card {
  padding: 0;
  justify-content: center;
}
.cid-v7elCHscIW .content-wrap {
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-v7elCHscIW .content-wrap {
    padding-right: 0;
  }
}
.cid-v7elCHscIW .content-wrap .label-wrapper {
  margin-bottom: 24px;
}
.cid-v7elCHscIW .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-v7elCHscIW .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7elCHscIW .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 85%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7elCHscIW .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7elCHscIW .content-wrap .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v7elCHscIW .content-wrap .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-v7elCHscIW .image-wrapper {
  background-color: #f7f7f7;
  padding: 8px;
}
@media (max-width: 992px) {
  .cid-v7elCHscIW .image-wrapper {
    margin-top: 32px;
  }
}
.cid-v7elCHscIW .image-wrapper img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7elCHscIW .image-wrapper img {
    height: 300px;
  }
}
.cid-v7elCHscIW .mbr-label {
  color: #000000;
}
.cid-v7elCHscIW .mbr-section-title {
  color: #000000;
}
.cid-v7elCHscIW .mbr-text {
  color: #4f4f4f;
}
.cid-v7elCHscIW .mbr-text,
.cid-v7elCHscIW .text-wrapper {
  color: #000000;
}
.cid-v7elCKyMWU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292323;
}
.cid-v7elCKyMWU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7elCKyMWU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7elCKyMWU .text-wrap {
  width: 100%;
}
.cid-v7elCKyMWU .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7elCKyMWU .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-v7elCKyMWU .comment-text {
  margin-top: 40px;
  color: #ffffff;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-v7elCO4v30 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7elCO4v30 .container {
  pointer-events: none;
  z-index: 1;
}
.cid-v7elCO4v30 .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-v7elCO4v30 .brand__text {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7elCO4v30 .brand__email {
  margin-bottom: 15px;
}
.cid-v7elCO4v30 .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-v7elCO4v30 .footer__title {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7elCO4v30 .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-v7elCO4v30 .footer__items a:hover {
  color: #7ccb61 !important;
}
.cid-v7elCO4v30 .social {
  margin-top: 30px;
}
.cid-v7elCO4v30 .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 50%;
  margin-right: 10px;
  color: #000000;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-v7elCO4v30 .social .social__items:hover {
  background-color: #7ccb61;
  border-color: #7ccb61;
}
.cid-v7elCO4v30 .social .social__items:hover span {
  color: #000000 !important;
}
.cid-v7elCO4v30 .social .social__items:last-child {
  margin-right: 0;
}
.cid-v7elCO4v30 .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-v7elCO4v30 .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-v7elCO4v30 .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-v7elCO4v30 .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
}
.cid-v7elCO4v30 .footer__bot_items a:hover {
  color: #7ccb61 !important;
}
.cid-v7elCO4v30 .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-v7elCO4v30 .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-v7elCO4v30 .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #7ccb61;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-v7elCO4v30 .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-v7elCO4v30 .divider {
    margin-top: 30px;
  }
  .cid-v7elCO4v30 .footer__bottom {
    padding: 30px 0;
  }
  .cid-v7elCO4v30 .align-right,
  .cid-v7elCO4v30 .privacy {
    text-align: center;
  }
  .cid-v7elCO4v30 .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-v7elCO4v30 .privacy {
  color: #000000;
}
.cid-v7elCO4v30 .footer__adress {
  color: #000000;
}
.cid-v7em8U20Rg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v7em8U20Rg nav.navbar {
  position: fixed;
}
.cid-v7em8U20Rg .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-v7em8U20Rg .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v7em8U20Rg .dropdown-item {
  border: none !important;
  background: #000000 !important;
  font-weight: 400;
}
.cid-v7em8U20Rg .dropdown-item:hover,
.cid-v7em8U20Rg .dropdown-item:focus {
  background: #000000 !important;
  color: #004aad !important;
}
.cid-v7em8U20Rg .dropdown-item:hover span {
  color: white;
}
.cid-v7em8U20Rg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7em8U20Rg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7em8U20Rg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7em8U20Rg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.2rem;
}
.cid-v7em8U20Rg .nav-link {
  position: relative;
}
.cid-v7em8U20Rg .container {
  display: flex;
  margin: 0 auto;
  max-width: 1100px;
}
@media (min-width: 992px) {
  .cid-v7em8U20Rg .container {
    flex-wrap: nowrap;
  }
}
.cid-v7em8U20Rg .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v7em8U20Rg .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v7em8U20Rg .dropdown-menu,
.cid-v7em8U20Rg .navbar.opened {
  background: #000000 !important;
}
.cid-v7em8U20Rg .nav-item:focus,
.cid-v7em8U20Rg .nav-link:focus {
  outline: none;
}
.cid-v7em8U20Rg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7em8U20Rg .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v7em8U20Rg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7em8U20Rg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7em8U20Rg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7em8U20Rg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7em8U20Rg .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-v7em8U20Rg .navbar.opened {
  transition: all 0.3s;
}
.cid-v7em8U20Rg .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v7em8U20Rg .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v7em8U20Rg .navbar .navbar-logo img {
  width: auto;
}
.cid-v7em8U20Rg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7em8U20Rg .navbar.collapsed {
  justify-content: center;
}
.cid-v7em8U20Rg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7em8U20Rg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7em8U20Rg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7em8U20Rg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7em8U20Rg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7em8U20Rg .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-v7em8U20Rg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7em8U20Rg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7em8U20Rg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7em8U20Rg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7em8U20Rg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7em8U20Rg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7em8U20Rg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7em8U20Rg .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-v7em8U20Rg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7em8U20Rg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7em8U20Rg .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v7em8U20Rg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v7em8U20Rg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7em8U20Rg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v7em8U20Rg .navbar.navbar-short {
  min-height: 100px;
}
.cid-v7em8U20Rg .navbar.navbar-short .navbar-brand {
  min-height: 100px;
}
.cid-v7em8U20Rg .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v7em8U20Rg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v7em8U20Rg .navbar-brand .navbar-caption:hover,
.cid-v7em8U20Rg .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7em8U20Rg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7em8U20Rg .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v7em8U20Rg .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7em8U20Rg .dropdown-item.active,
.cid-v7em8U20Rg .dropdown-item:active {
  background-color: transparent;
}
.cid-v7em8U20Rg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7em8U20Rg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7em8U20Rg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7em8U20Rg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 2.3rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v7em8U20Rg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v7em8U20Rg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v7em8U20Rg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7em8U20Rg ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v7em8U20Rg ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v7em8U20Rg .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v7em8U20Rg .navbar-buttons {
    text-align: left;
  }
}
.cid-v7em8U20Rg .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v7em8U20Rg .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v7em8U20Rg button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v7em8U20Rg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #004aad;
}
.cid-v7em8U20Rg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v7em8U20Rg button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7em8U20Rg button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7em8U20Rg button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v7em8U20Rg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7em8U20Rg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7em8U20Rg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7em8U20Rg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7em8U20Rg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7em8U20Rg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7em8U20Rg .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-v7em8U20Rg .navbar {
    height: 70px;
  }
  .cid-v7em8U20Rg .navbar.opened {
    height: auto;
  }
  .cid-v7em8U20Rg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7em8U20Rg .navbar-nav {
  margin: 0 auto;
}
.cid-v7em8U20Rg .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v7em8U20Rg .nav-item .nav-link {
  padding: 8px 20px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.cid-v7em8U20Rg .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7em8U20Rg .nav-item .nav-link:hover,
.cid-v7em8U20Rg .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004aad !important;
  text-decoration-color: #004aad;
}
.cid-v7em8U20Rg .nav-item .nav-link:hover::after,
.cid-v7em8U20Rg .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v7em8U20Rg .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7em8U20Rg .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7em8U20Rg .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v7em8U20Rg .navbar {
    justify-content: flex-start !important;
  }
  .cid-v7em8U20Rg .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v7em8U20Rg .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v7em8U20Rg .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v7em8U20Rg .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v7em8U20Rg .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v7em8U20Rg .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v7em8U20Rg .content-wrap {
  min-height: 100px;
}
.cid-v7em8VWblj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7ccb61;
}
.cid-v7em8VWblj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7em8VWblj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7em8VWblj .items-wrapper {
  margin: 0;
}
.cid-v7em8VWblj .items-wrapper .card {
  padding: 0;
  justify-content: center;
}
.cid-v7em8VWblj .content-wrap {
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-v7em8VWblj .content-wrap {
    padding-right: 0;
  }
}
.cid-v7em8VWblj .content-wrap .label-wrapper {
  margin-bottom: 24px;
}
.cid-v7em8VWblj .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-v7em8VWblj .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7em8VWblj .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 85%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7em8VWblj .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7em8VWblj .content-wrap .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v7em8VWblj .content-wrap .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-v7em8VWblj .image-wrapper {
  background-color: #f7f7f7;
  padding: 8px;
}
@media (max-width: 992px) {
  .cid-v7em8VWblj .image-wrapper {
    margin-top: 32px;
  }
}
.cid-v7em8VWblj .image-wrapper img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7em8VWblj .image-wrapper img {
    height: 300px;
  }
}
.cid-v7em8VWblj .mbr-label {
  color: #000000;
}
.cid-v7em8VWblj .mbr-section-title {
  color: #000000;
}
.cid-v7em8VWblj .mbr-text {
  color: #4f4f4f;
}
.cid-v7em8VWblj .mbr-text,
.cid-v7em8VWblj .text-wrapper {
  color: #000000;
}
.cid-v7em8Xv56o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292323;
}
.cid-v7em8Xv56o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7em8Xv56o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7em8Xv56o .text-wrap {
  width: 100%;
}
.cid-v7em8Xv56o .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7em8Xv56o .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-v7em8Xv56o .comment-text {
  margin-top: 40px;
  color: #ffffff;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-v7em8YE2CF {
  padding-top: 6rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7em8YE2CF .container {
  pointer-events: none;
  z-index: 1;
}
.cid-v7em8YE2CF .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-v7em8YE2CF .brand__text {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7em8YE2CF .brand__email {
  margin-bottom: 15px;
}
.cid-v7em8YE2CF .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-v7em8YE2CF .footer__title {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7em8YE2CF .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-v7em8YE2CF .footer__items a:hover {
  color: #7ccb61 !important;
}
.cid-v7em8YE2CF .social {
  margin-top: 30px;
}
.cid-v7em8YE2CF .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 50%;
  margin-right: 10px;
  color: #000000;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-v7em8YE2CF .social .social__items:hover {
  background-color: #7ccb61;
  border-color: #7ccb61;
}
.cid-v7em8YE2CF .social .social__items:hover span {
  color: #000000 !important;
}
.cid-v7em8YE2CF .social .social__items:last-child {
  margin-right: 0;
}
.cid-v7em8YE2CF .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-v7em8YE2CF .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-v7em8YE2CF .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-v7em8YE2CF .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
}
.cid-v7em8YE2CF .footer__bot_items a:hover {
  color: #7ccb61 !important;
}
.cid-v7em8YE2CF .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-v7em8YE2CF .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-v7em8YE2CF .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #7ccb61;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-v7em8YE2CF .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-v7em8YE2CF .divider {
    margin-top: 30px;
  }
  .cid-v7em8YE2CF .footer__bottom {
    padding: 30px 0;
  }
  .cid-v7em8YE2CF .align-right,
  .cid-v7em8YE2CF .privacy {
    text-align: center;
  }
  .cid-v7em8YE2CF .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-v7em8YE2CF .privacy {
  color: #000000;
}
.cid-v7em8YE2CF .footer__adress {
  color: #000000;
}
.cid-v7dZIjVnEA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v7dZIjVnEA nav.navbar {
  position: fixed;
}
.cid-v7dZIjVnEA .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-v7dZIjVnEA .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v7dZIjVnEA .dropdown-item {
  border: none !important;
  background: #000000 !important;
  font-weight: 400;
}
.cid-v7dZIjVnEA .dropdown-item:hover,
.cid-v7dZIjVnEA .dropdown-item:focus {
  background: #000000 !important;
  color: #004aad !important;
}
.cid-v7dZIjVnEA .dropdown-item:hover span {
  color: white;
}
.cid-v7dZIjVnEA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7dZIjVnEA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7dZIjVnEA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7dZIjVnEA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.2rem;
}
.cid-v7dZIjVnEA .nav-link {
  position: relative;
}
.cid-v7dZIjVnEA .container {
  display: flex;
  margin: 0 auto;
  max-width: 1100px;
}
@media (min-width: 992px) {
  .cid-v7dZIjVnEA .container {
    flex-wrap: nowrap;
  }
}
.cid-v7dZIjVnEA .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v7dZIjVnEA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v7dZIjVnEA .dropdown-menu,
.cid-v7dZIjVnEA .navbar.opened {
  background: #000000 !important;
}
.cid-v7dZIjVnEA .nav-item:focus,
.cid-v7dZIjVnEA .nav-link:focus {
  outline: none;
}
.cid-v7dZIjVnEA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7dZIjVnEA .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v7dZIjVnEA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7dZIjVnEA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7dZIjVnEA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7dZIjVnEA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7dZIjVnEA .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-v7dZIjVnEA .navbar.opened {
  transition: all 0.3s;
}
.cid-v7dZIjVnEA .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v7dZIjVnEA .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v7dZIjVnEA .navbar .navbar-logo img {
  width: auto;
}
.cid-v7dZIjVnEA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7dZIjVnEA .navbar.collapsed {
  justify-content: center;
}
.cid-v7dZIjVnEA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7dZIjVnEA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7dZIjVnEA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7dZIjVnEA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7dZIjVnEA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7dZIjVnEA .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-v7dZIjVnEA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7dZIjVnEA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7dZIjVnEA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7dZIjVnEA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7dZIjVnEA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7dZIjVnEA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7dZIjVnEA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7dZIjVnEA .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-v7dZIjVnEA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7dZIjVnEA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7dZIjVnEA .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v7dZIjVnEA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v7dZIjVnEA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7dZIjVnEA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v7dZIjVnEA .navbar.navbar-short {
  min-height: 100px;
}
.cid-v7dZIjVnEA .navbar.navbar-short .navbar-brand {
  min-height: 100px;
}
.cid-v7dZIjVnEA .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v7dZIjVnEA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v7dZIjVnEA .navbar-brand .navbar-caption:hover,
.cid-v7dZIjVnEA .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7dZIjVnEA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7dZIjVnEA .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v7dZIjVnEA .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7dZIjVnEA .dropdown-item.active,
.cid-v7dZIjVnEA .dropdown-item:active {
  background-color: transparent;
}
.cid-v7dZIjVnEA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7dZIjVnEA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7dZIjVnEA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7dZIjVnEA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 2.3rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v7dZIjVnEA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v7dZIjVnEA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v7dZIjVnEA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7dZIjVnEA ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v7dZIjVnEA ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v7dZIjVnEA .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v7dZIjVnEA .navbar-buttons {
    text-align: left;
  }
}
.cid-v7dZIjVnEA .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v7dZIjVnEA .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v7dZIjVnEA button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v7dZIjVnEA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #004aad;
}
.cid-v7dZIjVnEA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v7dZIjVnEA button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7dZIjVnEA button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7dZIjVnEA button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v7dZIjVnEA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7dZIjVnEA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7dZIjVnEA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7dZIjVnEA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7dZIjVnEA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7dZIjVnEA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7dZIjVnEA .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-v7dZIjVnEA .navbar {
    height: 70px;
  }
  .cid-v7dZIjVnEA .navbar.opened {
    height: auto;
  }
  .cid-v7dZIjVnEA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7dZIjVnEA .navbar-nav {
  margin: 0 auto;
}
.cid-v7dZIjVnEA .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v7dZIjVnEA .nav-item .nav-link {
  padding: 8px 20px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.cid-v7dZIjVnEA .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7dZIjVnEA .nav-item .nav-link:hover,
.cid-v7dZIjVnEA .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004aad !important;
  text-decoration-color: #004aad;
}
.cid-v7dZIjVnEA .nav-item .nav-link:hover::after,
.cid-v7dZIjVnEA .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v7dZIjVnEA .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7dZIjVnEA .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7dZIjVnEA .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v7dZIjVnEA .navbar {
    justify-content: flex-start !important;
  }
  .cid-v7dZIjVnEA .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v7dZIjVnEA .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v7dZIjVnEA .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v7dZIjVnEA .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v7dZIjVnEA .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v7dZIjVnEA .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v7dZIjVnEA .content-wrap {
  min-height: 100px;
}
.cid-v7dZIlpirC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7ccb61;
}
.cid-v7dZIlpirC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dZIlpirC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dZIlpirC .items-wrapper {
  margin: 0;
}
.cid-v7dZIlpirC .items-wrapper .card {
  padding: 0;
  justify-content: center;
}
.cid-v7dZIlpirC .content-wrap {
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-v7dZIlpirC .content-wrap {
    padding-right: 0;
  }
}
.cid-v7dZIlpirC .content-wrap .label-wrapper {
  margin-bottom: 24px;
}
.cid-v7dZIlpirC .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-v7dZIlpirC .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7dZIlpirC .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 85%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7dZIlpirC .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7dZIlpirC .content-wrap .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v7dZIlpirC .content-wrap .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-v7dZIlpirC .image-wrapper {
  background-color: #f7f7f7;
  padding: 8px;
}
@media (max-width: 992px) {
  .cid-v7dZIlpirC .image-wrapper {
    margin-top: 32px;
  }
}
.cid-v7dZIlpirC .image-wrapper img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7dZIlpirC .image-wrapper img {
    height: 300px;
  }
}
.cid-v7dZIlpirC .mbr-label {
  color: #000000;
}
.cid-v7dZIlpirC .mbr-section-title {
  color: #000000;
}
.cid-v7dZIlpirC .mbr-text {
  color: #4f4f4f;
}
.cid-v7dZIlpirC .mbr-text,
.cid-v7dZIlpirC .text-wrapper {
  color: #000000;
}
.cid-v7dZImSAca {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7dZImSAca .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dZImSAca .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dZImSAca .text-wrap {
  width: 100%;
}
.cid-v7dZImSAca .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7dZImSAca .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-v7dZImSAca .list-wrap {
  margin-top: 52px;
}
.cid-v7dZImSAca .list-title {
  margin-bottom: 10px;
  color: #000000;
}
.cid-v7dZImSAca .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 12px;
  width: 100%;
  list-style: none;
  padding-left: 24px;
  margin-bottom: 0;
  color: #000000;
  transition: 0.4s all;
}
.cid-v7dZImSAca .list li {
  position: relative;
  width: 100%;
  margin: 0 0 8px 0;
  color: inherit !important;
}
.cid-v7dZImSAca .list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  width: 16px;
  height: 1px;
  background-color: currentColor;
}
.cid-v7dZIodoSK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292323;
}
.cid-v7dZIodoSK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dZIodoSK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dZIodoSK .text-wrap {
  width: 100%;
}
.cid-v7dZIodoSK .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7dZIodoSK .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-v7dZIodoSK .comment-text {
  margin-top: 40px;
  color: #ffffff;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-v7dZIqekG4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/24407-1000x668.jpg");
}
.cid-v7dZIqekG4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dZIqekG4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dZIqekG4 .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v7dZIqekG4 .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-v7dZIqekG4 .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-v7dZIqekG4 .card-col {
    padding: 20px 0 0;
  }
}
.cid-v7dZIqekG4 .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-v7dZIqekG4 .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-v7dZIqekG4 .card-wrapper {
    max-width: 100%;
  }
}
.cid-v7dZIqekG4 .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-v7dZIqekG4 .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-v7dZIqekG4 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-v7dZIqekG4 .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-v7dZIqekG4 .image-wrapper {
    max-width: 100%;
  }
}
.cid-v7dZIqekG4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v7dZIqekG4 .mbr-text,
.cid-v7dZIqekG4 .mbr-section-btn {
  color: #000000;
}
.cid-v7dZIrRM3O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7dZIrRM3O .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dZIrRM3O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dZIrRM3O .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7dZIrRM3O .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7dZIrRM3O .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7dZIrRM3O .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7dZIrRM3O .container {
    padding: 0 16px;
  }
}
.cid-v7dZIrRM3O .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v7dZIrRM3O .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7dZIrRM3O .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v7dZIrRM3O .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-v7dZIrRM3O .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7dZIrRM3O .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-v7dZIrRM3O .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7dZIrRM3O .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v7dZIrRM3O .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7dZIrRM3O .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7dZIrRM3O .mbr-section-subtitle {
  color: #000000;
}
.cid-v7dZIrRM3O .mbr-text {
  color: #000000;
}
.cid-v7dZItJc0g {
  padding-top: 6rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7dZItJc0g .container {
  pointer-events: none;
  z-index: 1;
}
.cid-v7dZItJc0g .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-v7dZItJc0g .brand__text {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7dZItJc0g .brand__email {
  margin-bottom: 15px;
}
.cid-v7dZItJc0g .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-v7dZItJc0g .footer__title {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7dZItJc0g .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-v7dZItJc0g .footer__items a:hover {
  color: #7ccb61 !important;
}
.cid-v7dZItJc0g .social {
  margin-top: 30px;
}
.cid-v7dZItJc0g .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 50%;
  margin-right: 10px;
  color: #000000;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-v7dZItJc0g .social .social__items:hover {
  background-color: #7ccb61;
  border-color: #7ccb61;
}
.cid-v7dZItJc0g .social .social__items:hover span {
  color: #000000 !important;
}
.cid-v7dZItJc0g .social .social__items:last-child {
  margin-right: 0;
}
.cid-v7dZItJc0g .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-v7dZItJc0g .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-v7dZItJc0g .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-v7dZItJc0g .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
}
.cid-v7dZItJc0g .footer__bot_items a:hover {
  color: #7ccb61 !important;
}
.cid-v7dZItJc0g .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-v7dZItJc0g .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-v7dZItJc0g .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #7ccb61;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-v7dZItJc0g .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-v7dZItJc0g .divider {
    margin-top: 30px;
  }
  .cid-v7dZItJc0g .footer__bottom {
    padding: 30px 0;
  }
  .cid-v7dZItJc0g .align-right,
  .cid-v7dZItJc0g .privacy {
    text-align: center;
  }
  .cid-v7dZItJc0g .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-v7dZItJc0g .privacy {
  color: #000000;
}
.cid-v7dZItJc0g .footer__adress {
  color: #000000;
}
.cid-v7dZIvymQY {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  border-bottom: 1px solid #e9e9e9;
  background-color: #ffffff;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}
.cid-v7dZIvymQY .container {
  z-index: 1;
}
.cid-v7dZIvymQY .card {
  position: relative;
  margin-bottom: 60px;
  padding: 0 45px 55px 0;
}
.cid-v7dZIvymQY .card:hover .card__info {
  transform: translate(0px, 55px);
}
.cid-v7dZIvymQY .card:hover .hover__socicon {
  transform: scale(1, 1);
}
.cid-v7dZIvymQY .image__card {
  position: relative;
}
.cid-v7dZIvymQY .image__card img {
  border-radius: 4px 4px 0 0;
  width: 100%;
  object-fit: cover;
  min-height: 300px;
}
.cid-v7dZIvymQY .card__info {
  padding: 25px 25px 30px 50px;
  background: #ffffff;
  box-shadow: 5.994px 14.835px 30px 0px rgba(229, 234, 239, 0.5);
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  transform: translate(45px, 55px);
  transition: all 0.3s ease-in-out;
}
.cid-v7dZIvymQY .card__title {
  margin-bottom: 5px;
  color: #000000;
}
.cid-v7dZIvymQY .hover__socicon {
  position: absolute;
  text-align: center;
  width: 45px;
  background: #ffffff;
  box-shadow: 8px 0px 8.6px 1.4px rgba(229, 234, 239, 0.2);
  right: 0;
  top: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 100% 0%;
  transition: all 0.3s ease-in-out;
}
.cid-v7dZIvymQY .hover__socicon > div {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}
.cid-v7dZIvymQY .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  font-size: 20px;
  color: #1da1f2;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.cid-v7dZIvymQY .icons__wrap:hover {
  color: #7ccb61;
}
.cid-v7dZIvymQY .animation__background .circle1 {
  display: inline-block;
  width: 15px;
  height: 15px;
  top: 2%;
  left: 32%;
  border-radius: 50%;
  background: #ea4c89;
  position: absolute;
  animation: animationTwo 25s infinite linear;
}
.cid-v7dZIvymQY .animation__background .circle2 {
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 6%;
  top: 42%;
  position: absolute;
  border-radius: 50%;
  background-color: #f46f30;
  animation: animationOne 32s infinite linear;
}
.cid-v7dZIvymQY .animation__background .circle3 {
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 6%;
  bottom: 130px;
  position: absolute;
  border-radius: 50%;
  background-color: #707cff;
  animation: animationTwo 29s infinite linear;
}
.cid-v7dZIvymQY .animation__background .circle4 {
  display: inline-block;
  width: 15px;
  height: 15px;
  right: 50%;
  top: 50%;
  position: absolute;
  border-radius: 50%;
  background-color: #7ccb61;
  animation: animationOne 27s infinite linear;
}
.cid-v7dZIvymQY .animation__background .circle5 {
  display: inline-block;
  width: 10px;
  height: 10px;
  right: 40%;
  bottom: 20%;
  position: absolute;
  border-radius: 50%;
  background-color: #4353ff;
  animation: animationTwo 22s infinite linear;
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-v7dZIxxqee {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7ccb61;
}
.cid-v7dZIxxqee .mbr-section-head {
  width: 100%;
  margin-bottom: 70px;
}
.cid-v7dZIxxqee .mbr-section-title {
  color: #000000;
}
.cid-v7dZIxxqee .mbr-section-subtitle {
  color: #000000;
  margin-top: 16px;
}
.cid-v7dZIxxqee .items-row {
  margin: 0;
  gap: 80px;
}
@media (max-width: 991px) {
  .cid-v7dZIxxqee .items-row {
    gap: 30px;
  }
}
.cid-v7dZIxxqee .item {
  width: calc(50% - 40px);
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7dZIxxqee .item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .cid-v7dZIxxqee .item {
    width: 100%;
  }
}
.cid-v7dZIxxqee .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  overflow: hidden;
}
.cid-v7dZIxxqee .item-img {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s all;
}
.cid-v7dZIxxqee .item-img img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.49253731;
  --bs-aspect-ratio: 1.49253731;
  object-fit: cover;
}
.cid-v7dZIxxqee .item-img:hover {
  opacity: 0.7;
}
.cid-v7dZIxxqee .item-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 40px 15% 40px 51px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v7dZIxxqee .item-content {
    padding: 40px 30px 40px 30px;
  }
}
@media (max-width: 575px) {
  .cid-v7dZIxxqee .item-content {
    padding: 40px 30px 40px 20px;
  }
}
.cid-v7dZIxxqee .item-text-box {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.cid-v7dZIxxqee .label-container {
  padding: 6px 13px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  margin-right: 15px;
}
.cid-v7dZIxxqee .label-text {
  color: #747474;
}
.cid-v7dZIxxqee .date-text {
  flex-grow: 1;
  color: #747474;
}
.cid-v7dZIxxqee .item-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-v7dZIxxqee .mbr-text {
  color: #000000;
  padding-top: 20px;
}
.cid-v7dZIxxqee .mbr-section-btn {
  margin-top: 20px;
}
.cid-v7dZIyYLcf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7dZIyYLcf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dZIyYLcf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dZIyYLcf .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7dZIyYLcf .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7dZIyYLcf .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7dZIyYLcf .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7dZIyYLcf .container {
    padding: 0 16px;
  }
}
.cid-v7dZIyYLcf .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v7dZIyYLcf .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7dZIyYLcf .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v7dZIyYLcf .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-v7dZIyYLcf .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7dZIyYLcf .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-v7dZIyYLcf .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7dZIyYLcf .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v7dZIyYLcf .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7dZIyYLcf .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7dZIyYLcf .mbr-section-subtitle {
  color: #000000;
}
.cid-v7dZIyYLcf .mbr-text {
  color: #000000;
}
.cid-v7dZIyYLcf .mbr-text,
.cid-v7dZIyYLcf .mbr-section-btn {
  text-align: center;
}
.cid-v7M57qXGAI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7M57qXGAI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7M57qXGAI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7M57qXGAI .section-head {
  margin-bottom: 50px;
}
.cid-v7M57qXGAI .mbr-section-title {
  color: #000000;
}
.cid-v7M57qXGAI .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-v7M57qXGAI .card {
  padding: 0;
}
.cid-v7M57qXGAI .card-header {
  padding: 0;
  margin-bottom: 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #e2e2e2;
}
.cid-v7M57qXGAI .panel-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 0;
}
.cid-v7M57qXGAI .panel-title-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-right: 14px;
  color: #000000;
}
.cid-v7M57qXGAI .panel-title-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000000;
  transition: .3s all;
}
.cid-v7M57qXGAI .panel-title-icon span:nth-child(1) {
  width: 100%;
  height: 2px;
}
.cid-v7M57qXGAI .panel-title-icon span:nth-child(2) {
  width: 2px;
  height: 100%;
}
.cid-v7M57qXGAI .panel-title[aria-expanded="true"] .panel-title-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cid-v7M57qXGAI .sign {
  display: none !important;
}
.cid-v7M57qXGAI .panel-title-edit {
  color: #000000;
}
.cid-v7M57qXGAI .panel-body {
  padding: 15px 0;
}
.cid-v7M57qXGAI .panel-text {
  color: #747474;
  margin-bottom: 10px;
}
.cid-v7dZIBQtK6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7dZIBQtK6 .img-container {
  position: relative;
}
.cid-v7dZIBQtK6 .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-v7dZIBQtK6 .image-wrapper img {
  width: 100%;
  height: 46vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-v7dZIBQtK6 .image-wrapper img {
    height: auto;
  }
}
.cid-v7dZIBQtK6 .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-v7dZIBQtK6 .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7dZIBQtK6 .mbr-text {
  padding-top: 10px;
  color: #000000;
}
.cid-v7M5cM3Gow {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v7M5cM3Gow .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7M5cM3Gow .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7M5cM3Gow .content-wrapper {
  display: flex;
  justify-content: center;
}
.cid-v7M5cM3Gow .content-wrapper .card-wrapper {
  background-color: #ffffff;
  border: 2px solid #3a001d;
  width: 58%;
  padding: 82px;
  -webkit-flex: inherit;
}
@media (max-width: 1440px) {
  .cid-v7M5cM3Gow .content-wrapper .card-wrapper {
    width: 68%;
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .cid-v7M5cM3Gow .content-wrapper .card-wrapper {
    width: 100%;
    padding: 22px;
  }
}
.cid-v7M5cM3Gow .content-wrapper .card-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7M5cM3Gow .content-wrapper .card-wrapper .logo-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v7M5cM3Gow .content-wrapper .card-wrapper .logo-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: inline-block;
}
.cid-v7M5cM3Gow .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7M5cM3Gow .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-v7M5cM3Gow .content-wrapper .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 90%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-v7M5cM3Gow .content-wrapper .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7M5cM3Gow .content-wrapper .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v7M5cM3Gow .mbr-section-title {
  color: #3a001d;
}
.cid-v7M5cM3Gow .mbr-text,
.cid-v7M5cM3Gow .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v7M5cM3Gow .mbr-section-title,
.cid-v7M5cM3Gow .mbr-section-btn,
.cid-v7M5cM3Gow .title-wrapper,
.cid-v7M5cM3Gow .logo-wrapper {
  text-align: center;
}
.cid-v7M5cM3Gow .mbr-section-title,
.cid-v7M5cM3Gow .mbr-section-btn,
.cid-v7M5cM3Gow .logo-wrapper,
.cid-v7M5cM3Gow .title-wrapper {
  color: #000000;
}
.cid-v7dZIHPO2x {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #7ccb61;
}
.cid-v7dZIHPO2x .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dZIHPO2x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dZIHPO2x .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #000000;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-v7dZIHPO2x .label-text {
  color: #000000;
}
.cid-v7dZIHPO2x .mbr-title {
  margin-top: 30px;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-v7dZIHPO2x .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-v7dZIHPO2x .mbr-subtitle {
  margin-top: 40px;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7dZIHPO2x .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-v7dZIHPO2x .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-v7e1of99nA {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #292323;
}
.cid-v7e1of99nA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e1of99nA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e1of99nA .title-wrapper {
  padding-left: 35%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7e1of99nA .title-wrapper {
    padding-left: 0;
  }
}
.cid-v7e1of99nA .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-v7e1of99nA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v7e1of99nA .mbr-section-btn {
  padding-left: 35%;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-v7e1of99nA .mbr-section-btn {
    padding-left: 0;
    margin-top: 20px;
  }
}
.cid-v7e1of99nA .mbr-section-btn .btn::after,
.cid-v7e1of99nA .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-v7e1of99nA .mbr-section-btn .btn:hover,
.cid-v7e1of99nA .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-v7e1of99nA .mbr-section-btn .btn:hover::after,
.cid-v7e1of99nA .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-v7e1of99nA .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 2px solid #adadad;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-v7e1of99nA .panel-group .card {
    padding: 20px 0;
  }
}
.cid-v7e1of99nA .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
}
.cid-v7e1of99nA .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.cid-v7e1of99nA .panel-group .card .card-header .panel-title .panel-number {
  position: absolute;
  left: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7e1of99nA .panel-group .card .card-header .panel-title .panel-number {
    display: none;
  }
}
.cid-v7e1of99nA .panel-group .card .card-header .panel-title .panel-title-edit {
  padding-left: 35%;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7e1of99nA .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-left: 0;
  }
}
.cid-v7e1of99nA .panel-group .card .card-header .panel-title .arrow-wrapper {
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(135deg, transparent 50%, #adadad 50%);
  transition: all .3s ease;
}
.cid-v7e1of99nA .panel-group .card .card-header .panel-title:not(.collapsed) .arrow-wrapper {
  background-image: linear-gradient(45deg, transparent 50%, #adadad 50%);
}
.cid-v7e1of99nA .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-v7e1of99nA .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
  }
}
.cid-v7e1of99nA .panel-group .card .panel-collapse .panel-body .panel-text {
  padding-left: 35%;
  display: inline-block;
  margin-bottom: 0;
  width: 90%;
}
@media (max-width: 992px) {
  .cid-v7e1of99nA .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
    padding-left: 0;
  }
}
.cid-v7e1of99nA .mbr-section-title {
  color: #ffffff;
}
.cid-v7e1of99nA .mbr-tag {
  color: #adadad;
}
.cid-v7e1of99nA .panel-number {
  color: #ffffff;
}
.cid-v7e1of99nA .panel-title-edit {
  color: #ffffff;
}
.cid-v7e1of99nA .panel-text {
  color: #c7c7c7;
}
.cid-v7e1of99nA .panel-text,
.cid-v7e1of99nA .panel-body {
  color: #ffffff;
}
.cid-v7M5SryPXG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-v7M5SryPXG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7M5SryPXG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7M5SryPXG .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-v7M5SryPXG .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v7M5SryPXG .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v7M5SryPXG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v7M5SryPXG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v7e39S8B5M {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v7e39S8B5M nav.navbar {
  position: fixed;
}
.cid-v7e39S8B5M .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-v7e39S8B5M .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v7e39S8B5M .dropdown-item {
  border: none !important;
  background: #000000 !important;
  font-weight: 400;
}
.cid-v7e39S8B5M .dropdown-item:hover,
.cid-v7e39S8B5M .dropdown-item:focus {
  background: #000000 !important;
  color: #004aad !important;
}
.cid-v7e39S8B5M .dropdown-item:hover span {
  color: white;
}
.cid-v7e39S8B5M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7e39S8B5M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7e39S8B5M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7e39S8B5M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.2rem;
}
.cid-v7e39S8B5M .nav-link {
  position: relative;
}
.cid-v7e39S8B5M .container {
  display: flex;
  margin: 0 auto;
  max-width: 1100px;
}
@media (min-width: 992px) {
  .cid-v7e39S8B5M .container {
    flex-wrap: nowrap;
  }
}
.cid-v7e39S8B5M .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v7e39S8B5M .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v7e39S8B5M .dropdown-menu,
.cid-v7e39S8B5M .navbar.opened {
  background: #000000 !important;
}
.cid-v7e39S8B5M .nav-item:focus,
.cid-v7e39S8B5M .nav-link:focus {
  outline: none;
}
.cid-v7e39S8B5M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7e39S8B5M .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v7e39S8B5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7e39S8B5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7e39S8B5M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7e39S8B5M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7e39S8B5M .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-v7e39S8B5M .navbar.opened {
  transition: all 0.3s;
}
.cid-v7e39S8B5M .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v7e39S8B5M .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v7e39S8B5M .navbar .navbar-logo img {
  width: auto;
}
.cid-v7e39S8B5M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7e39S8B5M .navbar.collapsed {
  justify-content: center;
}
.cid-v7e39S8B5M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7e39S8B5M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7e39S8B5M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7e39S8B5M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7e39S8B5M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7e39S8B5M .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-v7e39S8B5M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7e39S8B5M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7e39S8B5M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7e39S8B5M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7e39S8B5M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7e39S8B5M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7e39S8B5M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7e39S8B5M .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-v7e39S8B5M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7e39S8B5M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7e39S8B5M .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v7e39S8B5M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v7e39S8B5M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7e39S8B5M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v7e39S8B5M .navbar.navbar-short {
  min-height: 100px;
}
.cid-v7e39S8B5M .navbar.navbar-short .navbar-brand {
  min-height: 100px;
}
.cid-v7e39S8B5M .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v7e39S8B5M .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v7e39S8B5M .navbar-brand .navbar-caption:hover,
.cid-v7e39S8B5M .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7e39S8B5M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7e39S8B5M .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v7e39S8B5M .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7e39S8B5M .dropdown-item.active,
.cid-v7e39S8B5M .dropdown-item:active {
  background-color: transparent;
}
.cid-v7e39S8B5M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7e39S8B5M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7e39S8B5M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7e39S8B5M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 2.3rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v7e39S8B5M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v7e39S8B5M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v7e39S8B5M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7e39S8B5M ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v7e39S8B5M ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v7e39S8B5M .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v7e39S8B5M .navbar-buttons {
    text-align: left;
  }
}
.cid-v7e39S8B5M .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v7e39S8B5M .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v7e39S8B5M button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v7e39S8B5M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #004aad;
}
.cid-v7e39S8B5M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v7e39S8B5M button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7e39S8B5M button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7e39S8B5M button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v7e39S8B5M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7e39S8B5M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7e39S8B5M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7e39S8B5M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7e39S8B5M .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7e39S8B5M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7e39S8B5M .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-v7e39S8B5M .navbar {
    height: 70px;
  }
  .cid-v7e39S8B5M .navbar.opened {
    height: auto;
  }
  .cid-v7e39S8B5M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7e39S8B5M .navbar-nav {
  margin: 0 auto;
}
.cid-v7e39S8B5M .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v7e39S8B5M .nav-item .nav-link {
  padding: 8px 20px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.cid-v7e39S8B5M .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7e39S8B5M .nav-item .nav-link:hover,
.cid-v7e39S8B5M .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004aad !important;
  text-decoration-color: #004aad;
}
.cid-v7e39S8B5M .nav-item .nav-link:hover::after,
.cid-v7e39S8B5M .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v7e39S8B5M .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7e39S8B5M .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7e39S8B5M .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v7e39S8B5M .navbar {
    justify-content: flex-start !important;
  }
  .cid-v7e39S8B5M .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v7e39S8B5M .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v7e39S8B5M .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v7e39S8B5M .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v7e39S8B5M .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v7e39S8B5M .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v7e39S8B5M .content-wrap {
  min-height: 100px;
}
.cid-v7e39U77Jm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7ccb61;
}
.cid-v7e39U77Jm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e39U77Jm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e39U77Jm .items-wrapper {
  margin: 0;
}
.cid-v7e39U77Jm .items-wrapper .card {
  padding: 0;
  justify-content: center;
}
.cid-v7e39U77Jm .content-wrap {
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-v7e39U77Jm .content-wrap {
    padding-right: 0;
  }
}
.cid-v7e39U77Jm .content-wrap .label-wrapper {
  margin-bottom: 24px;
}
.cid-v7e39U77Jm .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-v7e39U77Jm .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7e39U77Jm .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 85%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7e39U77Jm .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7e39U77Jm .content-wrap .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v7e39U77Jm .content-wrap .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-v7e39U77Jm .image-wrapper {
  background-color: #f7f7f7;
  padding: 8px;
}
@media (max-width: 992px) {
  .cid-v7e39U77Jm .image-wrapper {
    margin-top: 32px;
  }
}
.cid-v7e39U77Jm .image-wrapper img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7e39U77Jm .image-wrapper img {
    height: 300px;
  }
}
.cid-v7e39U77Jm .mbr-label {
  color: #000000;
}
.cid-v7e39U77Jm .mbr-section-title {
  color: #000000;
}
.cid-v7e39U77Jm .mbr-text {
  color: #4f4f4f;
}
.cid-v7e39U77Jm .mbr-text,
.cid-v7e39U77Jm .text-wrapper {
  color: #000000;
}
.cid-v7e39VqVqC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7e39VqVqC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e39VqVqC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e39VqVqC .text-wrap {
  width: 100%;
}
.cid-v7e39VqVqC .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7e39VqVqC .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-v7e39VqVqC .list-wrap {
  margin-top: 52px;
}
.cid-v7e39VqVqC .list-title {
  margin-bottom: 10px;
  color: #000000;
}
.cid-v7e39VqVqC .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 12px;
  width: 100%;
  list-style: none;
  padding-left: 24px;
  margin-bottom: 0;
  color: #000000;
  transition: 0.4s all;
}
.cid-v7e39VqVqC .list li {
  position: relative;
  width: 100%;
  margin: 0 0 8px 0;
  color: inherit !important;
}
.cid-v7e39VqVqC .list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  width: 16px;
  height: 1px;
  background-color: currentColor;
}
.cid-v7e39WCRfG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292323;
}
.cid-v7e39WCRfG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e39WCRfG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e39WCRfG .text-wrap {
  width: 100%;
}
.cid-v7e39WCRfG .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7e39WCRfG .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-v7e39WCRfG .comment-text {
  margin-top: 40px;
  color: #ffffff;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-v7e39XYavz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7e39XYavz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e39XYavz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e39XYavz .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v7e39XYavz .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-v7e39XYavz .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-v7e39XYavz .card-col {
    padding: 20px 0 0;
  }
}
.cid-v7e39XYavz .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-v7e39XYavz .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-v7e39XYavz .card-wrapper {
    max-width: 100%;
  }
}
.cid-v7e39XYavz .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-v7e39XYavz .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-v7e39XYavz .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-v7e39XYavz .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-v7e39XYavz .image-wrapper {
    max-width: 100%;
  }
}
.cid-v7e39XYavz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v7e39XYavz .mbr-text,
.cid-v7e39XYavz .mbr-section-btn {
  color: #000000;
}
.cid-v7e39Zeqr7 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7e39Zeqr7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e39Zeqr7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e39Zeqr7 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7e39Zeqr7 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7e39Zeqr7 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7e39Zeqr7 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7e39Zeqr7 .container {
    padding: 0 16px;
  }
}
.cid-v7e39Zeqr7 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v7e39Zeqr7 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7e39Zeqr7 .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v7e39Zeqr7 .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-v7e39Zeqr7 .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7e39Zeqr7 .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-v7e39Zeqr7 .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7e39Zeqr7 .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v7e39Zeqr7 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7e39Zeqr7 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7e39Zeqr7 .mbr-section-subtitle {
  color: #000000;
}
.cid-v7e39Zeqr7 .mbr-text {
  color: #000000;
}
.cid-v7e3a0yxlD {
  padding-top: 6rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7e3a0yxlD .container {
  pointer-events: none;
  z-index: 1;
}
.cid-v7e3a0yxlD .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-v7e3a0yxlD .brand__text {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7e3a0yxlD .brand__email {
  margin-bottom: 15px;
}
.cid-v7e3a0yxlD .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-v7e3a0yxlD .footer__title {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7e3a0yxlD .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-v7e3a0yxlD .footer__items a:hover {
  color: #7ccb61 !important;
}
.cid-v7e3a0yxlD .social {
  margin-top: 30px;
}
.cid-v7e3a0yxlD .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 50%;
  margin-right: 10px;
  color: #000000;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-v7e3a0yxlD .social .social__items:hover {
  background-color: #7ccb61;
  border-color: #7ccb61;
}
.cid-v7e3a0yxlD .social .social__items:hover span {
  color: #000000 !important;
}
.cid-v7e3a0yxlD .social .social__items:last-child {
  margin-right: 0;
}
.cid-v7e3a0yxlD .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-v7e3a0yxlD .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-v7e3a0yxlD .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-v7e3a0yxlD .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
}
.cid-v7e3a0yxlD .footer__bot_items a:hover {
  color: #7ccb61 !important;
}
.cid-v7e3a0yxlD .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-v7e3a0yxlD .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-v7e3a0yxlD .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #7ccb61;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-v7e3a0yxlD .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-v7e3a0yxlD .divider {
    margin-top: 30px;
  }
  .cid-v7e3a0yxlD .footer__bottom {
    padding: 30px 0;
  }
  .cid-v7e3a0yxlD .align-right,
  .cid-v7e3a0yxlD .privacy {
    text-align: center;
  }
  .cid-v7e3a0yxlD .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-v7e3a0yxlD .privacy {
  color: #000000;
}
.cid-v7e3a0yxlD .footer__adress {
  color: #000000;
}
.cid-v7e3a2dDpO {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  border-bottom: 1px solid #e9e9e9;
  background-color: #ffffff;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}
.cid-v7e3a2dDpO .container {
  z-index: 1;
}
.cid-v7e3a2dDpO .card {
  position: relative;
  margin-bottom: 60px;
  padding: 0 45px 55px 0;
}
.cid-v7e3a2dDpO .card:hover .card__info {
  transform: translate(0px, 55px);
}
.cid-v7e3a2dDpO .card:hover .hover__socicon {
  transform: scale(1, 1);
}
.cid-v7e3a2dDpO .image__card {
  position: relative;
}
.cid-v7e3a2dDpO .image__card img {
  border-radius: 4px 4px 0 0;
  width: 100%;
  object-fit: cover;
  min-height: 300px;
}
.cid-v7e3a2dDpO .card__info {
  padding: 25px 25px 30px 50px;
  background: #ffffff;
  box-shadow: 5.994px 14.835px 30px 0px rgba(229, 234, 239, 0.5);
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  transform: translate(45px, 55px);
  transition: all 0.3s ease-in-out;
}
.cid-v7e3a2dDpO .card__title {
  margin-bottom: 5px;
  color: #000000;
}
.cid-v7e3a2dDpO .hover__socicon {
  position: absolute;
  text-align: center;
  width: 45px;
  background: #ffffff;
  box-shadow: 8px 0px 8.6px 1.4px rgba(229, 234, 239, 0.2);
  right: 0;
  top: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 100% 0%;
  transition: all 0.3s ease-in-out;
}
.cid-v7e3a2dDpO .hover__socicon > div {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}
.cid-v7e3a2dDpO .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  font-size: 20px;
  color: #1da1f2;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.cid-v7e3a2dDpO .icons__wrap:hover {
  color: #7ccb61;
}
.cid-v7e3a2dDpO .animation__background .circle1 {
  display: inline-block;
  width: 15px;
  height: 15px;
  top: 2%;
  left: 32%;
  border-radius: 50%;
  background: #ea4c89;
  position: absolute;
  animation: animationTwo 25s infinite linear;
}
.cid-v7e3a2dDpO .animation__background .circle2 {
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 6%;
  top: 42%;
  position: absolute;
  border-radius: 50%;
  background-color: #f46f30;
  animation: animationOne 32s infinite linear;
}
.cid-v7e3a2dDpO .animation__background .circle3 {
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 6%;
  bottom: 130px;
  position: absolute;
  border-radius: 50%;
  background-color: #707cff;
  animation: animationTwo 29s infinite linear;
}
.cid-v7e3a2dDpO .animation__background .circle4 {
  display: inline-block;
  width: 15px;
  height: 15px;
  right: 50%;
  top: 50%;
  position: absolute;
  border-radius: 50%;
  background-color: #7ccb61;
  animation: animationOne 27s infinite linear;
}
.cid-v7e3a2dDpO .animation__background .circle5 {
  display: inline-block;
  width: 10px;
  height: 10px;
  right: 40%;
  bottom: 20%;
  position: absolute;
  border-radius: 50%;
  background-color: #4353ff;
  animation: animationTwo 22s infinite linear;
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-v7e3a3Sd7E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7ccb61;
}
.cid-v7e3a3Sd7E .mbr-section-head {
  width: 100%;
  margin-bottom: 70px;
}
.cid-v7e3a3Sd7E .mbr-section-title {
  color: #000000;
}
.cid-v7e3a3Sd7E .mbr-section-subtitle {
  color: #000000;
  margin-top: 16px;
}
.cid-v7e3a3Sd7E .items-row {
  margin: 0;
  gap: 80px;
}
@media (max-width: 991px) {
  .cid-v7e3a3Sd7E .items-row {
    gap: 30px;
  }
}
.cid-v7e3a3Sd7E .item {
  width: calc(50% - 40px);
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7e3a3Sd7E .item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .cid-v7e3a3Sd7E .item {
    width: 100%;
  }
}
.cid-v7e3a3Sd7E .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  overflow: hidden;
}
.cid-v7e3a3Sd7E .item-img {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s all;
}
.cid-v7e3a3Sd7E .item-img img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.49253731;
  --bs-aspect-ratio: 1.49253731;
  object-fit: cover;
}
.cid-v7e3a3Sd7E .item-img:hover {
  opacity: 0.7;
}
.cid-v7e3a3Sd7E .item-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 40px 15% 40px 51px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v7e3a3Sd7E .item-content {
    padding: 40px 30px 40px 30px;
  }
}
@media (max-width: 575px) {
  .cid-v7e3a3Sd7E .item-content {
    padding: 40px 30px 40px 20px;
  }
}
.cid-v7e3a3Sd7E .item-text-box {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.cid-v7e3a3Sd7E .label-container {
  padding: 6px 13px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  margin-right: 15px;
}
.cid-v7e3a3Sd7E .label-text {
  color: #747474;
}
.cid-v7e3a3Sd7E .date-text {
  flex-grow: 1;
  color: #747474;
}
.cid-v7e3a3Sd7E .item-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-v7e3a3Sd7E .mbr-text {
  color: #000000;
  padding-top: 20px;
}
.cid-v7e3a3Sd7E .mbr-section-btn {
  margin-top: 20px;
}
.cid-v7M5uZCwbL {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7M5uZCwbL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7M5uZCwbL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7M5uZCwbL .content-wrapper {
  display: flex;
  justify-content: center;
}
.cid-v7M5uZCwbL .content-wrapper .card-wrapper {
  background-color: #ffffff;
  border: 2px solid #3a001d;
  width: 58%;
  padding: 82px;
  -webkit-flex: inherit;
}
@media (max-width: 1440px) {
  .cid-v7M5uZCwbL .content-wrapper .card-wrapper {
    width: 68%;
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .cid-v7M5uZCwbL .content-wrapper .card-wrapper {
    width: 100%;
    padding: 22px;
  }
}
.cid-v7M5uZCwbL .content-wrapper .card-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7M5uZCwbL .content-wrapper .card-wrapper .logo-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v7M5uZCwbL .content-wrapper .card-wrapper .logo-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: inline-block;
}
.cid-v7M5uZCwbL .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7M5uZCwbL .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-v7M5uZCwbL .content-wrapper .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 90%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-v7M5uZCwbL .content-wrapper .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7M5uZCwbL .content-wrapper .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v7M5uZCwbL .mbr-section-title {
  color: #3a001d;
}
.cid-v7M5uZCwbL .mbr-text,
.cid-v7M5uZCwbL .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v7M5uZCwbL .mbr-section-title,
.cid-v7M5uZCwbL .mbr-section-btn,
.cid-v7M5uZCwbL .title-wrapper,
.cid-v7M5uZCwbL .logo-wrapper {
  text-align: center;
}
.cid-v7M5uZCwbL .mbr-section-title,
.cid-v7M5uZCwbL .mbr-section-btn,
.cid-v7M5uZCwbL .logo-wrapper,
.cid-v7M5uZCwbL .title-wrapper {
  color: #000000;
}
.cid-v7e3a5us9U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7e3a5us9U .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e3a5us9U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e3a5us9U .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7e3a5us9U .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7e3a5us9U .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7e3a5us9U .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7e3a5us9U .container {
    padding: 0 16px;
  }
}
.cid-v7e3a5us9U .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v7e3a5us9U .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7e3a5us9U .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v7e3a5us9U .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-v7e3a5us9U .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7e3a5us9U .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-v7e3a5us9U .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7e3a5us9U .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v7e3a5us9U .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7e3a5us9U .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7e3a5us9U .mbr-section-subtitle {
  color: #000000;
}
.cid-v7e3a5us9U .mbr-text {
  color: #000000;
}
.cid-v7e3a5us9U .mbr-text,
.cid-v7e3a5us9U .mbr-section-btn {
  text-align: center;
}
.cid-v7M5meu84c {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v7M5meu84c .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7M5meu84c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7M5meu84c .section-head {
  margin-bottom: 50px;
}
.cid-v7M5meu84c .mbr-section-title {
  color: #000000;
}
.cid-v7M5meu84c .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-v7M5meu84c .card {
  padding: 0;
}
.cid-v7M5meu84c .card-header {
  padding: 0;
  margin-bottom: 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #e2e2e2;
}
.cid-v7M5meu84c .panel-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 0;
}
.cid-v7M5meu84c .panel-title-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-right: 14px;
  color: #000000;
}
.cid-v7M5meu84c .panel-title-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000000;
  transition: .3s all;
}
.cid-v7M5meu84c .panel-title-icon span:nth-child(1) {
  width: 100%;
  height: 2px;
}
.cid-v7M5meu84c .panel-title-icon span:nth-child(2) {
  width: 2px;
  height: 100%;
}
.cid-v7M5meu84c .panel-title[aria-expanded="true"] .panel-title-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cid-v7M5meu84c .sign {
  display: none !important;
}
.cid-v7M5meu84c .panel-title-edit {
  color: #000000;
}
.cid-v7M5meu84c .panel-body {
  padding: 15px 0;
}
.cid-v7M5meu84c .panel-text {
  color: #747474;
  margin-bottom: 10px;
}
.cid-v7e3a8gmH9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7e3a8gmH9 .img-container {
  position: relative;
}
.cid-v7e3a8gmH9 .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-v7e3a8gmH9 .image-wrapper img {
  width: 100%;
  height: 46vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-v7e3a8gmH9 .image-wrapper img {
    height: auto;
  }
}
.cid-v7e3a8gmH9 .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-v7e3a8gmH9 .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7e3a8gmH9 .mbr-text {
  padding-top: 10px;
  color: #000000;
}
.cid-v7e3ad6qxF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7e3ad6qxF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e3ad6qxF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v7e3ad6qxF .container {
    padding: 0 20px;
  }
}
.cid-v7e3ad6qxF .row {
  margin: 0;
}
.cid-v7e3ad6qxF .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7e3ad6qxF .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v7e3ad6qxF .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v7e3ad6qxF .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v7e3ad6qxF .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v7e3ad6qxF .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v7e3ad6qxF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7e3agCeuo {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #7ccb61;
}
.cid-v7e3agCeuo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e3agCeuo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e3agCeuo .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #000000;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-v7e3agCeuo .label-text {
  color: #000000;
}
.cid-v7e3agCeuo .mbr-title {
  margin-top: 30px;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-v7e3agCeuo .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-v7e3agCeuo .mbr-subtitle {
  margin-top: 40px;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7e3agCeuo .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-v7e3agCeuo .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-v7e3akIncR {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #292323;
}
.cid-v7e3akIncR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e3akIncR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e3akIncR .title-wrapper {
  padding-left: 35%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7e3akIncR .title-wrapper {
    padding-left: 0;
  }
}
.cid-v7e3akIncR .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-v7e3akIncR .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v7e3akIncR .mbr-section-btn {
  padding-left: 35%;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-v7e3akIncR .mbr-section-btn {
    padding-left: 0;
    margin-top: 20px;
  }
}
.cid-v7e3akIncR .mbr-section-btn .btn::after,
.cid-v7e3akIncR .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-v7e3akIncR .mbr-section-btn .btn:hover,
.cid-v7e3akIncR .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-v7e3akIncR .mbr-section-btn .btn:hover::after,
.cid-v7e3akIncR .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-v7e3akIncR .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 2px solid #adadad;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-v7e3akIncR .panel-group .card {
    padding: 20px 0;
  }
}
.cid-v7e3akIncR .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
}
.cid-v7e3akIncR .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.cid-v7e3akIncR .panel-group .card .card-header .panel-title .panel-number {
  position: absolute;
  left: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7e3akIncR .panel-group .card .card-header .panel-title .panel-number {
    display: none;
  }
}
.cid-v7e3akIncR .panel-group .card .card-header .panel-title .panel-title-edit {
  padding-left: 35%;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7e3akIncR .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-left: 0;
  }
}
.cid-v7e3akIncR .panel-group .card .card-header .panel-title .arrow-wrapper {
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(135deg, transparent 50%, #adadad 50%);
  transition: all .3s ease;
}
.cid-v7e3akIncR .panel-group .card .card-header .panel-title:not(.collapsed) .arrow-wrapper {
  background-image: linear-gradient(45deg, transparent 50%, #adadad 50%);
}
.cid-v7e3akIncR .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-v7e3akIncR .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
  }
}
.cid-v7e3akIncR .panel-group .card .panel-collapse .panel-body .panel-text {
  padding-left: 35%;
  display: inline-block;
  margin-bottom: 0;
  width: 90%;
}
@media (max-width: 992px) {
  .cid-v7e3akIncR .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
    padding-left: 0;
  }
}
.cid-v7e3akIncR .mbr-section-title {
  color: #ffffff;
}
.cid-v7e3akIncR .mbr-tag {
  color: #adadad;
}
.cid-v7e3akIncR .panel-number {
  color: #ffffff;
}
.cid-v7e3akIncR .panel-title-edit {
  color: #ffffff;
}
.cid-v7e3akIncR .panel-text {
  color: #c7c7c7;
}
.cid-v7e3akIncR .panel-text,
.cid-v7e3akIncR .panel-body {
  color: #ffffff;
}
.cid-v7ejEUZj4I {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v7ejEUZj4I nav.navbar {
  position: fixed;
}
.cid-v7ejEUZj4I .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-v7ejEUZj4I .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v7ejEUZj4I .dropdown-item {
  border: none !important;
  background: #000000 !important;
  font-weight: 400;
}
.cid-v7ejEUZj4I .dropdown-item:hover,
.cid-v7ejEUZj4I .dropdown-item:focus {
  background: #000000 !important;
  color: #004aad !important;
}
.cid-v7ejEUZj4I .dropdown-item:hover span {
  color: white;
}
.cid-v7ejEUZj4I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7ejEUZj4I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7ejEUZj4I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7ejEUZj4I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.2rem;
}
.cid-v7ejEUZj4I .nav-link {
  position: relative;
}
.cid-v7ejEUZj4I .container {
  display: flex;
  margin: 0 auto;
  max-width: 1100px;
}
@media (min-width: 992px) {
  .cid-v7ejEUZj4I .container {
    flex-wrap: nowrap;
  }
}
.cid-v7ejEUZj4I .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v7ejEUZj4I .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v7ejEUZj4I .dropdown-menu,
.cid-v7ejEUZj4I .navbar.opened {
  background: #000000 !important;
}
.cid-v7ejEUZj4I .nav-item:focus,
.cid-v7ejEUZj4I .nav-link:focus {
  outline: none;
}
.cid-v7ejEUZj4I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7ejEUZj4I .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v7ejEUZj4I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7ejEUZj4I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7ejEUZj4I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7ejEUZj4I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7ejEUZj4I .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-v7ejEUZj4I .navbar.opened {
  transition: all 0.3s;
}
.cid-v7ejEUZj4I .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v7ejEUZj4I .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-v7ejEUZj4I .navbar .navbar-logo img {
  width: auto;
}
.cid-v7ejEUZj4I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7ejEUZj4I .navbar.collapsed {
  justify-content: center;
}
.cid-v7ejEUZj4I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7ejEUZj4I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7ejEUZj4I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v7ejEUZj4I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7ejEUZj4I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7ejEUZj4I .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-v7ejEUZj4I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7ejEUZj4I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7ejEUZj4I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7ejEUZj4I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7ejEUZj4I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7ejEUZj4I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7ejEUZj4I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7ejEUZj4I .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-v7ejEUZj4I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7ejEUZj4I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7ejEUZj4I .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v7ejEUZj4I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v7ejEUZj4I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7ejEUZj4I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v7ejEUZj4I .navbar.navbar-short {
  min-height: 100px;
}
.cid-v7ejEUZj4I .navbar.navbar-short .navbar-brand {
  min-height: 100px;
}
.cid-v7ejEUZj4I .navbar-brand {
  min-height: 100px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v7ejEUZj4I .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v7ejEUZj4I .navbar-brand .navbar-caption:hover,
.cid-v7ejEUZj4I .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7ejEUZj4I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7ejEUZj4I .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v7ejEUZj4I .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #004aad !important;
}
.cid-v7ejEUZj4I .dropdown-item.active,
.cid-v7ejEUZj4I .dropdown-item:active {
  background-color: transparent;
}
.cid-v7ejEUZj4I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7ejEUZj4I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7ejEUZj4I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7ejEUZj4I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 2.3rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v7ejEUZj4I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v7ejEUZj4I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v7ejEUZj4I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7ejEUZj4I ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v7ejEUZj4I ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v7ejEUZj4I .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v7ejEUZj4I .navbar-buttons {
    text-align: left;
  }
}
.cid-v7ejEUZj4I .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
}
@media (max-width: 575px) {
  .cid-v7ejEUZj4I .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v7ejEUZj4I button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v7ejEUZj4I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #004aad;
}
.cid-v7ejEUZj4I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v7ejEUZj4I button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7ejEUZj4I button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v7ejEUZj4I button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v7ejEUZj4I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7ejEUZj4I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7ejEUZj4I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7ejEUZj4I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7ejEUZj4I .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7ejEUZj4I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7ejEUZj4I .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-v7ejEUZj4I .navbar {
    height: 70px;
  }
  .cid-v7ejEUZj4I .navbar.opened {
    height: auto;
  }
  .cid-v7ejEUZj4I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7ejEUZj4I .navbar-nav {
  margin: 0 auto;
}
.cid-v7ejEUZj4I .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v7ejEUZj4I .nav-item .nav-link {
  padding: 8px 20px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.cid-v7ejEUZj4I .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v7ejEUZj4I .nav-item .nav-link:hover,
.cid-v7ejEUZj4I .nav-item .nav-link:focus {
  background-color: transparent;
  color: #004aad !important;
  text-decoration-color: #004aad;
}
.cid-v7ejEUZj4I .nav-item .nav-link:hover::after,
.cid-v7ejEUZj4I .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v7ejEUZj4I .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v7ejEUZj4I .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v7ejEUZj4I .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v7ejEUZj4I .navbar {
    justify-content: flex-start !important;
  }
  .cid-v7ejEUZj4I .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v7ejEUZj4I .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v7ejEUZj4I .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v7ejEUZj4I .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v7ejEUZj4I .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v7ejEUZj4I .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v7ejEUZj4I .content-wrap {
  min-height: 100px;
}
.cid-v7ejEXlCfl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7ccb61;
}
.cid-v7ejEXlCfl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ejEXlCfl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ejEXlCfl .items-wrapper {
  margin: 0;
}
.cid-v7ejEXlCfl .items-wrapper .card {
  padding: 0;
  justify-content: center;
}
.cid-v7ejEXlCfl .content-wrap {
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-v7ejEXlCfl .content-wrap {
    padding-right: 0;
  }
}
.cid-v7ejEXlCfl .content-wrap .label-wrapper {
  margin-bottom: 24px;
}
.cid-v7ejEXlCfl .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-v7ejEXlCfl .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7ejEXlCfl .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 85%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7ejEXlCfl .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7ejEXlCfl .content-wrap .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v7ejEXlCfl .content-wrap .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-v7ejEXlCfl .image-wrapper {
  background-color: #f7f7f7;
  padding: 8px;
}
@media (max-width: 992px) {
  .cid-v7ejEXlCfl .image-wrapper {
    margin-top: 32px;
  }
}
.cid-v7ejEXlCfl .image-wrapper img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7ejEXlCfl .image-wrapper img {
    height: 300px;
  }
}
.cid-v7ejEXlCfl .mbr-label {
  color: #000000;
}
.cid-v7ejEXlCfl .mbr-section-title {
  color: #000000;
}
.cid-v7ejEXlCfl .mbr-text {
  color: #4f4f4f;
}
.cid-v7ejEXlCfl .mbr-text,
.cid-v7ejEXlCfl .text-wrapper {
  color: #000000;
}
.cid-v7ejEYT93F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7ejEYT93F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ejEYT93F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ejEYT93F .text-wrap {
  width: 100%;
}
.cid-v7ejEYT93F .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7ejEYT93F .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-v7ejEYT93F .list-wrap {
  margin-top: 52px;
}
.cid-v7ejEYT93F .list-title {
  margin-bottom: 10px;
  color: #000000;
}
.cid-v7ejEYT93F .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 12px;
  width: 100%;
  list-style: none;
  padding-left: 24px;
  margin-bottom: 0;
  color: #000000;
  transition: 0.4s all;
}
.cid-v7ejEYT93F .list li {
  position: relative;
  width: 100%;
  margin: 0 0 8px 0;
  color: inherit !important;
}
.cid-v7ejEYT93F .list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  width: 16px;
  height: 1px;
  background-color: currentColor;
}
.cid-v7ejF0WGKB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292323;
}
.cid-v7ejF0WGKB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ejF0WGKB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ejF0WGKB .text-wrap {
  width: 100%;
}
.cid-v7ejF0WGKB .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7ejF0WGKB .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-v7ejF0WGKB .comment-text {
  margin-top: 40px;
  color: #ffffff;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-v7ejF299JI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7ejF299JI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ejF299JI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ejF299JI .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v7ejF299JI .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-v7ejF299JI .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-v7ejF299JI .card-col {
    padding: 20px 0 0;
  }
}
.cid-v7ejF299JI .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-v7ejF299JI .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-v7ejF299JI .card-wrapper {
    max-width: 100%;
  }
}
.cid-v7ejF299JI .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-v7ejF299JI .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-v7ejF299JI .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-v7ejF299JI .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-v7ejF299JI .image-wrapper {
    max-width: 100%;
  }
}
.cid-v7ejF299JI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v7ejF299JI .mbr-text,
.cid-v7ejF299JI .mbr-section-btn {
  color: #000000;
}
.cid-v7ejF3k01b {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7ejF3k01b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ejF3k01b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ejF3k01b .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7ejF3k01b .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7ejF3k01b .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7ejF3k01b .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7ejF3k01b .container {
    padding: 0 16px;
  }
}
.cid-v7ejF3k01b .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v7ejF3k01b .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7ejF3k01b .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v7ejF3k01b .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-v7ejF3k01b .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7ejF3k01b .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-v7ejF3k01b .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7ejF3k01b .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v7ejF3k01b .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7ejF3k01b .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7ejF3k01b .mbr-section-subtitle {
  color: #000000;
}
.cid-v7ejF3k01b .mbr-text {
  color: #000000;
}
.cid-v7ejF4rrYc {
  padding-top: 6rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7ejF4rrYc .container {
  pointer-events: none;
  z-index: 1;
}
.cid-v7ejF4rrYc .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-v7ejF4rrYc .brand__text {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7ejF4rrYc .brand__email {
  margin-bottom: 15px;
}
.cid-v7ejF4rrYc .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-v7ejF4rrYc .footer__title {
  padding: 12px 0 25px;
  color: #000000;
}
.cid-v7ejF4rrYc .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-v7ejF4rrYc .footer__items a:hover {
  color: #7ccb61 !important;
}
.cid-v7ejF4rrYc .social {
  margin-top: 30px;
}
.cid-v7ejF4rrYc .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 50%;
  margin-right: 10px;
  color: #000000;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-v7ejF4rrYc .social .social__items:hover {
  background-color: #7ccb61;
  border-color: #7ccb61;
}
.cid-v7ejF4rrYc .social .social__items:hover span {
  color: #000000 !important;
}
.cid-v7ejF4rrYc .social .social__items:last-child {
  margin-right: 0;
}
.cid-v7ejF4rrYc .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-v7ejF4rrYc .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-v7ejF4rrYc .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-v7ejF4rrYc .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
}
.cid-v7ejF4rrYc .footer__bot_items a:hover {
  color: #7ccb61 !important;
}
.cid-v7ejF4rrYc .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-v7ejF4rrYc .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-v7ejF4rrYc .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #7ccb61;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-v7ejF4rrYc .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-v7ejF4rrYc .divider {
    margin-top: 30px;
  }
  .cid-v7ejF4rrYc .footer__bottom {
    padding: 30px 0;
  }
  .cid-v7ejF4rrYc .align-right,
  .cid-v7ejF4rrYc .privacy {
    text-align: center;
  }
  .cid-v7ejF4rrYc .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-v7ejF4rrYc .privacy {
  color: #000000;
}
.cid-v7ejF4rrYc .footer__adress {
  color: #000000;
}
.cid-v7ejF6bEa4 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  border-bottom: 1px solid #e9e9e9;
  background-color: #ffffff;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}
.cid-v7ejF6bEa4 .container {
  z-index: 1;
}
.cid-v7ejF6bEa4 .card {
  position: relative;
  margin-bottom: 60px;
  padding: 0 45px 55px 0;
}
.cid-v7ejF6bEa4 .card:hover .card__info {
  transform: translate(0px, 55px);
}
.cid-v7ejF6bEa4 .card:hover .hover__socicon {
  transform: scale(1, 1);
}
.cid-v7ejF6bEa4 .image__card {
  position: relative;
}
.cid-v7ejF6bEa4 .image__card img {
  border-radius: 4px 4px 0 0;
  width: 100%;
  object-fit: cover;
  min-height: 300px;
}
.cid-v7ejF6bEa4 .card__info {
  padding: 25px 25px 30px 50px;
  background: #ffffff;
  box-shadow: 5.994px 14.835px 30px 0px rgba(229, 234, 239, 0.5);
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  transform: translate(45px, 55px);
  transition: all 0.3s ease-in-out;
}
.cid-v7ejF6bEa4 .card__title {
  margin-bottom: 5px;
  color: #000000;
}
.cid-v7ejF6bEa4 .hover__socicon {
  position: absolute;
  text-align: center;
  width: 45px;
  background: #ffffff;
  box-shadow: 8px 0px 8.6px 1.4px rgba(229, 234, 239, 0.2);
  right: 0;
  top: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: 100% 0%;
  transition: all 0.3s ease-in-out;
}
.cid-v7ejF6bEa4 .hover__socicon > div {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}
.cid-v7ejF6bEa4 .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  font-size: 20px;
  color: #1da1f2;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.cid-v7ejF6bEa4 .icons__wrap:hover {
  color: #7ccb61;
}
.cid-v7ejF6bEa4 .animation__background .circle1 {
  display: inline-block;
  width: 15px;
  height: 15px;
  top: 2%;
  left: 32%;
  border-radius: 50%;
  background: #ea4c89;
  position: absolute;
  animation: animationTwo 25s infinite linear;
}
.cid-v7ejF6bEa4 .animation__background .circle2 {
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 6%;
  top: 42%;
  position: absolute;
  border-radius: 50%;
  background-color: #f46f30;
  animation: animationOne 32s infinite linear;
}
.cid-v7ejF6bEa4 .animation__background .circle3 {
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 6%;
  bottom: 130px;
  position: absolute;
  border-radius: 50%;
  background-color: #707cff;
  animation: animationTwo 29s infinite linear;
}
.cid-v7ejF6bEa4 .animation__background .circle4 {
  display: inline-block;
  width: 15px;
  height: 15px;
  right: 50%;
  top: 50%;
  position: absolute;
  border-radius: 50%;
  background-color: #7ccb61;
  animation: animationOne 27s infinite linear;
}
.cid-v7ejF6bEa4 .animation__background .circle5 {
  display: inline-block;
  width: 10px;
  height: 10px;
  right: 40%;
  bottom: 20%;
  position: absolute;
  border-radius: 50%;
  background-color: #4353ff;
  animation: animationTwo 22s infinite linear;
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-v7M5H3s7cK {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v7M5H3s7cK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7M5H3s7cK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7M5H3s7cK .content-wrapper {
  display: flex;
  justify-content: center;
}
.cid-v7M5H3s7cK .content-wrapper .card-wrapper {
  background-color: #ffffff;
  border: 2px solid #3a001d;
  width: 58%;
  padding: 82px;
  -webkit-flex: inherit;
}
@media (max-width: 1440px) {
  .cid-v7M5H3s7cK .content-wrapper .card-wrapper {
    width: 68%;
    padding: 25px;
  }
}
@media (max-width: 992px) {
  .cid-v7M5H3s7cK .content-wrapper .card-wrapper {
    width: 100%;
    padding: 22px;
  }
}
.cid-v7M5H3s7cK .content-wrapper .card-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7M5H3s7cK .content-wrapper .card-wrapper .logo-wrapper {
    margin-bottom: 22px;
  }
}
.cid-v7M5H3s7cK .content-wrapper .card-wrapper .logo-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: inline-block;
}
.cid-v7M5H3s7cK .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7M5H3s7cK .content-wrapper .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-v7M5H3s7cK .content-wrapper .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 90%;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-v7M5H3s7cK .content-wrapper .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7M5H3s7cK .content-wrapper .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v7M5H3s7cK .mbr-section-title {
  color: #3a001d;
}
.cid-v7M5H3s7cK .mbr-text,
.cid-v7M5H3s7cK .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v7M5H3s7cK .mbr-section-title,
.cid-v7M5H3s7cK .mbr-section-btn,
.cid-v7M5H3s7cK .title-wrapper,
.cid-v7M5H3s7cK .logo-wrapper {
  text-align: center;
}
.cid-v7M5H3s7cK .mbr-section-title,
.cid-v7M5H3s7cK .mbr-section-btn,
.cid-v7M5H3s7cK .logo-wrapper,
.cid-v7M5H3s7cK .title-wrapper {
  color: #000000;
}
.cid-v7ejF80wvL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7ccb61;
}
.cid-v7ejF80wvL .mbr-section-head {
  width: 100%;
  margin-bottom: 70px;
}
.cid-v7ejF80wvL .mbr-section-title {
  color: #000000;
}
.cid-v7ejF80wvL .mbr-section-subtitle {
  color: #000000;
  margin-top: 16px;
}
.cid-v7ejF80wvL .items-row {
  margin: 0;
  gap: 80px;
}
@media (max-width: 991px) {
  .cid-v7ejF80wvL .items-row {
    gap: 30px;
  }
}
.cid-v7ejF80wvL .item {
  width: calc(50% - 40px);
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7ejF80wvL .item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .cid-v7ejF80wvL .item {
    width: 100%;
  }
}
.cid-v7ejF80wvL .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  overflow: hidden;
}
.cid-v7ejF80wvL .item-img {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s all;
}
.cid-v7ejF80wvL .item-img img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.49253731;
  --bs-aspect-ratio: 1.49253731;
  object-fit: cover;
}
.cid-v7ejF80wvL .item-img:hover {
  opacity: 0.7;
}
.cid-v7ejF80wvL .item-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 40px 15% 40px 51px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v7ejF80wvL .item-content {
    padding: 40px 30px 40px 30px;
  }
}
@media (max-width: 575px) {
  .cid-v7ejF80wvL .item-content {
    padding: 40px 30px 40px 20px;
  }
}
.cid-v7ejF80wvL .item-text-box {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.cid-v7ejF80wvL .label-container {
  padding: 6px 13px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  margin-right: 15px;
}
.cid-v7ejF80wvL .label-text {
  color: #747474;
}
.cid-v7ejF80wvL .date-text {
  flex-grow: 1;
  color: #747474;
}
.cid-v7ejF80wvL .item-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-v7ejF80wvL .mbr-text {
  color: #000000;
  padding-top: 20px;
}
.cid-v7ejF80wvL .mbr-section-btn {
  margin-top: 20px;
}
.cid-v7ejF9tkPw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7ejF9tkPw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ejF9tkPw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ejF9tkPw .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v7ejF9tkPw .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7ejF9tkPw .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-v7ejF9tkPw .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-v7ejF9tkPw .container {
    padding: 0 16px;
  }
}
.cid-v7ejF9tkPw .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v7ejF9tkPw .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7ejF9tkPw .content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v7ejF9tkPw .content-wrapper {
    padding: 35px 15px;
    display: block;
  }
}
.cid-v7ejF9tkPw .content-wrapper .mbr-section-subtitle {
  width: 42%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7ejF9tkPw .content-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-v7ejF9tkPw .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7ejF9tkPw .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-v7ejF9tkPw .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v7ejF9tkPw .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7ejF9tkPw .mbr-section-subtitle {
  color: #000000;
}
.cid-v7ejF9tkPw .mbr-text {
  color: #000000;
}
.cid-v7ejF9tkPw .mbr-text,
.cid-v7ejF9tkPw .mbr-section-btn {
  text-align: center;
}
.cid-v7M5AAtgWM {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v7M5AAtgWM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7M5AAtgWM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7M5AAtgWM .section-head {
  margin-bottom: 50px;
}
.cid-v7M5AAtgWM .mbr-section-title {
  color: #000000;
}
.cid-v7M5AAtgWM .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-v7M5AAtgWM .card {
  padding: 0;
}
.cid-v7M5AAtgWM .card-header {
  padding: 0;
  margin-bottom: 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #e2e2e2;
}
.cid-v7M5AAtgWM .panel-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 0;
}
.cid-v7M5AAtgWM .panel-title-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-right: 14px;
  color: #000000;
}
.cid-v7M5AAtgWM .panel-title-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000000;
  transition: .3s all;
}
.cid-v7M5AAtgWM .panel-title-icon span:nth-child(1) {
  width: 100%;
  height: 2px;
}
.cid-v7M5AAtgWM .panel-title-icon span:nth-child(2) {
  width: 2px;
  height: 100%;
}
.cid-v7M5AAtgWM .panel-title[aria-expanded="true"] .panel-title-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cid-v7M5AAtgWM .sign {
  display: none !important;
}
.cid-v7M5AAtgWM .panel-title-edit {
  color: #000000;
}
.cid-v7M5AAtgWM .panel-body {
  padding: 15px 0;
}
.cid-v7M5AAtgWM .panel-text {
  color: #747474;
  margin-bottom: 10px;
}
.cid-v7ejFehBii {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7ejFehBii .img-container {
  position: relative;
}
.cid-v7ejFehBii .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-v7ejFehBii .image-wrapper img {
  width: 100%;
  height: 46vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-v7ejFehBii .image-wrapper img {
    height: auto;
  }
}
.cid-v7ejFehBii .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-v7ejFehBii .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v7ejFehBii .mbr-text {
  padding-top: 10px;
  color: #000000;
}
.cid-v7ejFi176r {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #7ccb61;
}
.cid-v7ejFi176r .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ejFi176r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ejFi176r .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #000000;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-v7ejFi176r .label-text {
  color: #000000;
}
.cid-v7ejFi176r .mbr-title {
  margin-top: 30px;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-v7ejFi176r .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-v7ejFi176r .mbr-subtitle {
  margin-top: 40px;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7ejFi176r .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-v7ejFi176r .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-v7ejFjHIZv {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #292323;
}
.cid-v7ejFjHIZv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ejFjHIZv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ejFjHIZv .title-wrapper {
  padding-left: 35%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7ejFjHIZv .title-wrapper {
    padding-left: 0;
  }
}
.cid-v7ejFjHIZv .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-v7ejFjHIZv .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v7ejFjHIZv .mbr-section-btn {
  padding-left: 35%;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-v7ejFjHIZv .mbr-section-btn {
    padding-left: 0;
    margin-top: 20px;
  }
}
.cid-v7ejFjHIZv .mbr-section-btn .btn::after,
.cid-v7ejFjHIZv .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-v7ejFjHIZv .mbr-section-btn .btn:hover,
.cid-v7ejFjHIZv .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-v7ejFjHIZv .mbr-section-btn .btn:hover::after,
.cid-v7ejFjHIZv .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-v7ejFjHIZv .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 2px solid #adadad;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-v7ejFjHIZv .panel-group .card {
    padding: 20px 0;
  }
}
.cid-v7ejFjHIZv .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
}
.cid-v7ejFjHIZv .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.cid-v7ejFjHIZv .panel-group .card .card-header .panel-title .panel-number {
  position: absolute;
  left: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7ejFjHIZv .panel-group .card .card-header .panel-title .panel-number {
    display: none;
  }
}
.cid-v7ejFjHIZv .panel-group .card .card-header .panel-title .panel-title-edit {
  padding-left: 35%;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7ejFjHIZv .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-left: 0;
  }
}
.cid-v7ejFjHIZv .panel-group .card .card-header .panel-title .arrow-wrapper {
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(135deg, transparent 50%, #adadad 50%);
  transition: all .3s ease;
}
.cid-v7ejFjHIZv .panel-group .card .card-header .panel-title:not(.collapsed) .arrow-wrapper {
  background-image: linear-gradient(45deg, transparent 50%, #adadad 50%);
}
.cid-v7ejFjHIZv .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-v7ejFjHIZv .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
  }
}
.cid-v7ejFjHIZv .panel-group .card .panel-collapse .panel-body .panel-text {
  padding-left: 35%;
  display: inline-block;
  margin-bottom: 0;
  width: 90%;
}
@media (max-width: 992px) {
  .cid-v7ejFjHIZv .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
    padding-left: 0;
  }
}
.cid-v7ejFjHIZv .mbr-section-title {
  color: #ffffff;
}
.cid-v7ejFjHIZv .mbr-tag {
  color: #adadad;
}
.cid-v7ejFjHIZv .panel-number {
  color: #ffffff;
}
.cid-v7ejFjHIZv .panel-title-edit {
  color: #ffffff;
}
.cid-v7ejFjHIZv .panel-text {
  color: #c7c7c7;
}
.cid-v7ejFjHIZv .panel-text,
.cid-v7ejFjHIZv .panel-body {
  color: #ffffff;
}
