body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Arimo', sans-serif;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: -0.9px;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Arimo', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -0.9px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Arimo', sans-serif;
  font-size: 1rem;
  line-height: 1.867;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Arimo', sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Arimo', sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 11px 35px;
  border-radius: 3px;
}
.btn-sm {
  padding: 15px 35px;
  border-radius: 3px;
}
.btn-md {
  padding: 18px 50px;
  border-radius: 3px;
}
.btn-lg {
  padding: 19px 50px;
  border-radius: 3px;
}
.bg-primary {
  background-color: #5d76b4 !important;
}
.bg-success {
  background-color: #37c5ab !important;
}
.bg-info {
  background-color: #796eff !important;
}
.bg-warning {
  background-color: #fd612c !important;
}
.bg-danger {
  background-color: #e0ec24 !important;
}
.btn-primary {
  box-shadow: 0 15px 30px 0 rgba(93, 118, 180, 0.15);
}
.btn-primary,
.btn-primary:active {
  background-color: #5d76b4 !important;
  border-color: #5d76b4 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #465e98 !important;
  border-color: #465e98 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #465e98 !important;
  border-color: #465e98 !important;
}
.btn-primary:before {
  background: #5d76b4;
}
.btn-primary:hover {
  color: #ffffff !important;
  border-color: #5d76b4 !important;
  box-shadow: 0 15px 30px 0 rgba(93, 118, 180, 0.15);
}
.btn-secondary {
  box-shadow: 0 15px 30px 0 rgba(39, 50, 64, 0.15);
}
.btn-secondary,
.btn-secondary:active {
  background-color: #273240 !important;
  border-color: #273240 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #141920 !important;
  border-color: #141920 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #141920 !important;
  border-color: #141920 !important;
}
.btn-secondary:before {
  background: #273240;
}
.btn-secondary:hover {
  color: #ffffff !important;
  border-color: #273240 !important;
  box-shadow: 0 15px 30px 0 rgba(39, 50, 64, 0.15);
}
.btn-info {
  box-shadow: 0 15px 30px 0 rgba(121, 110, 255, 0.15);
}
.btn-info,
.btn-info:active {
  background-color: #796eff !important;
  border-color: #796eff !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #4a3bff !important;
  border-color: #4a3bff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a3bff !important;
  border-color: #4a3bff !important;
}
.btn-info:before {
  background: #796eff;
}
.btn-info:hover {
  color: #ffffff !important;
  border-color: #796eff !important;
  box-shadow: 0 15px 30px 0 rgba(121, 110, 255, 0.15);
}
.btn-success {
  box-shadow: 0 15px 30px 0 rgba(55, 197, 171, 0.15);
}
.btn-success,
.btn-success:active {
  background-color: #37c5ab !important;
  border-color: #37c5ab !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2c9d88 !important;
  border-color: #2c9d88 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c9d88 !important;
  border-color: #2c9d88 !important;
}
.btn-success:before {
  background: #37c5ab;
}
.btn-success:hover {
  color: #000000 !important;
  border-color: #37c5ab !important;
  box-shadow: 0 15px 30px 0 rgba(55, 197, 171, 0.15);
}
.btn-warning {
  box-shadow: 0 15px 30px 0 rgba(253, 97, 44, 0.15);
}
.btn-warning,
.btn-warning:active {
  background-color: #fd612c !important;
  border-color: #fd612c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #f44002 !important;
  border-color: #f44002 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #f44002 !important;
  border-color: #f44002 !important;
}
.btn-warning:before {
  background: #fd612c;
}
.btn-warning:hover {
  color: #ffffff !important;
  border-color: #fd612c !important;
  box-shadow: 0 15px 30px 0 rgba(253, 97, 44, 0.15);
}
.btn-danger {
  box-shadow: 0 15px 30px 0 rgba(224, 236, 36, 0.15);
}
.btn-danger,
.btn-danger:active {
  background-color: #e0ec24 !important;
  border-color: #e0ec24 !important;
  color: #0f1001 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #c0cb12 !important;
  border-color: #c0cb12 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #0f1001 !important;
  background-color: #c0cb12 !important;
  border-color: #c0cb12 !important;
}
.btn-danger:before {
  background: #e0ec24;
}
.btn-danger:hover {
  color: #000000 !important;
  border-color: #e0ec24 !important;
  box-shadow: 0 15px 30px 0 rgba(224, 236, 36, 0.15);
}
.btn-white {
  color: #5d76b4 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 15px 30px 0 rgba(93, 118, 180, 0.15);
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:before {
  background: #5d76b4;
}
.btn-white:hover {
  color: #ffffff !important;
  border-color: #5d76b4 !important;
  background-color: #ffffff !important;
  box-shadow: 0 15px 30px 0 rgba(255, 255, 255, 0.15);
}
.btn-black {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-black,
.btn-black:active {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:before {
  background: #4d4d4d;
}
.btn-black:hover {
  border-color: #4d4d4d !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #5d76b4;
  color: #5d76b4;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #5d76b4 !important;
  border-color: #5d76b4 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5d76b4 !important;
  border-color: #5d76b4 !important;
}
.btn-primary-outline:before {
  background: #5d76b4;
}
.btn-primary-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(93, 118, 180, 0.15);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #273240;
  color: #273240;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #273240 !important;
  border-color: #273240 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #273240 !important;
  border-color: #273240 !important;
}
.btn-secondary-outline:before {
  background: #273240;
}
.btn-secondary-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(39, 50, 64, 0.15);
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #796eff;
  color: #796eff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #796eff !important;
  border-color: #796eff !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #796eff !important;
  border-color: #796eff !important;
}
.btn-info-outline:before {
  background: #796eff;
}
.btn-info-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(121, 110, 255, 0.15);
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #37c5ab;
  color: #37c5ab;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #37c5ab !important;
  border-color: #37c5ab !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #37c5ab !important;
  border-color: #37c5ab !important;
}
.btn-success-outline:before {
  background: #37c5ab;
}
.btn-success-outline:hover {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(55, 197, 171, 0.15);
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #fd612c;
  color: #fd612c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #fd612c !important;
  border-color: #fd612c !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #fd612c !important;
  border-color: #fd612c !important;
}
.btn-warning-outline:before {
  background: #fd612c;
}
.btn-warning-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(253, 97, 44, 0.15);
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e0ec24;
  color: #e0ec24;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0f1001 !important;
  background-color: #e0ec24 !important;
  border-color: #e0ec24 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #0f1001 !important;
  background-color: #e0ec24 !important;
  border-color: #e0ec24 !important;
}
.btn-danger-outline:before {
  background: #e0ec24;
}
.btn-danger-outline:hover {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(224, 236, 36, 0.15);
}
.btn-black-outline {
  border-color: #1a1a1a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #1a1a1a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-black-outline:before {
  background: #4d4d4d;
}
.btn-white-outline {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #5d76b4 !important;
  border-color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 255, 255, 0.15);
}
.btn-white-outline:before {
  background: #ffffff;
}
.text-primary {
  color: #5d76b4 !important;
}
.text-secondary {
  color: #273240 !important;
}
.text-success {
  color: #37c5ab !important;
}
.text-info {
  color: #796eff !important;
}
.text-warning {
  color: #fd612c !important;
}
.text-danger {
  color: #e0ec24 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #1a1a1a !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #364875 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000001 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #217566 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1b08ff !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #c13202 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #949c0e !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #5d76b4;
}
.nav-tabs .nav-link:not(.active) {
  color: #1a1a1a;
}
.alert-success {
  background-color: #40A50B;
}
.alert-info {
  background-color: #796eff;
}
.alert-warning {
  background-color: #fd612c;
}
.alert-danger {
  background-color: #e0ec24;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 45px;
}
.mbr-gallery-filter li a {
  border-radius: 45px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5d76b4;
  border-color: #5d76b4;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 45px !important;
}
a,
a:hover {
  color: #5d76b4;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4c0dc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #99e3d5;
}
.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: #fff8f6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbfce0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Arimo', sans-serif;
  font-size: 1rem;
  line-height: 1.867;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Arimo', sans-serif;
  font-size: 1rem;
  line-height: 1.867;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #5d76b4;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 45px !important;
}
.mbr-form .mbr-section-btn button[type="submit"] {
  border-radius: 45px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5d76b4;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #5d76b4;
}
.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: #5d76b4;
  border-bottom-color: #5d76b4;
}
.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: #5d76b4 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #273240 !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='%235d76b4' %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.btn-white {
  color: #5d76b4 !important;
}
.mbr-arrow-up {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  box-shadow: 0px 10px 33.25px 1.75px rgba(0, 27, 103, 0.35);
}
.mbr-arrow-up a {
  background: rgba(93, 118, 180, 0.6);
}
.mbr-arrow-up a:hover {
  background: #5d76b4;
}
.cid-sjZaki2L0b {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sjZaki2L0b nav.navbar {
  position: fixed;
}
.cid-sjZaki2L0b .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-sjZaki2L0b .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-sjZaki2L0b .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-sjZaki2L0b .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-sjZaki2L0b .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-sjZaki2L0b .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-sjZaki2L0b .dropdown-item:hover,
.cid-sjZaki2L0b .dropdown-item:focus {
  background: rgba(93, 118, 180, 0.1) !important;
  color: #5d76b4 !important;
}
.cid-sjZaki2L0b .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-sjZaki2L0b .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-sjZaki2L0b .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-sjZaki2L0b .nav-link {
  position: relative;
  line-height: 1;
}
.cid-sjZaki2L0b .nav-link:hover {
  color: #5d76b4 !important;
}
.cid-sjZaki2L0b .container {
  display: flex;
  margin: auto;
}
.cid-sjZaki2L0b .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-sjZaki2L0b .dropdown-menu,
.cid-sjZaki2L0b .navbar.opened {
  background: #1a4902 !important;
}
.cid-sjZaki2L0b .nav-item:focus,
.cid-sjZaki2L0b .nav-link:focus {
  outline: none;
}
.cid-sjZaki2L0b .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-sjZaki2L0b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sjZaki2L0b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sjZaki2L0b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sjZaki2L0b .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sjZaki2L0b .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-sjZaki2L0b .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: #1a4902;
}
.cid-sjZaki2L0b .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-sjZaki2L0b .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sjZaki2L0b .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sjZaki2L0b .navbar.opened {
  transition: all 0.3s;
}
.cid-sjZaki2L0b .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-sjZaki2L0b .navbar .navbar-logo img {
  width: auto;
}
.cid-sjZaki2L0b .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sjZaki2L0b .navbar.collapsed {
  justify-content: center;
}
.cid-sjZaki2L0b .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sjZaki2L0b .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sjZaki2L0b .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sjZaki2L0b .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sjZaki2L0b .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sjZaki2L0b .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-sjZaki2L0b .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sjZaki2L0b .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sjZaki2L0b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sjZaki2L0b .navbar .dropdown-menu {
    display: none;
  }
  .cid-sjZaki2L0b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sjZaki2L0b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sjZaki2L0b .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-sjZaki2L0b .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sjZaki2L0b .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-sjZaki2L0b .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-sjZaki2L0b .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sjZaki2L0b .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sjZaki2L0b .navbar .navbar-buttons,
  .cid-sjZaki2L0b .navbar .icons-menu {
    display: none;
  }
  .cid-sjZaki2L0b .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-sjZaki2L0b .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sjZaki2L0b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sjZaki2L0b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sjZaki2L0b .dropdown-item.active,
.cid-sjZaki2L0b .dropdown-item:active {
  background-color: transparent;
}
.cid-sjZaki2L0b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sjZaki2L0b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a4902;
}
.cid-sjZaki2L0b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sjZaki2L0b ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sjZaki2L0b .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sjZaki2L0b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sjZaki2L0b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #051441;
}
.cid-sjZaki2L0b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sjZaki2L0b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjZaki2L0b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sjZaki2L0b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sjZaki2L0b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjZaki2L0b nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sjZaki2L0b nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sjZaki2L0b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sjZaki2L0b .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sjZaki2L0b a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-sjZaki2L0b .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sjZaki2L0b .navbar {
    height: 70px;
  }
  .cid-sjZaki2L0b .navbar.opened {
    height: auto;
  }
  .cid-sjZaki2L0b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0g14hsKdj {
  padding-top: 12rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-v0g14hsKdj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g14hsKdj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g14hsKdj .image-wrapper img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
.cid-v0g14hsKdj .row {
  flex-direction: row-reverse;
}
.cid-v0g14hsKdj .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0g14hsKdj .row {
    flex-direction: column-reverse;
    gap: 90px;
  }
}
.cid-v0g14hsKdj .mbr-section-title {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v0g14hsKdj .text-wrapper {
    text-align: center;
  }
}
.cid-v0g14hsKdj .mbr-text,
.cid-v0g14hsKdj .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0g14hsKdj .mbr-menu,
.cid-v0g14hsKdj .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0g14hsKdj .mbr-desc,
.cid-v0g14hsKdj .mbr-section-btn {
  color: #000000;
}
.cid-v0g1vAPVXG {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g1vAPVXG .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0g1vAPVXG .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0g1vAPVXG .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #1a4902;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #1a4902;
  color: #1a4902;
  content: "✓";
}
.cid-v0g1vAPVXG .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-v0g1vAPVXG .mbr-text {
  color: #3d5943;
}
.cid-v0bcDt2Nlg {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0bcDt2Nlg .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v0bcDt2Nlg .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0bcDt2Nlg .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0bcDt2Nlg .mbr-text {
  color: #000000;
}
.cid-v0bcDt2Nlg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0bcDt2Nlg .mbr-section-title {
  color: #000000;
}
.cid-v0g0GS8kK2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a4902;
}
@media (max-width: 991px) {
  .cid-v0g0GS8kK2 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v0g0GS8kK2 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v0g0GS8kK2 img {
  width: 100%;
  border-radius: 30px;
}
.cid-v0g0GS8kK2 .wrapp {
  padding: 44px 40px;
  border: 1px solid;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v0g0GS8kK2 .wrapp {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v0g0GS8kK2 .wrapp {
    padding: 3rem;
  }
}
.cid-v0g0GS8kK2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0g0GS8kK2 .mbr-text {
  color: #ffffff;
}
.cid-sjZacRyw9F {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sjZacRyw9F .title_block {
  margin-bottom: 80px;
}
.cid-sjZacRyw9F .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sjZacRyw9F .mbr-section-title,
.cid-sjZacRyw9F .card-title {
  color: #051441;
}
.cid-sjZacRyw9F .card_wrapper {
  height: 100%;
  background: #ffffff;
  padding: 45px 35px;
  box-shadow: 0 20px 60px 0 rgba(0, 11, 40, 0.06);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sjZacRyw9F .card_wrapper:hover {
  transform: translateY(-16px);
}
.cid-sjZacRyw9F .card:nth-child(1) .iconfont-wrapper:before {
  background-color: rgba(93, 118, 180, 0.07);
}
.cid-sjZacRyw9F .card:nth-child(1) .iconfont-wrapper .mbr-iconfont {
  color: #5d76b4;
}
.cid-sjZacRyw9F .card:nth-child(2) .iconfont-wrapper:before {
  background-color: rgba(253, 97, 44, 0.07);
}
.cid-sjZacRyw9F .card:nth-child(2) .iconfont-wrapper .mbr-iconfont {
  color: #fd612c;
}
.cid-sjZacRyw9F .card:nth-child(3) .iconfont-wrapper:before {
  background-color: rgba(55, 197, 171, 0.07);
}
.cid-sjZacRyw9F .card:nth-child(3) .iconfont-wrapper .mbr-iconfont {
  color: #37c5ab;
}
.cid-sjZacRyw9F .card:nth-child(4) .iconfont-wrapper:before {
  background-color: rgba(121, 110, 255, 0.07);
}
.cid-sjZacRyw9F .card:nth-child(4) .iconfont-wrapper .mbr-iconfont {
  color: #796eff;
}
.cid-sjZacRyw9F .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-sjZacRyw9F .iconfont-wrapper:before {
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 60px;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-sjZacRyw9F .iconfont-wrapper .mbr-iconfont {
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-sjZacRyw9F .card-title {
  margin-bottom: 20px;
}
.cid-sjZacRyw9F .card-text {
  margin-bottom: 15px;
  line-height: 1.5;
}
.cid-sjZacRyw9F .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sjZacRyw9F .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sjZacRyw9F .btn_link:hover {
  cursor: pointer;
}
.cid-sjZacRyw9F .btn_link:hover a {
  color: #5d76b4 !important;
}
.cid-sjZacRyw9F .btn_link:hover span {
  transform: translatex(5px);
}
@media (max-width: 991px) {
  .cid-sjZacRyw9F .title_block {
    margin-bottom: 40px;
  }
  .cid-sjZacRyw9F .card {
    text-align: center;
  }
  .cid-sjZacRyw9F .card_wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-sjZacRyw9F .mbr-section-title {
  color: #000000;
}
.cid-sjZacRyw9F .card-title,
.cid-sjZacRyw9F .icon_block {
  color: #000000;
  text-align: center;
}
.cid-sjZacRyw9F .card-text,
.cid-sjZacRyw9F .btn_link {
  color: #6a7c92;
}
.cid-v0g2ZipVRP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-v0g2ZipVRP .col-lg-4 {
    padding: 0 2.5rem;
  }
}
.cid-v0g2ZipVRP .mbr-text {
  color: #353535;
}
.cid-v0g2ZipVRP .mbr-section-title {
  color: #000000;
}
.cid-v0g1orw2H6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g1orw2H6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g1orw2H6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g1orw2H6 .row {
  margin: 0 !important;
}
.cid-v0g1orw2H6 .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-v0g1orw2H6 .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v0g1orw2H6 .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-v0g1orw2H6 .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-v0g1orw2H6 .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0g1orw2H6 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-v0g1orw2H6 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0g1orw2H6 .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-v0g1orw2H6 .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-v0g1orw2H6 .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-v0g1orw2H6 .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v0g1orw2H6 .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #3f8f17;
  margin-left: 0.5rem;
}
.cid-v0g1orw2H6 .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #3f8f17;
  font-weight: 900;
}
.cid-v0g1orw2H6 .panel-group {
  border: none;
}
.cid-v0g1orw2H6 .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-v0g1orw2H6 .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0g1orw2H6 .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v0g1orw2H6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-v0g1orw2H6 .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-v0g1orw2H6 .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-v0g1orw2H6 .panel-title-edit {
  color: #131313;
}
.cid-v0g1orw2H6 .panel-body {
  padding: 0 0 20px;
}
.cid-v0g1orw2H6 .panel-text {
  color: #131313;
  margin: 0;
}
.cid-v0bu9qz935 {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dentist-1920x1080.jpg-1920x1080.jpg");
}
.cid-v0bu9qz935 .mbr-section-title {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2rem;
  color: #000000;
}
.cid-v0bu9qz935 .row-bg {
  align-items: center;
  background: #ffffff;
  padding: 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v0bu9qz935 .row-bg {
    padding: 1rem 0;
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0bu9qz935 .image-wrapper {
    padding: 1rem;
  }
}
.cid-v0bu9qz935 img {
  border-radius: 1rem;
  transition: all 0.3s;
}
.cid-v0bu9qz935 img:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-v0bu9qz935 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bu9qz935 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bu9qz935 .mbr-text,
.cid-v0bu9qz935 .mbr-section-btn {
  color: #000000;
}
.cid-sjZahFaIvB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sjZahFaIvB .title_block {
  margin-bottom: 80px;
}
.cid-sjZahFaIvB .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sjZahFaIvB .mbr-section-title {
  color: #000000;
}
.cid-sjZahFaIvB .image img {
  width: 100%;
  object-fit: cover;
}
.cid-sjZahFaIvB .mbr-text {
  margin-top: 30px;
}
.cid-sjZahFaIvB .nav-tabs .nav-item.open .nav-link:focus,
.cid-sjZahFaIvB .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sjZahFaIvB .nav-tabs {
  border: none;
}
.cid-sjZahFaIvB .nav-item {
  width: 100%;
  margin-bottom: 30px;
}
.cid-sjZahFaIvB .nav-tabs .nav-link {
  background-color: #eceeec !important;
  line-height: 1;
  padding: 30px 40px;
  display: block;
  border-radius: 5px !important;
  border: none;
  color: #273240 !important;
  box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sjZahFaIvB .nav-tabs .nav-link.active {
  background-color: #3f8f17 !important;
  box-shadow: 0px 40px 80px 0px rgba(1, 1, 64, 0.08);
  color: #ffffff !important;
}
.cid-sjZahFaIvB .nav-tabs .nav-link:hover {
  background-color: #3f8f17 !important;
  box-shadow: 0px 20px 40px 0px rgba(0, 33, 121, 0.08);
  color: #ffffff !important;
  cursor: pointer;
}
.cid-sjZahFaIvB .nav-tabs .nav-link strong,
.cid-sjZahFaIvB .nav-tabs .nav-link b {
  font-size: 22px;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .cid-sjZahFaIvB .title_block {
    margin-bottom: 40px;
  }
  .cid-sjZahFaIvB .nav-tabs .nav-link {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sjZahFaIvB .mbr-text {
    margin-top: 20px;
  }
}
.cid-sjZtiNyzQ6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sjZtiNyzQ6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sjZtiNyzQ6 .card-title {
  margin-bottom: 26px;
  color: #051441;
}
.cid-sjZtiNyzQ6 .mbr-text {
  margin-bottom: 30px;
}
.cid-sjZtiNyzQ6 .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-sjZtiNyzQ6 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-sjZtiNyzQ6 .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sjZtiNyzQ6 .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sjZtiNyzQ6 .btn_link:hover {
  cursor: pointer;
}
.cid-sjZtiNyzQ6 .btn_link:hover a {
  color: #5d76b4 !important;
}
.cid-sjZtiNyzQ6 .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-sjZtiNyzQ6 .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sjZtiNyzQ6 .text-wrapper {
    text-align: center;
  }
  .cid-sjZtiNyzQ6 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-sjZtiNyzQ6 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-sjZtiNyzQ6 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-sjZtiNyzQ6 .card-title,
.cid-sjZtiNyzQ6 .icon_block {
  color: #000000;
}
.cid-sjZtiNyzQ6 .mbr-text,
.cid-sjZtiNyzQ6 .btn_link {
  color: #000000;
}
.cid-v0g0jTu6ZF {
  padding-top: 9rem;
  padding-bottom: 8rem;
  overflow: hidden;
  position: relative;
  background-color: #1a4902;
}
.cid-v0g0jTu6ZF .decor-wrap_1 {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g0jTu6ZF .decor-wrap_2 {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g0jTu6ZF .decor-wrap_3 {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g0jTu6ZF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g0jTu6ZF .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-v0g0jTu6ZF .container {
    padding: 0 30px;
  }
}
.cid-v0g0jTu6ZF .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-v0g0jTu6ZF .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-v0g0jTu6ZF .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v0g0jTu6ZF .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-v0g0jTu6ZF .mbr-section-title {
  color: #ffffff;
}
.cid-v0g0jTu6ZF .mbr-text,
.cid-v0g0jTu6ZF .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v0g0jTu6ZF .mbr-section-title,
.cid-v0g0jTu6ZF .mbr-section-btn {
  text-align: center;
}
.cid-v0bwP12kWS {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0bwP12kWS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bwP12kWS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bwP12kWS .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v0bwP12kWS .card-wrapper {
    padding: 20px;
  }
}
.cid-v0bwP12kWS .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v0bwP12kWS .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0bwP12kWS .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-v0bwP12kWS .card-wrapper .google-map iframe {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-v0bwP12kWS .card-wrapper .google-map iframe {
    height: 300px;
  }
}
.cid-v0bwP12kWS .mbr-section-title,
.cid-v0bwP12kWS .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-sjZasylfky {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a4902;
}
.cid-sjZasylfky .footer_col_logo {
  width: 40%;
}
.cid-sjZasylfky .footer_col {
  width: 20%;
}
.cid-sjZasylfky .list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-sjZasylfky .logo_wrap {
  max-width: 20%;
}
.cid-sjZasylfky .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-sjZasylfky .brand_name {
  color: #ffffff;
}
.cid-sjZasylfky .contacts {
  margin-top: 46px;
}
.cid-sjZasylfky .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-sjZasylfky .contacts b {
  color: #ffffff;
}
.cid-sjZasylfky .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-sjZasylfky .item-wrap {
  line-height: 44px;
}
.cid-sjZasylfky .text-white {
  color: #a99fc5 !important;
}
.cid-sjZasylfky .text-white:hover {
  color: #ffffff !important;
}
.cid-sjZasylfky .item-wrap a,
.cid-sjZasylfky .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sjZasylfky .item-wrap a:before,
.cid-sjZasylfky .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-sjZasylfky .item-wrap a:hover::before,
.cid-sjZasylfky .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-sjZasylfky .image {
  margin-top: 30px;
  max-width: 200px;
}
.cid-sjZasylfky .image img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .cid-sjZasylfky .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sjZasylfky .footer_col_logo {
    width: 100%;
  }
  .cid-sjZasylfky .footer_col {
    width: 33.3%;
  }
  .cid-sjZasylfky .image {
    margin-bottom: 40px;
  }
  .cid-sjZasylfky .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-sjZasylfky .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-sjZasylfky .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-sjZasylfky .row {
    justify-content: center;
    text-align: center;
  }
  .cid-sjZasylfky .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-sjZasylfky .footer_col {
    margin-top: 40px;
    width: 100%;
  }
  .cid-sjZasylfky .image {
    margin: auto;
    margin-top: 30px;
  }
}
.cid-sjZasylfky .contacts_mail {
  color: #ffffff;
}
.cid-sjZasLTRou {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sjZasLTRou .line {
  height: .8px;
  background: #000000;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-sjZasLTRou .text-white {
  color: #a99fc5 !important;
}
.cid-sjZasLTRou .text-white:hover {
  color: #ffffff !important;
}
.cid-sjZasLTRou .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sjZasLTRou .foot-menu li {
  padding: 10px;
}
.cid-sjZasLTRou .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sjZasLTRou .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-sjZasLTRou .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-sjZasLTRou .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sjZasLTRou .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-sjZasLTRou .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-sjZasLTRou .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-sjZasLTRou .social-list a:hover {
  opacity: 1;
}
.cid-sjZasLTRou .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sjZasLTRou .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-sjZasLTRou .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-v0bx83xq1n {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0bx83xq1n nav.navbar {
  position: fixed;
}
.cid-v0bx83xq1n .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-v0bx83xq1n .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-v0bx83xq1n .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-v0bx83xq1n .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-v0bx83xq1n .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-v0bx83xq1n .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-v0bx83xq1n .dropdown-item:hover,
.cid-v0bx83xq1n .dropdown-item:focus {
  background: rgba(93, 118, 180, 0.1) !important;
  color: #5d76b4 !important;
}
.cid-v0bx83xq1n .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-v0bx83xq1n .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-v0bx83xq1n .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-v0bx83xq1n .nav-link {
  position: relative;
  line-height: 1;
}
.cid-v0bx83xq1n .nav-link:hover {
  color: #5d76b4 !important;
}
.cid-v0bx83xq1n .container {
  display: flex;
  margin: auto;
}
.cid-v0bx83xq1n .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-v0bx83xq1n .dropdown-menu,
.cid-v0bx83xq1n .navbar.opened {
  background: #1a4902 !important;
}
.cid-v0bx83xq1n .nav-item:focus,
.cid-v0bx83xq1n .nav-link:focus {
  outline: none;
}
.cid-v0bx83xq1n .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-v0bx83xq1n .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0bx83xq1n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0bx83xq1n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0bx83xq1n .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0bx83xq1n .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0bx83xq1n .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: #1a4902;
}
.cid-v0bx83xq1n .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-v0bx83xq1n .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0bx83xq1n .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0bx83xq1n .navbar.opened {
  transition: all 0.3s;
}
.cid-v0bx83xq1n .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-v0bx83xq1n .navbar .navbar-logo img {
  width: auto;
}
.cid-v0bx83xq1n .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v0bx83xq1n .navbar.collapsed {
  justify-content: center;
}
.cid-v0bx83xq1n .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0bx83xq1n .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0bx83xq1n .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0bx83xq1n .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0bx83xq1n .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0bx83xq1n .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-v0bx83xq1n .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0bx83xq1n .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v0bx83xq1n .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0bx83xq1n .navbar .dropdown-menu {
    display: none;
  }
  .cid-v0bx83xq1n .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0bx83xq1n .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0bx83xq1n .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-v0bx83xq1n .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0bx83xq1n .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-v0bx83xq1n .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-v0bx83xq1n .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0bx83xq1n .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0bx83xq1n .navbar .navbar-buttons,
  .cid-v0bx83xq1n .navbar .icons-menu {
    display: none;
  }
  .cid-v0bx83xq1n .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-v0bx83xq1n .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0bx83xq1n .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0bx83xq1n .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0bx83xq1n .dropdown-item.active,
.cid-v0bx83xq1n .dropdown-item:active {
  background-color: transparent;
}
.cid-v0bx83xq1n .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0bx83xq1n .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a4902;
}
.cid-v0bx83xq1n .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0bx83xq1n ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0bx83xq1n .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0bx83xq1n button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0bx83xq1n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #051441;
}
.cid-v0bx83xq1n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0bx83xq1n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0bx83xq1n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0bx83xq1n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0bx83xq1n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0bx83xq1n nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0bx83xq1n nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0bx83xq1n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0bx83xq1n .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0bx83xq1n a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v0bx83xq1n .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0bx83xq1n .navbar {
    height: 70px;
  }
  .cid-v0bx83xq1n .navbar.opened {
    height: auto;
  }
  .cid-v0bx83xq1n .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0geC4iNWh {
  padding-top: 12rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0geC4iNWh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0geC4iNWh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0geC4iNWh .image-wrapper img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
.cid-v0geC4iNWh .row {
  flex-direction: row-reverse;
}
.cid-v0geC4iNWh .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0geC4iNWh .row {
    flex-direction: column-reverse;
    gap: 90px;
  }
}
.cid-v0geC4iNWh .mbr-section-title {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v0geC4iNWh .text-wrapper {
    text-align: center;
  }
}
.cid-v0geC4iNWh .mbr-text,
.cid-v0geC4iNWh .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0geC4iNWh .mbr-menu,
.cid-v0geC4iNWh .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0geC4iNWh .mbr-desc,
.cid-v0geC4iNWh .mbr-section-btn {
  color: #000000;
}
.cid-v0bx7YLATX {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0bx7YLATX .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v0bx7YLATX .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0bx7YLATX .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0bx7YLATX .mbr-text {
  color: #000000;
}
.cid-v0bx7YLATX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0bx7YLATX .mbr-section-title {
  color: #000000;
}
.cid-v0bx87DMNT {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0bx87DMNT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bx87DMNT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bx87DMNT .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v0bx87DMNT .card-wrapper {
    padding: 20px;
  }
}
.cid-v0bx87DMNT .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v0bx87DMNT .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0bx87DMNT .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-v0bx87DMNT .card-wrapper .google-map iframe {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-v0bx87DMNT .card-wrapper .google-map iframe {
    height: 300px;
  }
}
.cid-v0bx87DMNT .mbr-section-title,
.cid-v0bx87DMNT .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v0bx88kovJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a4902;
}
.cid-v0bx88kovJ .footer_col_logo {
  width: 40%;
}
.cid-v0bx88kovJ .footer_col {
  width: 20%;
}
.cid-v0bx88kovJ .list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-v0bx88kovJ .logo_wrap {
  max-width: 20%;
}
.cid-v0bx88kovJ .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-v0bx88kovJ .brand_name {
  color: #ffffff;
}
.cid-v0bx88kovJ .contacts {
  margin-top: 46px;
}
.cid-v0bx88kovJ .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-v0bx88kovJ .contacts b {
  color: #ffffff;
}
.cid-v0bx88kovJ .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-v0bx88kovJ .item-wrap {
  line-height: 44px;
}
.cid-v0bx88kovJ .text-white {
  color: #a99fc5 !important;
}
.cid-v0bx88kovJ .text-white:hover {
  color: #ffffff !important;
}
.cid-v0bx88kovJ .item-wrap a,
.cid-v0bx88kovJ .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0bx88kovJ .item-wrap a:before,
.cid-v0bx88kovJ .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-v0bx88kovJ .item-wrap a:hover::before,
.cid-v0bx88kovJ .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-v0bx88kovJ .image {
  margin-top: 30px;
  max-width: 200px;
}
.cid-v0bx88kovJ .image img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .cid-v0bx88kovJ .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-v0bx88kovJ .footer_col_logo {
    width: 100%;
  }
  .cid-v0bx88kovJ .footer_col {
    width: 33.3%;
  }
  .cid-v0bx88kovJ .image {
    margin-bottom: 40px;
  }
  .cid-v0bx88kovJ .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-v0bx88kovJ .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-v0bx88kovJ .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-v0bx88kovJ .row {
    justify-content: center;
    text-align: center;
  }
  .cid-v0bx88kovJ .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-v0bx88kovJ .footer_col {
    margin-top: 40px;
    width: 100%;
  }
  .cid-v0bx88kovJ .image {
    margin: auto;
    margin-top: 30px;
  }
}
.cid-v0bx88kovJ .contacts_mail {
  color: #ffffff;
}
.cid-v0bx899Qod {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0bx899Qod .line {
  height: .8px;
  background: #000000;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-v0bx899Qod .text-white {
  color: #a99fc5 !important;
}
.cid-v0bx899Qod .text-white:hover {
  color: #ffffff !important;
}
.cid-v0bx899Qod .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0bx899Qod .foot-menu li {
  padding: 10px;
}
.cid-v0bx899Qod .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0bx899Qod .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-v0bx899Qod .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-v0bx899Qod .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-v0bx899Qod .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-v0bx899Qod .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-v0bx899Qod .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-v0bx899Qod .social-list a:hover {
  opacity: 1;
}
.cid-v0bx899Qod .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #000000;
}
@media (max-width: 767px) {
  .cid-v0bx899Qod .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-v0bx899Qod .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-v0byx7BdLC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0byx7BdLC nav.navbar {
  position: fixed;
}
.cid-v0byx7BdLC .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-v0byx7BdLC .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-v0byx7BdLC .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-v0byx7BdLC .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-v0byx7BdLC .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-v0byx7BdLC .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-v0byx7BdLC .dropdown-item:hover,
.cid-v0byx7BdLC .dropdown-item:focus {
  background: rgba(93, 118, 180, 0.1) !important;
  color: #5d76b4 !important;
}
.cid-v0byx7BdLC .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-v0byx7BdLC .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-v0byx7BdLC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-v0byx7BdLC .nav-link {
  position: relative;
  line-height: 1;
}
.cid-v0byx7BdLC .nav-link:hover {
  color: #5d76b4 !important;
}
.cid-v0byx7BdLC .container {
  display: flex;
  margin: auto;
}
.cid-v0byx7BdLC .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-v0byx7BdLC .dropdown-menu,
.cid-v0byx7BdLC .navbar.opened {
  background: #1a4902 !important;
}
.cid-v0byx7BdLC .nav-item:focus,
.cid-v0byx7BdLC .nav-link:focus {
  outline: none;
}
.cid-v0byx7BdLC .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-v0byx7BdLC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0byx7BdLC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0byx7BdLC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0byx7BdLC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0byx7BdLC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0byx7BdLC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: #1a4902;
}
.cid-v0byx7BdLC .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-v0byx7BdLC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0byx7BdLC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0byx7BdLC .navbar.opened {
  transition: all 0.3s;
}
.cid-v0byx7BdLC .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-v0byx7BdLC .navbar .navbar-logo img {
  width: auto;
}
.cid-v0byx7BdLC .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v0byx7BdLC .navbar.collapsed {
  justify-content: center;
}
.cid-v0byx7BdLC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0byx7BdLC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0byx7BdLC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0byx7BdLC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0byx7BdLC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0byx7BdLC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-v0byx7BdLC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0byx7BdLC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v0byx7BdLC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0byx7BdLC .navbar .dropdown-menu {
    display: none;
  }
  .cid-v0byx7BdLC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0byx7BdLC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0byx7BdLC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-v0byx7BdLC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0byx7BdLC .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-v0byx7BdLC .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-v0byx7BdLC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0byx7BdLC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0byx7BdLC .navbar .navbar-buttons,
  .cid-v0byx7BdLC .navbar .icons-menu {
    display: none;
  }
  .cid-v0byx7BdLC .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-v0byx7BdLC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0byx7BdLC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0byx7BdLC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0byx7BdLC .dropdown-item.active,
.cid-v0byx7BdLC .dropdown-item:active {
  background-color: transparent;
}
.cid-v0byx7BdLC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0byx7BdLC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a4902;
}
.cid-v0byx7BdLC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0byx7BdLC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0byx7BdLC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0byx7BdLC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0byx7BdLC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #051441;
}
.cid-v0byx7BdLC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0byx7BdLC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0byx7BdLC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0byx7BdLC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0byx7BdLC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0byx7BdLC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0byx7BdLC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0byx7BdLC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0byx7BdLC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0byx7BdLC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v0byx7BdLC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0byx7BdLC .navbar {
    height: 70px;
  }
  .cid-v0byx7BdLC .navbar.opened {
    height: auto;
  }
  .cid-v0byx7BdLC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0gf6XEXtP {
  padding-top: 12rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0gf6XEXtP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0gf6XEXtP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0gf6XEXtP .image-wrapper img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
.cid-v0gf6XEXtP .row {
  flex-direction: row-reverse;
}
.cid-v0gf6XEXtP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0gf6XEXtP .row {
    flex-direction: column-reverse;
    gap: 90px;
  }
}
.cid-v0gf6XEXtP .mbr-section-title {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v0gf6XEXtP .text-wrapper {
    text-align: center;
  }
}
.cid-v0gf6XEXtP .mbr-text,
.cid-v0gf6XEXtP .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0gf6XEXtP .mbr-menu,
.cid-v0gf6XEXtP .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0gf6XEXtP .mbr-desc,
.cid-v0gf6XEXtP .mbr-section-btn {
  color: #000000;
}
.cid-v0byx6O5ZR {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0byx6O5ZR .card-wrapper {
  background: #fbfdff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v0byx6O5ZR .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0byx6O5ZR .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0byx6O5ZR .mbr-text {
  color: #000000;
}
.cid-v0byx6O5ZR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0byx6O5ZR .mbr-section-title {
  color: #000000;
}
.cid-v0byx8TTEU {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0byx8TTEU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0byx8TTEU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0byx8TTEU .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v0byx8TTEU .card-wrapper {
    padding: 20px;
  }
}
.cid-v0byx8TTEU .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v0byx8TTEU .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0byx8TTEU .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-v0byx8TTEU .card-wrapper .google-map iframe {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-v0byx8TTEU .card-wrapper .google-map iframe {
    height: 300px;
  }
}
.cid-v0byx8TTEU .mbr-section-title,
.cid-v0byx8TTEU .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v0byx9Nli4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a4902;
}
.cid-v0byx9Nli4 .footer_col_logo {
  width: 40%;
}
.cid-v0byx9Nli4 .footer_col {
  width: 20%;
}
.cid-v0byx9Nli4 .list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-v0byx9Nli4 .logo_wrap {
  max-width: 20%;
}
.cid-v0byx9Nli4 .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-v0byx9Nli4 .brand_name {
  color: #ffffff;
}
.cid-v0byx9Nli4 .contacts {
  margin-top: 46px;
}
.cid-v0byx9Nli4 .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-v0byx9Nli4 .contacts b {
  color: #ffffff;
}
.cid-v0byx9Nli4 .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-v0byx9Nli4 .item-wrap {
  line-height: 44px;
}
.cid-v0byx9Nli4 .text-white {
  color: #a99fc5 !important;
}
.cid-v0byx9Nli4 .text-white:hover {
  color: #ffffff !important;
}
.cid-v0byx9Nli4 .item-wrap a,
.cid-v0byx9Nli4 .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0byx9Nli4 .item-wrap a:before,
.cid-v0byx9Nli4 .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-v0byx9Nli4 .item-wrap a:hover::before,
.cid-v0byx9Nli4 .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-v0byx9Nli4 .image {
  margin-top: 30px;
  max-width: 200px;
}
.cid-v0byx9Nli4 .image img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .cid-v0byx9Nli4 .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-v0byx9Nli4 .footer_col_logo {
    width: 100%;
  }
  .cid-v0byx9Nli4 .footer_col {
    width: 33.3%;
  }
  .cid-v0byx9Nli4 .image {
    margin-bottom: 40px;
  }
  .cid-v0byx9Nli4 .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-v0byx9Nli4 .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-v0byx9Nli4 .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-v0byx9Nli4 .row {
    justify-content: center;
    text-align: center;
  }
  .cid-v0byx9Nli4 .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-v0byx9Nli4 .footer_col {
    margin-top: 40px;
    width: 100%;
  }
  .cid-v0byx9Nli4 .image {
    margin: auto;
    margin-top: 30px;
  }
}
.cid-v0byx9Nli4 .contacts_mail {
  color: #ffffff;
}
.cid-v0byxaGsuC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0byxaGsuC .line {
  height: .8px;
  background: #000000;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-v0byxaGsuC .text-white {
  color: #a99fc5 !important;
}
.cid-v0byxaGsuC .text-white:hover {
  color: #ffffff !important;
}
.cid-v0byxaGsuC .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0byxaGsuC .foot-menu li {
  padding: 10px;
}
.cid-v0byxaGsuC .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0byxaGsuC .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-v0byxaGsuC .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-v0byxaGsuC .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-v0byxaGsuC .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-v0byxaGsuC .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-v0byxaGsuC .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-v0byxaGsuC .social-list a:hover {
  opacity: 1;
}
.cid-v0byxaGsuC .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #000000;
}
@media (max-width: 767px) {
  .cid-v0byxaGsuC .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-v0byxaGsuC .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-v0g5BtnoSs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0g5BtnoSs nav.navbar {
  position: fixed;
}
.cid-v0g5BtnoSs .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-v0g5BtnoSs .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-v0g5BtnoSs .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-v0g5BtnoSs .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-v0g5BtnoSs .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-v0g5BtnoSs .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-v0g5BtnoSs .dropdown-item:hover,
.cid-v0g5BtnoSs .dropdown-item:focus {
  background: rgba(93, 118, 180, 0.1) !important;
  color: #5d76b4 !important;
}
.cid-v0g5BtnoSs .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-v0g5BtnoSs .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-v0g5BtnoSs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-v0g5BtnoSs .nav-link {
  position: relative;
  line-height: 1;
}
.cid-v0g5BtnoSs .nav-link:hover {
  color: #5d76b4 !important;
}
.cid-v0g5BtnoSs .container {
  display: flex;
  margin: auto;
}
.cid-v0g5BtnoSs .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-v0g5BtnoSs .dropdown-menu,
.cid-v0g5BtnoSs .navbar.opened {
  background: #1a4902 !important;
}
.cid-v0g5BtnoSs .nav-item:focus,
.cid-v0g5BtnoSs .nav-link:focus {
  outline: none;
}
.cid-v0g5BtnoSs .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-v0g5BtnoSs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0g5BtnoSs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0g5BtnoSs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0g5BtnoSs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0g5BtnoSs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0g5BtnoSs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: #1a4902;
}
.cid-v0g5BtnoSs .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-v0g5BtnoSs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0g5BtnoSs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0g5BtnoSs .navbar.opened {
  transition: all 0.3s;
}
.cid-v0g5BtnoSs .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-v0g5BtnoSs .navbar .navbar-logo img {
  width: auto;
}
.cid-v0g5BtnoSs .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v0g5BtnoSs .navbar.collapsed {
  justify-content: center;
}
.cid-v0g5BtnoSs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0g5BtnoSs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0g5BtnoSs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0g5BtnoSs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0g5BtnoSs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0g5BtnoSs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-v0g5BtnoSs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0g5BtnoSs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v0g5BtnoSs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0g5BtnoSs .navbar .dropdown-menu {
    display: none;
  }
  .cid-v0g5BtnoSs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0g5BtnoSs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0g5BtnoSs .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-v0g5BtnoSs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0g5BtnoSs .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-v0g5BtnoSs .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-v0g5BtnoSs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0g5BtnoSs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0g5BtnoSs .navbar .navbar-buttons,
  .cid-v0g5BtnoSs .navbar .icons-menu {
    display: none;
  }
  .cid-v0g5BtnoSs .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-v0g5BtnoSs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0g5BtnoSs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0g5BtnoSs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0g5BtnoSs .dropdown-item.active,
.cid-v0g5BtnoSs .dropdown-item:active {
  background-color: transparent;
}
.cid-v0g5BtnoSs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0g5BtnoSs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a4902;
}
.cid-v0g5BtnoSs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0g5BtnoSs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0g5BtnoSs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0g5BtnoSs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0g5BtnoSs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #051441;
}
.cid-v0g5BtnoSs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0g5BtnoSs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0g5BtnoSs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0g5BtnoSs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0g5BtnoSs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0g5BtnoSs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0g5BtnoSs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0g5BtnoSs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0g5BtnoSs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0g5BtnoSs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v0g5BtnoSs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0g5BtnoSs .navbar {
    height: 70px;
  }
  .cid-v0g5BtnoSs .navbar.opened {
    height: auto;
  }
  .cid-v0g5BtnoSs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0g5BurDfk {
  padding-top: 12rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-v0g5BurDfk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g5BurDfk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g5BurDfk .image-wrapper img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
.cid-v0g5BurDfk .row {
  flex-direction: row-reverse;
}
.cid-v0g5BurDfk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0g5BurDfk .row {
    flex-direction: column-reverse;
    gap: 90px;
  }
}
.cid-v0g5BurDfk .mbr-section-title {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v0g5BurDfk .text-wrapper {
    text-align: center;
  }
}
.cid-v0g5BurDfk .mbr-text,
.cid-v0g5BurDfk .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0g5BurDfk .mbr-menu,
.cid-v0g5BurDfk .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0g5BurDfk .mbr-desc,
.cid-v0g5BurDfk .mbr-section-btn {
  color: #000000;
}
.cid-v0g5BveDZX {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g5BveDZX .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0g5BveDZX .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0g5BveDZX .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #1a4902;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #1a4902;
  color: #1a4902;
  content: "✓";
}
.cid-v0g5BveDZX .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-v0g5BveDZX .mbr-text {
  color: #3d5943;
}
.cid-v0g5BvNXuj {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0g5BvNXuj .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v0g5BvNXuj .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0g5BvNXuj .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0g5BvNXuj .mbr-text {
  color: #000000;
}
.cid-v0g5BvNXuj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0g5BvNXuj .mbr-section-title {
  color: #000000;
}
.cid-v0g5BwovD9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a4902;
}
@media (max-width: 991px) {
  .cid-v0g5BwovD9 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v0g5BwovD9 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v0g5BwovD9 img {
  width: 100%;
  border-radius: 30px;
}
.cid-v0g5BwovD9 .wrapp {
  padding: 44px 40px;
  border: 1px solid;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v0g5BwovD9 .wrapp {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v0g5BwovD9 .wrapp {
    padding: 3rem;
  }
}
.cid-v0g5BwovD9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0g5BwovD9 .mbr-text {
  color: #ffffff;
}
.cid-v0g5Bx5SvO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v0g5Bx5SvO .title_block {
  margin-bottom: 80px;
}
.cid-v0g5Bx5SvO .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-v0g5Bx5SvO .mbr-section-title,
.cid-v0g5Bx5SvO .card-title {
  color: #051441;
}
.cid-v0g5Bx5SvO .card_wrapper {
  height: 100%;
  background: #ffffff;
  padding: 45px 35px;
  box-shadow: 0 20px 60px 0 rgba(0, 11, 40, 0.06);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g5Bx5SvO .card_wrapper:hover {
  transform: translateY(-16px);
}
.cid-v0g5Bx5SvO .card:nth-child(1) .iconfont-wrapper:before {
  background-color: rgba(93, 118, 180, 0.07);
}
.cid-v0g5Bx5SvO .card:nth-child(1) .iconfont-wrapper .mbr-iconfont {
  color: #5d76b4;
}
.cid-v0g5Bx5SvO .card:nth-child(2) .iconfont-wrapper:before {
  background-color: rgba(253, 97, 44, 0.07);
}
.cid-v0g5Bx5SvO .card:nth-child(2) .iconfont-wrapper .mbr-iconfont {
  color: #fd612c;
}
.cid-v0g5Bx5SvO .card:nth-child(3) .iconfont-wrapper:before {
  background-color: rgba(55, 197, 171, 0.07);
}
.cid-v0g5Bx5SvO .card:nth-child(3) .iconfont-wrapper .mbr-iconfont {
  color: #37c5ab;
}
.cid-v0g5Bx5SvO .card:nth-child(4) .iconfont-wrapper:before {
  background-color: rgba(121, 110, 255, 0.07);
}
.cid-v0g5Bx5SvO .card:nth-child(4) .iconfont-wrapper .mbr-iconfont {
  color: #796eff;
}
.cid-v0g5Bx5SvO .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-v0g5Bx5SvO .iconfont-wrapper:before {
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 60px;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-v0g5Bx5SvO .iconfont-wrapper .mbr-iconfont {
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-v0g5Bx5SvO .card-title {
  margin-bottom: 20px;
}
.cid-v0g5Bx5SvO .card-text {
  margin-bottom: 15px;
  line-height: 1.5;
}
.cid-v0g5Bx5SvO .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-v0g5Bx5SvO .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g5Bx5SvO .btn_link:hover {
  cursor: pointer;
}
.cid-v0g5Bx5SvO .btn_link:hover a {
  color: #5d76b4 !important;
}
.cid-v0g5Bx5SvO .btn_link:hover span {
  transform: translatex(5px);
}
@media (max-width: 991px) {
  .cid-v0g5Bx5SvO .title_block {
    margin-bottom: 40px;
  }
  .cid-v0g5Bx5SvO .card {
    text-align: center;
  }
  .cid-v0g5Bx5SvO .card_wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-v0g5Bx5SvO .mbr-section-title {
  color: #000000;
}
.cid-v0g5Bx5SvO .card-title,
.cid-v0g5Bx5SvO .icon_block {
  color: #000000;
  text-align: center;
}
.cid-v0g5Bx5SvO .card-text,
.cid-v0g5Bx5SvO .btn_link {
  color: #6a7c92;
}
.cid-v0g5BxWhVD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-v0g5BxWhVD .col-lg-4 {
    padding: 0 2.5rem;
  }
}
.cid-v0g5BxWhVD .mbr-text {
  color: #000000;
}
.cid-v0g5BxWhVD .mbr-section-title {
  color: #000000;
}
.cid-v0g5ByC15L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g5ByC15L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g5ByC15L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g5ByC15L .row {
  margin: 0 !important;
}
.cid-v0g5ByC15L .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-v0g5ByC15L .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v0g5ByC15L .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-v0g5ByC15L .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-v0g5ByC15L .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0g5ByC15L .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-v0g5ByC15L .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0g5ByC15L .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-v0g5ByC15L .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-v0g5ByC15L .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-v0g5ByC15L .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v0g5ByC15L .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #3f8f17;
  margin-left: 0.5rem;
}
.cid-v0g5ByC15L .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #3f8f17;
  font-weight: 900;
}
.cid-v0g5ByC15L .panel-group {
  border: none;
}
.cid-v0g5ByC15L .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-v0g5ByC15L .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0g5ByC15L .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v0g5ByC15L .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-v0g5ByC15L .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-v0g5ByC15L .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-v0g5ByC15L .panel-title-edit {
  color: #131313;
}
.cid-v0g5ByC15L .panel-body {
  padding: 0 0 20px;
}
.cid-v0g5ByC15L .panel-text {
  color: #131313;
  margin: 0;
}
.cid-v0g5BzCqQM {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/about-our-office-1024x684-1.jpg-1024x684.jpg");
}
.cid-v0g5BzCqQM .mbr-section-title {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2rem;
  color: #000000;
}
.cid-v0g5BzCqQM .row-bg {
  align-items: center;
  background: #ffffff;
  padding: 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v0g5BzCqQM .row-bg {
    padding: 1rem 0;
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0g5BzCqQM .image-wrapper {
    padding: 1rem;
  }
}
.cid-v0g5BzCqQM img {
  border-radius: 1rem;
  transition: all 0.3s;
}
.cid-v0g5BzCqQM img:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-v0g5BzCqQM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g5BzCqQM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g5BzCqQM .mbr-text,
.cid-v0g5BzCqQM .mbr-section-btn {
  color: #000000;
}
.cid-v0g5BAi2BE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g5BAi2BE .title_block {
  margin-bottom: 80px;
}
.cid-v0g5BAi2BE .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-v0g5BAi2BE .mbr-section-title {
  color: #000000;
}
.cid-v0g5BAi2BE .image img {
  width: 100%;
  object-fit: cover;
}
.cid-v0g5BAi2BE .mbr-text {
  margin-top: 30px;
}
.cid-v0g5BAi2BE .nav-tabs .nav-item.open .nav-link:focus,
.cid-v0g5BAi2BE .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-v0g5BAi2BE .nav-tabs {
  border: none;
}
.cid-v0g5BAi2BE .nav-item {
  width: 100%;
  margin-bottom: 30px;
}
.cid-v0g5BAi2BE .nav-tabs .nav-link {
  background-color: #eceeec !important;
  line-height: 1;
  padding: 30px 40px;
  display: block;
  border-radius: 5px !important;
  border: none;
  color: #273240 !important;
  box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g5BAi2BE .nav-tabs .nav-link.active {
  background-color: #3f8f17 !important;
  box-shadow: 0px 40px 80px 0px rgba(1, 1, 64, 0.08);
  color: #ffffff !important;
}
.cid-v0g5BAi2BE .nav-tabs .nav-link:hover {
  background-color: #3f8f17 !important;
  box-shadow: 0px 20px 40px 0px rgba(0, 33, 121, 0.08);
  color: #ffffff !important;
  cursor: pointer;
}
.cid-v0g5BAi2BE .nav-tabs .nav-link strong,
.cid-v0g5BAi2BE .nav-tabs .nav-link b {
  font-size: 22px;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .cid-v0g5BAi2BE .title_block {
    margin-bottom: 40px;
  }
  .cid-v0g5BAi2BE .nav-tabs .nav-link {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-v0g5BAi2BE .mbr-text {
    margin-top: 20px;
  }
}
.cid-v0g5BBcPF9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g5BBcPF9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0g5BBcPF9 .card-title {
  margin-bottom: 26px;
  color: #051441;
}
.cid-v0g5BBcPF9 .mbr-text {
  margin-bottom: 30px;
}
.cid-v0g5BBcPF9 .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-v0g5BBcPF9 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-v0g5BBcPF9 .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-v0g5BBcPF9 .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g5BBcPF9 .btn_link:hover {
  cursor: pointer;
}
.cid-v0g5BBcPF9 .btn_link:hover a {
  color: #5d76b4 !important;
}
.cid-v0g5BBcPF9 .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-v0g5BBcPF9 .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0g5BBcPF9 .text-wrapper {
    text-align: center;
  }
  .cid-v0g5BBcPF9 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-v0g5BBcPF9 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-v0g5BBcPF9 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v0g5BBcPF9 .card-title,
.cid-v0g5BBcPF9 .icon_block {
  color: #000000;
}
.cid-v0g5BBcPF9 .mbr-text,
.cid-v0g5BBcPF9 .btn_link {
  color: #000000;
}
.cid-v0gQHDkt7T {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-color: #ffffff;
}
.cid-v0gQHDkt7T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0gQHDkt7T .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-v0gQHDkt7T .container {
    padding: 0 20px;
  }
}
.cid-v0gQHDkt7T .row {
  margin: 0;
}
.cid-v0gQHDkt7T .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0gQHDkt7T .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v0gQHDkt7T .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v0gQHDkt7T .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v0gQHDkt7T .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v0gQHDkt7T .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v0gQHDkt7T .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v0g5BBOXLi {
  padding-top: 9rem;
  padding-bottom: 8rem;
  overflow: hidden;
  position: relative;
  background-color: #1a4902;
}
.cid-v0g5BBOXLi .decor-wrap_1 {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g5BBOXLi .decor-wrap_2 {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g5BBOXLi .decor-wrap_3 {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g5BBOXLi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g5BBOXLi .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-v0g5BBOXLi .container {
    padding: 0 30px;
  }
}
.cid-v0g5BBOXLi .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-v0g5BBOXLi .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-v0g5BBOXLi .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v0g5BBOXLi .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-v0g5BBOXLi .mbr-section-title {
  color: #ffffff;
}
.cid-v0g5BBOXLi .mbr-text,
.cid-v0g5BBOXLi .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v0g5BBOXLi .mbr-section-title,
.cid-v0g5BBOXLi .mbr-section-btn {
  text-align: center;
}
.cid-v0ggpYL1Tg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0ggpYL1Tg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ggpYL1Tg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ggpYL1Tg .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-v0ggpYL1Tg .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-v0ggpYL1Tg .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-v0ggpYL1Tg .panel-group .card {
    padding: 20px 0;
  }
}
.cid-v0ggpYL1Tg .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v0ggpYL1Tg .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v0ggpYL1Tg .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v0ggpYL1Tg .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-v0ggpYL1Tg .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v0ggpYL1Tg .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-v0ggpYL1Tg .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v0ggpYL1Tg .mbr-section-title {
  color: #19171c;
}
.cid-v0ggpYL1Tg .panel-title {
  color: #19171c;
}
.cid-v0ggpYL1Tg .panel-text {
  color: #000000;
}
.cid-v0ggpYL1Tg .mbr-section-title,
.cid-v0ggpYL1Tg .mbr-section-btn {
  color: #000000;
}
.cid-v0g5BCqdIU {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g5BCqdIU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g5BCqdIU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g5BCqdIU .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v0g5BCqdIU .card-wrapper {
    padding: 20px;
  }
}
.cid-v0g5BCqdIU .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v0g5BCqdIU .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0g5BCqdIU .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-v0g5BCqdIU .card-wrapper .google-map iframe {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-v0g5BCqdIU .card-wrapper .google-map iframe {
    height: 300px;
  }
}
.cid-v0g5BCqdIU .mbr-section-title,
.cid-v0g5BCqdIU .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v0g5BD3IMQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a4902;
}
.cid-v0g5BD3IMQ .footer_col_logo {
  width: 40%;
}
.cid-v0g5BD3IMQ .footer_col {
  width: 20%;
}
.cid-v0g5BD3IMQ .list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-v0g5BD3IMQ .logo_wrap {
  max-width: 20%;
}
.cid-v0g5BD3IMQ .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-v0g5BD3IMQ .brand_name {
  color: #ffffff;
}
.cid-v0g5BD3IMQ .contacts {
  margin-top: 46px;
}
.cid-v0g5BD3IMQ .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-v0g5BD3IMQ .contacts b {
  color: #ffffff;
}
.cid-v0g5BD3IMQ .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-v0g5BD3IMQ .item-wrap {
  line-height: 44px;
}
.cid-v0g5BD3IMQ .text-white {
  color: #a99fc5 !important;
}
.cid-v0g5BD3IMQ .text-white:hover {
  color: #ffffff !important;
}
.cid-v0g5BD3IMQ .item-wrap a,
.cid-v0g5BD3IMQ .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g5BD3IMQ .item-wrap a:before,
.cid-v0g5BD3IMQ .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-v0g5BD3IMQ .item-wrap a:hover::before,
.cid-v0g5BD3IMQ .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-v0g5BD3IMQ .image {
  margin-top: 30px;
  max-width: 200px;
}
.cid-v0g5BD3IMQ .image img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .cid-v0g5BD3IMQ .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-v0g5BD3IMQ .footer_col_logo {
    width: 100%;
  }
  .cid-v0g5BD3IMQ .footer_col {
    width: 33.3%;
  }
  .cid-v0g5BD3IMQ .image {
    margin-bottom: 40px;
  }
  .cid-v0g5BD3IMQ .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-v0g5BD3IMQ .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-v0g5BD3IMQ .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-v0g5BD3IMQ .row {
    justify-content: center;
    text-align: center;
  }
  .cid-v0g5BD3IMQ .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-v0g5BD3IMQ .footer_col {
    margin-top: 40px;
    width: 100%;
  }
  .cid-v0g5BD3IMQ .image {
    margin: auto;
    margin-top: 30px;
  }
}
.cid-v0g5BD3IMQ .contacts_mail {
  color: #ffffff;
}
.cid-v0g5BDLt4p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0g5BDLt4p .line {
  height: .8px;
  background: #000000;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-v0g5BDLt4p .text-white {
  color: #a99fc5 !important;
}
.cid-v0g5BDLt4p .text-white:hover {
  color: #ffffff !important;
}
.cid-v0g5BDLt4p .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0g5BDLt4p .foot-menu li {
  padding: 10px;
}
.cid-v0g5BDLt4p .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g5BDLt4p .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-v0g5BDLt4p .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-v0g5BDLt4p .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-v0g5BDLt4p .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-v0g5BDLt4p .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-v0g5BDLt4p .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-v0g5BDLt4p .social-list a:hover {
  opacity: 1;
}
.cid-v0g5BDLt4p .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #000000;
}
@media (max-width: 767px) {
  .cid-v0g5BDLt4p .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-v0g5BDLt4p .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-v0g7Nog6nq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0g7Nog6nq nav.navbar {
  position: fixed;
}
.cid-v0g7Nog6nq .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-v0g7Nog6nq .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-v0g7Nog6nq .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-v0g7Nog6nq .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-v0g7Nog6nq .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-v0g7Nog6nq .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-v0g7Nog6nq .dropdown-item:hover,
.cid-v0g7Nog6nq .dropdown-item:focus {
  background: rgba(93, 118, 180, 0.1) !important;
  color: #5d76b4 !important;
}
.cid-v0g7Nog6nq .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-v0g7Nog6nq .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-v0g7Nog6nq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-v0g7Nog6nq .nav-link {
  position: relative;
  line-height: 1;
}
.cid-v0g7Nog6nq .nav-link:hover {
  color: #5d76b4 !important;
}
.cid-v0g7Nog6nq .container {
  display: flex;
  margin: auto;
}
.cid-v0g7Nog6nq .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-v0g7Nog6nq .dropdown-menu,
.cid-v0g7Nog6nq .navbar.opened {
  background: #1a4902 !important;
}
.cid-v0g7Nog6nq .nav-item:focus,
.cid-v0g7Nog6nq .nav-link:focus {
  outline: none;
}
.cid-v0g7Nog6nq .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-v0g7Nog6nq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0g7Nog6nq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0g7Nog6nq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0g7Nog6nq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0g7Nog6nq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0g7Nog6nq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: #1a4902;
}
.cid-v0g7Nog6nq .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-v0g7Nog6nq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0g7Nog6nq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0g7Nog6nq .navbar.opened {
  transition: all 0.3s;
}
.cid-v0g7Nog6nq .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-v0g7Nog6nq .navbar .navbar-logo img {
  width: auto;
}
.cid-v0g7Nog6nq .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v0g7Nog6nq .navbar.collapsed {
  justify-content: center;
}
.cid-v0g7Nog6nq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0g7Nog6nq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0g7Nog6nq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0g7Nog6nq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0g7Nog6nq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0g7Nog6nq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-v0g7Nog6nq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0g7Nog6nq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v0g7Nog6nq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0g7Nog6nq .navbar .dropdown-menu {
    display: none;
  }
  .cid-v0g7Nog6nq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0g7Nog6nq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0g7Nog6nq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-v0g7Nog6nq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0g7Nog6nq .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-v0g7Nog6nq .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-v0g7Nog6nq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0g7Nog6nq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0g7Nog6nq .navbar .navbar-buttons,
  .cid-v0g7Nog6nq .navbar .icons-menu {
    display: none;
  }
  .cid-v0g7Nog6nq .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-v0g7Nog6nq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0g7Nog6nq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0g7Nog6nq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0g7Nog6nq .dropdown-item.active,
.cid-v0g7Nog6nq .dropdown-item:active {
  background-color: transparent;
}
.cid-v0g7Nog6nq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0g7Nog6nq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a4902;
}
.cid-v0g7Nog6nq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0g7Nog6nq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0g7Nog6nq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0g7Nog6nq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0g7Nog6nq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #051441;
}
.cid-v0g7Nog6nq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0g7Nog6nq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0g7Nog6nq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0g7Nog6nq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0g7Nog6nq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0g7Nog6nq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0g7Nog6nq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0g7Nog6nq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0g7Nog6nq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0g7Nog6nq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v0g7Nog6nq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0g7Nog6nq .navbar {
    height: 70px;
  }
  .cid-v0g7Nog6nq .navbar.opened {
    height: auto;
  }
  .cid-v0g7Nog6nq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0g7Npb32y {
  padding-top: 12rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-v0g7Npb32y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g7Npb32y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g7Npb32y .image-wrapper img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
.cid-v0g7Npb32y .row {
  flex-direction: row-reverse;
}
.cid-v0g7Npb32y .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0g7Npb32y .row {
    flex-direction: column-reverse;
    gap: 90px;
  }
}
.cid-v0g7Npb32y .mbr-section-title {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v0g7Npb32y .text-wrapper {
    text-align: center;
  }
}
.cid-v0g7Npb32y .mbr-text,
.cid-v0g7Npb32y .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0g7Npb32y .mbr-menu,
.cid-v0g7Npb32y .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0g7Npb32y .mbr-desc,
.cid-v0g7Npb32y .mbr-section-btn {
  color: #000000;
}
.cid-v0g7NpJYlE {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g7NpJYlE .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0g7NpJYlE .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0g7NpJYlE .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #1a4902;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #1a4902;
  color: #1a4902;
  content: "✓";
}
.cid-v0g7NpJYlE .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-v0g7NpJYlE .mbr-text {
  color: #3d5943;
}
.cid-v0g7Nqi5oW {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0g7Nqi5oW .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v0g7Nqi5oW .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0g7Nqi5oW .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0g7Nqi5oW .mbr-text {
  color: #000000;
}
.cid-v0g7Nqi5oW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0g7Nqi5oW .mbr-section-title {
  color: #000000;
}
.cid-v0g7NqUCf2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a4902;
}
@media (max-width: 991px) {
  .cid-v0g7NqUCf2 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v0g7NqUCf2 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v0g7NqUCf2 img {
  width: 100%;
  border-radius: 30px;
}
.cid-v0g7NqUCf2 .wrapp {
  padding: 44px 40px;
  border: 1px solid;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v0g7NqUCf2 .wrapp {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v0g7NqUCf2 .wrapp {
    padding: 3rem;
  }
}
.cid-v0g7NqUCf2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0g7NqUCf2 .mbr-text {
  color: #ffffff;
}
.cid-v0g7NrxFvl {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v0g7NrxFvl .title_block {
  margin-bottom: 80px;
}
.cid-v0g7NrxFvl .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-v0g7NrxFvl .mbr-section-title,
.cid-v0g7NrxFvl .card-title {
  color: #051441;
}
.cid-v0g7NrxFvl .card_wrapper {
  height: 100%;
  background: #ffffff;
  padding: 45px 35px;
  box-shadow: 0 20px 60px 0 rgba(0, 11, 40, 0.06);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g7NrxFvl .card_wrapper:hover {
  transform: translateY(-16px);
}
.cid-v0g7NrxFvl .card:nth-child(1) .iconfont-wrapper:before {
  background-color: rgba(93, 118, 180, 0.07);
}
.cid-v0g7NrxFvl .card:nth-child(1) .iconfont-wrapper .mbr-iconfont {
  color: #5d76b4;
}
.cid-v0g7NrxFvl .card:nth-child(2) .iconfont-wrapper:before {
  background-color: rgba(253, 97, 44, 0.07);
}
.cid-v0g7NrxFvl .card:nth-child(2) .iconfont-wrapper .mbr-iconfont {
  color: #fd612c;
}
.cid-v0g7NrxFvl .card:nth-child(3) .iconfont-wrapper:before {
  background-color: rgba(55, 197, 171, 0.07);
}
.cid-v0g7NrxFvl .card:nth-child(3) .iconfont-wrapper .mbr-iconfont {
  color: #37c5ab;
}
.cid-v0g7NrxFvl .card:nth-child(4) .iconfont-wrapper:before {
  background-color: rgba(121, 110, 255, 0.07);
}
.cid-v0g7NrxFvl .card:nth-child(4) .iconfont-wrapper .mbr-iconfont {
  color: #796eff;
}
.cid-v0g7NrxFvl .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-v0g7NrxFvl .iconfont-wrapper:before {
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 60px;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-v0g7NrxFvl .iconfont-wrapper .mbr-iconfont {
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-v0g7NrxFvl .card-title {
  margin-bottom: 20px;
}
.cid-v0g7NrxFvl .card-text {
  margin-bottom: 15px;
  line-height: 1.5;
}
.cid-v0g7NrxFvl .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-v0g7NrxFvl .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g7NrxFvl .btn_link:hover {
  cursor: pointer;
}
.cid-v0g7NrxFvl .btn_link:hover a {
  color: #5d76b4 !important;
}
.cid-v0g7NrxFvl .btn_link:hover span {
  transform: translatex(5px);
}
@media (max-width: 991px) {
  .cid-v0g7NrxFvl .title_block {
    margin-bottom: 40px;
  }
  .cid-v0g7NrxFvl .card {
    text-align: center;
  }
  .cid-v0g7NrxFvl .card_wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-v0g7NrxFvl .mbr-section-title {
  color: #000000;
}
.cid-v0g7NrxFvl .card-title,
.cid-v0g7NrxFvl .icon_block {
  color: #000000;
  text-align: center;
}
.cid-v0g7NrxFvl .card-text,
.cid-v0g7NrxFvl .btn_link {
  color: #6a7c92;
}
.cid-v0g7Nsk4J8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-v0g7Nsk4J8 .col-lg-4 {
    padding: 0 2.5rem;
  }
}
.cid-v0g7Nsk4J8 .mbr-text {
  color: #000000;
}
.cid-v0g7Nsk4J8 .mbr-section-title {
  color: #000000;
}
.cid-v0g7Nt4h3t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g7Nt4h3t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g7Nt4h3t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g7Nt4h3t .row {
  margin: 0 !important;
}
.cid-v0g7Nt4h3t .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-v0g7Nt4h3t .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v0g7Nt4h3t .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-v0g7Nt4h3t .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-v0g7Nt4h3t .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0g7Nt4h3t .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-v0g7Nt4h3t .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0g7Nt4h3t .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-v0g7Nt4h3t .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-v0g7Nt4h3t .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-v0g7Nt4h3t .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v0g7Nt4h3t .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #3f8f17;
  margin-left: 0.5rem;
}
.cid-v0g7Nt4h3t .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #3f8f17;
  font-weight: 900;
}
.cid-v0g7Nt4h3t .panel-group {
  border: none;
}
.cid-v0g7Nt4h3t .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-v0g7Nt4h3t .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0g7Nt4h3t .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v0g7Nt4h3t .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-v0g7Nt4h3t .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-v0g7Nt4h3t .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-v0g7Nt4h3t .panel-title-edit {
  color: #131313;
}
.cid-v0g7Nt4h3t .panel-body {
  padding: 0 0 20px;
}
.cid-v0g7Nt4h3t .panel-text {
  color: #131313;
  margin: 0;
}
.cid-v0g7NuwtYN {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pg.jpg-768x511.jpg");
}
.cid-v0g7NuwtYN .mbr-section-title {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2rem;
  color: #000000;
}
.cid-v0g7NuwtYN .row-bg {
  align-items: center;
  background: #ffffff;
  padding: 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v0g7NuwtYN .row-bg {
    padding: 1rem 0;
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0g7NuwtYN .image-wrapper {
    padding: 1rem;
  }
}
.cid-v0g7NuwtYN img {
  border-radius: 1rem;
  transition: all 0.3s;
}
.cid-v0g7NuwtYN img:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-v0g7NuwtYN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g7NuwtYN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g7NuwtYN .mbr-text,
.cid-v0g7NuwtYN .mbr-section-btn {
  color: #000000;
}
.cid-v0g7NvWIt1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g7NvWIt1 .title_block {
  margin-bottom: 80px;
}
.cid-v0g7NvWIt1 .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-v0g7NvWIt1 .mbr-section-title {
  color: #000000;
}
.cid-v0g7NvWIt1 .image img {
  width: 100%;
  object-fit: cover;
}
.cid-v0g7NvWIt1 .mbr-text {
  margin-top: 30px;
}
.cid-v0g7NvWIt1 .nav-tabs .nav-item.open .nav-link:focus,
.cid-v0g7NvWIt1 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-v0g7NvWIt1 .nav-tabs {
  border: none;
}
.cid-v0g7NvWIt1 .nav-item {
  width: 100%;
  margin-bottom: 30px;
}
.cid-v0g7NvWIt1 .nav-tabs .nav-link {
  background-color: #eceeec !important;
  line-height: 1;
  padding: 30px 40px;
  display: block;
  border-radius: 5px !important;
  border: none;
  color: #273240 !important;
  box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g7NvWIt1 .nav-tabs .nav-link.active {
  background-color: #3f8f17 !important;
  box-shadow: 0px 40px 80px 0px rgba(1, 1, 64, 0.08);
  color: #ffffff !important;
}
.cid-v0g7NvWIt1 .nav-tabs .nav-link:hover {
  background-color: #3f8f17 !important;
  box-shadow: 0px 20px 40px 0px rgba(0, 33, 121, 0.08);
  color: #ffffff !important;
  cursor: pointer;
}
.cid-v0g7NvWIt1 .nav-tabs .nav-link strong,
.cid-v0g7NvWIt1 .nav-tabs .nav-link b {
  font-size: 22px;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .cid-v0g7NvWIt1 .title_block {
    margin-bottom: 40px;
  }
  .cid-v0g7NvWIt1 .nav-tabs .nav-link {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-v0g7NvWIt1 .mbr-text {
    margin-top: 20px;
  }
}
.cid-v0g7NxP4u9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g7NxP4u9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0g7NxP4u9 .card-title {
  margin-bottom: 26px;
  color: #051441;
}
.cid-v0g7NxP4u9 .mbr-text {
  margin-bottom: 30px;
}
.cid-v0g7NxP4u9 .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-v0g7NxP4u9 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-v0g7NxP4u9 .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-v0g7NxP4u9 .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g7NxP4u9 .btn_link:hover {
  cursor: pointer;
}
.cid-v0g7NxP4u9 .btn_link:hover a {
  color: #5d76b4 !important;
}
.cid-v0g7NxP4u9 .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-v0g7NxP4u9 .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0g7NxP4u9 .text-wrapper {
    text-align: center;
  }
  .cid-v0g7NxP4u9 .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-v0g7NxP4u9 .mbr-text {
    margin-bottom: 20px;
  }
  .cid-v0g7NxP4u9 .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v0g7NxP4u9 .card-title,
.cid-v0g7NxP4u9 .icon_block {
  color: #000000;
}
.cid-v0g7NxP4u9 .mbr-text,
.cid-v0g7NxP4u9 .btn_link {
  color: #000000;
}
.cid-v0g7NyPuV8 {
  padding-top: 9rem;
  padding-bottom: 8rem;
  overflow: hidden;
  position: relative;
  background-color: #1a4902;
}
.cid-v0g7NyPuV8 .decor-wrap_1 {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g7NyPuV8 .decor-wrap_2 {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g7NyPuV8 .decor-wrap_3 {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g7NyPuV8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g7NyPuV8 .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-v0g7NyPuV8 .container {
    padding: 0 30px;
  }
}
.cid-v0g7NyPuV8 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-v0g7NyPuV8 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-v0g7NyPuV8 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v0g7NyPuV8 .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-v0g7NyPuV8 .mbr-section-title {
  color: #ffffff;
}
.cid-v0g7NyPuV8 .mbr-text,
.cid-v0g7NyPuV8 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v0g7NyPuV8 .mbr-section-title,
.cid-v0g7NyPuV8 .mbr-section-btn {
  text-align: center;
}
.cid-v0ghn29t8c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0ghn29t8c .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ghn29t8c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ghn29t8c .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-v0ghn29t8c .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-v0ghn29t8c .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-v0ghn29t8c .panel-group .card {
    padding: 20px 0;
  }
}
.cid-v0ghn29t8c .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v0ghn29t8c .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v0ghn29t8c .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v0ghn29t8c .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-v0ghn29t8c .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v0ghn29t8c .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-v0ghn29t8c .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v0ghn29t8c .mbr-section-title {
  color: #19171c;
}
.cid-v0ghn29t8c .panel-title {
  color: #19171c;
}
.cid-v0ghn29t8c .panel-text {
  color: #000000;
}
.cid-v0ghn29t8c .mbr-section-title,
.cid-v0ghn29t8c .mbr-section-btn {
  color: #000000;
}
.cid-v0g7NAZS84 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g7NAZS84 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g7NAZS84 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g7NAZS84 .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v0g7NAZS84 .card-wrapper {
    padding: 20px;
  }
}
.cid-v0g7NAZS84 .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v0g7NAZS84 .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0g7NAZS84 .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-v0g7NAZS84 .card-wrapper .google-map iframe {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-v0g7NAZS84 .card-wrapper .google-map iframe {
    height: 300px;
  }
}
.cid-v0g7NAZS84 .mbr-section-title,
.cid-v0g7NAZS84 .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v0g7NBB6L8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a4902;
}
.cid-v0g7NBB6L8 .footer_col_logo {
  width: 40%;
}
.cid-v0g7NBB6L8 .footer_col {
  width: 20%;
}
.cid-v0g7NBB6L8 .list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-v0g7NBB6L8 .logo_wrap {
  max-width: 20%;
}
.cid-v0g7NBB6L8 .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-v0g7NBB6L8 .brand_name {
  color: #ffffff;
}
.cid-v0g7NBB6L8 .contacts {
  margin-top: 46px;
}
.cid-v0g7NBB6L8 .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-v0g7NBB6L8 .contacts b {
  color: #ffffff;
}
.cid-v0g7NBB6L8 .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-v0g7NBB6L8 .item-wrap {
  line-height: 44px;
}
.cid-v0g7NBB6L8 .text-white {
  color: #a99fc5 !important;
}
.cid-v0g7NBB6L8 .text-white:hover {
  color: #ffffff !important;
}
.cid-v0g7NBB6L8 .item-wrap a,
.cid-v0g7NBB6L8 .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g7NBB6L8 .item-wrap a:before,
.cid-v0g7NBB6L8 .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-v0g7NBB6L8 .item-wrap a:hover::before,
.cid-v0g7NBB6L8 .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-v0g7NBB6L8 .image {
  margin-top: 30px;
  max-width: 200px;
}
.cid-v0g7NBB6L8 .image img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .cid-v0g7NBB6L8 .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-v0g7NBB6L8 .footer_col_logo {
    width: 100%;
  }
  .cid-v0g7NBB6L8 .footer_col {
    width: 33.3%;
  }
  .cid-v0g7NBB6L8 .image {
    margin-bottom: 40px;
  }
  .cid-v0g7NBB6L8 .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-v0g7NBB6L8 .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-v0g7NBB6L8 .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-v0g7NBB6L8 .row {
    justify-content: center;
    text-align: center;
  }
  .cid-v0g7NBB6L8 .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-v0g7NBB6L8 .footer_col {
    margin-top: 40px;
    width: 100%;
  }
  .cid-v0g7NBB6L8 .image {
    margin: auto;
    margin-top: 30px;
  }
}
.cid-v0g7NBB6L8 .contacts_mail {
  color: #ffffff;
}
.cid-v0g7NClH35 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0g7NClH35 .line {
  height: .8px;
  background: #000000;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-v0g7NClH35 .text-white {
  color: #a99fc5 !important;
}
.cid-v0g7NClH35 .text-white:hover {
  color: #ffffff !important;
}
.cid-v0g7NClH35 .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0g7NClH35 .foot-menu li {
  padding: 10px;
}
.cid-v0g7NClH35 .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g7NClH35 .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-v0g7NClH35 .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-v0g7NClH35 .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-v0g7NClH35 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-v0g7NClH35 .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-v0g7NClH35 .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-v0g7NClH35 .social-list a:hover {
  opacity: 1;
}
.cid-v0g7NClH35 .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #000000;
}
@media (max-width: 767px) {
  .cid-v0g7NClH35 .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-v0g7NClH35 .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-v0g9sRoBSq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0g9sRoBSq nav.navbar {
  position: fixed;
}
.cid-v0g9sRoBSq .btn {
  box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}
.cid-v0g9sRoBSq .dropdown-toggle[data-toggle="dropdown-submenu"]:before {
  font-family: Moririse2 !important;
  content: "\e909";
  display: inline-block;
  width: 10px;
  position: absolute;
  right: 25px;
  top: 40%;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 10px;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
.cid-v0g9sRoBSq .dropdown-toggle:after {
  content: none;
}
@media (min-width: 992px) {
  .cid-v0g9sRoBSq .navbar-nav .nav-link:before {
    content: none;
  }
}
.cid-v0g9sRoBSq .dropdown-menu {
  padding: 20px 0;
  min-width: 220px;
  box-shadow: -1px 2px 19px 3px rgba(0, 11, 40, 0.1);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: initial;
}
.cid-v0g9sRoBSq .navbar .dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.cid-v0g9sRoBSq .dropdown-item:hover,
.cid-v0g9sRoBSq .dropdown-item:focus {
  background: rgba(93, 118, 180, 0.1) !important;
  color: #5d76b4 !important;
}
.cid-v0g9sRoBSq .nav-dropdown .link {
  padding: 35px 0 !important;
  margin-right: 40px !important;
}
.cid-v0g9sRoBSq .nav-dropdown .nav-item:last-child .link {
  margin-right: 0 !important;
}
.cid-v0g9sRoBSq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  display: none;
}
.cid-v0g9sRoBSq .nav-link {
  position: relative;
  line-height: 1;
}
.cid-v0g9sRoBSq .nav-link:hover {
  color: #5d76b4 !important;
}
.cid-v0g9sRoBSq .container {
  display: flex;
  margin: auto;
}
.cid-v0g9sRoBSq .iconfont-wrapper {
  color: #051441 !important;
  font-size: 17px;
  margin-right: 20px;
}
.cid-v0g9sRoBSq .dropdown-menu,
.cid-v0g9sRoBSq .navbar.opened {
  background: #1a4902 !important;
}
.cid-v0g9sRoBSq .nav-item:focus,
.cid-v0g9sRoBSq .nav-link:focus {
  outline: none;
}
.cid-v0g9sRoBSq .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  transition: all 0.25s ease-in-out;
}
.cid-v0g9sRoBSq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0g9sRoBSq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0g9sRoBSq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0g9sRoBSq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0g9sRoBSq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 30px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0g9sRoBSq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: #1a4902;
}
.cid-v0g9sRoBSq .navbar.navbar-short {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}
.cid-v0g9sRoBSq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0g9sRoBSq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0g9sRoBSq .navbar.opened {
  transition: all 0.3s;
}
.cid-v0g9sRoBSq .navbar .dropdown-item {
  padding: 6px 30px;
}
.cid-v0g9sRoBSq .navbar .navbar-logo img {
  width: auto;
}
.cid-v0g9sRoBSq .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v0g9sRoBSq .navbar.collapsed {
  justify-content: center;
}
.cid-v0g9sRoBSq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0g9sRoBSq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0g9sRoBSq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v0g9sRoBSq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0g9sRoBSq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0g9sRoBSq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  display: none;
  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-v0g9sRoBSq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0g9sRoBSq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 6px 30px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v0g9sRoBSq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0g9sRoBSq .navbar .dropdown-menu {
    display: none;
  }
  .cid-v0g9sRoBSq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0g9sRoBSq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0g9sRoBSq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    display: none;
    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-v0g9sRoBSq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0g9sRoBSq .navbar ul.navbar-nav {
    padding: 15px;
  }
  .cid-v0g9sRoBSq .navbar .dropdown-menu .dropdown-item {
    padding: 6px 30px !important;
    text-align: left;
  }
  .cid-v0g9sRoBSq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0g9sRoBSq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0g9sRoBSq .navbar .navbar-buttons,
  .cid-v0g9sRoBSq .navbar .icons-menu {
    display: none;
  }
  .cid-v0g9sRoBSq .navbar .nav-dropdown .link {
    margin-right: 0 !important;
    padding-top: 12px !important;
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
  }
}
.cid-v0g9sRoBSq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0g9sRoBSq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0g9sRoBSq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0g9sRoBSq .dropdown-item.active,
.cid-v0g9sRoBSq .dropdown-item:active {
  background-color: transparent;
}
.cid-v0g9sRoBSq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0g9sRoBSq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a4902;
}
.cid-v0g9sRoBSq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0g9sRoBSq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0g9sRoBSq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0g9sRoBSq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0g9sRoBSq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #051441;
}
.cid-v0g9sRoBSq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0g9sRoBSq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0g9sRoBSq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0g9sRoBSq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0g9sRoBSq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0g9sRoBSq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0g9sRoBSq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0g9sRoBSq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0g9sRoBSq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0g9sRoBSq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v0g9sRoBSq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-right: 15px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0g9sRoBSq .navbar {
    height: 70px;
  }
  .cid-v0g9sRoBSq .navbar.opened {
    height: auto;
  }
  .cid-v0g9sRoBSq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0g9sSljqr {
  padding-top: 12rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-v0g9sSljqr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g9sSljqr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g9sSljqr .image-wrapper img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
.cid-v0g9sSljqr .row {
  flex-direction: row-reverse;
}
.cid-v0g9sSljqr .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v0g9sSljqr .row {
    flex-direction: column-reverse;
    gap: 90px;
  }
}
.cid-v0g9sSljqr .mbr-section-title {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v0g9sSljqr .text-wrapper {
    text-align: center;
  }
}
.cid-v0g9sSljqr .mbr-text,
.cid-v0g9sSljqr .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0g9sSljqr .mbr-menu,
.cid-v0g9sSljqr .mbr-section-btn {
  color: #fdfde1;
}
.cid-v0g9sSljqr .mbr-desc,
.cid-v0g9sSljqr .mbr-section-btn {
  color: #000000;
}
.cid-v0g9sT8GnP {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g9sT8GnP .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v0g9sT8GnP .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v0g9sT8GnP .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #1a4902;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #1a4902;
  color: #1a4902;
  content: "✓";
}
.cid-v0g9sT8GnP .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-v0g9sT8GnP .mbr-text {
  color: #3d5943;
}
.cid-v0g9sTNeYf {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0g9sTNeYf .card-wrapper {
  background: #ffffff;
  padding: 5rem;
}
@media (max-width: 992px) {
  .cid-v0g9sTNeYf .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0g9sTNeYf .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v0g9sTNeYf .mbr-text {
  color: #000000;
}
.cid-v0g9sTNeYf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0g9sTNeYf .mbr-section-title {
  color: #000000;
}
.cid-v0g9sUsuWt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a4902;
}
@media (max-width: 991px) {
  .cid-v0g9sUsuWt .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v0g9sUsuWt .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v0g9sUsuWt img {
  width: 100%;
  border-radius: 30px;
}
.cid-v0g9sUsuWt .wrapp {
  padding: 44px 40px;
  border: 1px solid;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v0g9sUsuWt .wrapp {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v0g9sUsuWt .wrapp {
    padding: 3rem;
  }
}
.cid-v0g9sUsuWt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0g9sUsuWt .mbr-text {
  color: #ffffff;
}
.cid-v0g9sVggbV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v0g9sVggbV .title_block {
  margin-bottom: 80px;
}
.cid-v0g9sVggbV .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-v0g9sVggbV .mbr-section-title,
.cid-v0g9sVggbV .card-title {
  color: #051441;
}
.cid-v0g9sVggbV .card_wrapper {
  height: 100%;
  background: #ffffff;
  padding: 45px 35px;
  box-shadow: 0 20px 60px 0 rgba(0, 11, 40, 0.06);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g9sVggbV .card_wrapper:hover {
  transform: translateY(-16px);
}
.cid-v0g9sVggbV .card:nth-child(1) .iconfont-wrapper:before {
  background-color: rgba(93, 118, 180, 0.07);
}
.cid-v0g9sVggbV .card:nth-child(1) .iconfont-wrapper .mbr-iconfont {
  color: #5d76b4;
}
.cid-v0g9sVggbV .card:nth-child(2) .iconfont-wrapper:before {
  background-color: rgba(253, 97, 44, 0.07);
}
.cid-v0g9sVggbV .card:nth-child(2) .iconfont-wrapper .mbr-iconfont {
  color: #fd612c;
}
.cid-v0g9sVggbV .card:nth-child(3) .iconfont-wrapper:before {
  background-color: rgba(55, 197, 171, 0.07);
}
.cid-v0g9sVggbV .card:nth-child(3) .iconfont-wrapper .mbr-iconfont {
  color: #37c5ab;
}
.cid-v0g9sVggbV .card:nth-child(4) .iconfont-wrapper:before {
  background-color: rgba(121, 110, 255, 0.07);
}
.cid-v0g9sVggbV .card:nth-child(4) .iconfont-wrapper .mbr-iconfont {
  color: #796eff;
}
.cid-v0g9sVggbV .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-v0g9sVggbV .iconfont-wrapper:before {
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 60px;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-v0g9sVggbV .iconfont-wrapper .mbr-iconfont {
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-v0g9sVggbV .card-title {
  margin-bottom: 20px;
}
.cid-v0g9sVggbV .card-text {
  margin-bottom: 15px;
  line-height: 1.5;
}
.cid-v0g9sVggbV .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-v0g9sVggbV .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g9sVggbV .btn_link:hover {
  cursor: pointer;
}
.cid-v0g9sVggbV .btn_link:hover a {
  color: #5d76b4 !important;
}
.cid-v0g9sVggbV .btn_link:hover span {
  transform: translatex(5px);
}
@media (max-width: 991px) {
  .cid-v0g9sVggbV .title_block {
    margin-bottom: 40px;
  }
  .cid-v0g9sVggbV .card {
    text-align: center;
  }
  .cid-v0g9sVggbV .card_wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-v0g9sVggbV .mbr-section-title {
  color: #000000;
}
.cid-v0g9sVggbV .card-title,
.cid-v0g9sVggbV .icon_block {
  color: #000000;
  text-align: center;
}
.cid-v0g9sVggbV .card-text,
.cid-v0g9sVggbV .btn_link {
  color: #6a7c92;
}
.cid-v0g9sWoDHE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-v0g9sWoDHE .col-lg-4 {
    padding: 0 2.5rem;
  }
}
.cid-v0g9sWoDHE .mbr-text {
  color: #000000;
}
.cid-v0g9sWoDHE .mbr-section-title {
  color: #000000;
}
.cid-v0g9sXghtI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g9sXghtI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g9sXghtI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g9sXghtI .row {
  margin: 0 !important;
}
.cid-v0g9sXghtI .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-v0g9sXghtI .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v0g9sXghtI .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-v0g9sXghtI .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-v0g9sXghtI .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v0g9sXghtI .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-v0g9sXghtI .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v0g9sXghtI .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-v0g9sXghtI .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-v0g9sXghtI .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-v0g9sXghtI .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v0g9sXghtI .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #3f8f17;
  margin-left: 0.5rem;
}
.cid-v0g9sXghtI .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #3f8f17;
  font-weight: 900;
}
.cid-v0g9sXghtI .panel-group {
  border: none;
}
.cid-v0g9sXghtI .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-v0g9sXghtI .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v0g9sXghtI .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v0g9sXghtI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-v0g9sXghtI .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-v0g9sXghtI .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-v0g9sXghtI .panel-title-edit {
  color: #131313;
}
.cid-v0g9sXghtI .panel-body {
  padding: 0 0 20px;
}
.cid-v0g9sXghtI .panel-text {
  color: #131313;
  margin: 0;
}
.cid-v0g9sYwbP4 {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/7-common-myths-about-cosmetic-dentistry-1.png-1200x800.png");
}
.cid-v0g9sYwbP4 .mbr-section-title {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2rem;
  color: #000000;
}
.cid-v0g9sYwbP4 .row-bg {
  align-items: center;
  background: #ffffff;
  padding: 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v0g9sYwbP4 .row-bg {
    padding: 1rem 0;
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-v0g9sYwbP4 .image-wrapper {
    padding: 1rem;
  }
}
.cid-v0g9sYwbP4 img {
  border-radius: 1rem;
  transition: all 0.3s;
}
.cid-v0g9sYwbP4 img:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-v0g9sYwbP4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g9sYwbP4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g9sYwbP4 .mbr-text,
.cid-v0g9sYwbP4 .mbr-section-btn {
  color: #000000;
}
.cid-v0g9sZtTYL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g9sZtTYL .title_block {
  margin-bottom: 80px;
}
.cid-v0g9sZtTYL .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #000000;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-v0g9sZtTYL .mbr-section-title {
  color: #000000;
}
.cid-v0g9sZtTYL .image img {
  width: 100%;
  object-fit: cover;
}
.cid-v0g9sZtTYL .mbr-text {
  margin-top: 30px;
}
.cid-v0g9sZtTYL .nav-tabs .nav-item.open .nav-link:focus,
.cid-v0g9sZtTYL .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-v0g9sZtTYL .nav-tabs {
  border: none;
}
.cid-v0g9sZtTYL .nav-item {
  width: 100%;
  margin-bottom: 30px;
}
.cid-v0g9sZtTYL .nav-tabs .nav-link {
  background-color: #eceeec !important;
  line-height: 1;
  padding: 30px 40px;
  display: block;
  border-radius: 5px !important;
  border: none;
  color: #273240 !important;
  box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g9sZtTYL .nav-tabs .nav-link.active {
  background-color: #3f8f17 !important;
  box-shadow: 0px 40px 80px 0px rgba(1, 1, 64, 0.08);
  color: #ffffff !important;
}
.cid-v0g9sZtTYL .nav-tabs .nav-link:hover {
  background-color: #3f8f17 !important;
  box-shadow: 0px 20px 40px 0px rgba(0, 33, 121, 0.08);
  color: #ffffff !important;
  cursor: pointer;
}
.cid-v0g9sZtTYL .nav-tabs .nav-link strong,
.cid-v0g9sZtTYL .nav-tabs .nav-link b {
  font-size: 22px;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .cid-v0g9sZtTYL .title_block {
    margin-bottom: 40px;
  }
  .cid-v0g9sZtTYL .nav-tabs .nav-link {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-v0g9sZtTYL .mbr-text {
    margin-top: 20px;
  }
}
.cid-v0g9t0NSgv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g9t0NSgv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0g9t0NSgv .card-title {
  margin-bottom: 26px;
  color: #051441;
}
.cid-v0g9t0NSgv .mbr-text {
  margin-bottom: 30px;
}
.cid-v0g9t0NSgv .iconfont-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 14px 30px 0px rgba(107, 61, 240, 0.4);
  background-image: linear-gradient(40deg, #6b3df0 0%, #b39cf7 100%);
}
.cid-v0g9t0NSgv .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-v0g9t0NSgv .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-v0g9t0NSgv .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g9t0NSgv .btn_link:hover {
  cursor: pointer;
}
.cid-v0g9t0NSgv .btn_link:hover a {
  color: #5d76b4 !important;
}
.cid-v0g9t0NSgv .btn_link:hover span {
  transform: translatex(5px);
}
@media (min-width: 992px) {
  .cid-v0g9t0NSgv .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0g9t0NSgv .text-wrapper {
    text-align: center;
  }
  .cid-v0g9t0NSgv .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-v0g9t0NSgv .mbr-text {
    margin-bottom: 20px;
  }
  .cid-v0g9t0NSgv .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v0g9t0NSgv .card-title,
.cid-v0g9t0NSgv .icon_block {
  color: #000000;
}
.cid-v0g9t0NSgv .mbr-text,
.cid-v0g9t0NSgv .btn_link {
  color: #000000;
}
.cid-v0g9t1RxQy {
  padding-top: 9rem;
  padding-bottom: 8rem;
  overflow: hidden;
  position: relative;
  background-color: #1a4902;
}
.cid-v0g9t1RxQy .decor-wrap_1 {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g9t1RxQy .decor-wrap_2 {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g9t1RxQy .decor-wrap_3 {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ffffff 0, #3f8f17 43%, #3f8f17 100%);
}
.cid-v0g9t1RxQy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g9t1RxQy .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-v0g9t1RxQy .container {
    padding: 0 30px;
  }
}
.cid-v0g9t1RxQy .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-v0g9t1RxQy .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-v0g9t1RxQy .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v0g9t1RxQy .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-v0g9t1RxQy .mbr-section-title {
  color: #ffffff;
}
.cid-v0g9t1RxQy .mbr-text,
.cid-v0g9t1RxQy .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-v0g9t1RxQy .mbr-section-title,
.cid-v0g9t1RxQy .mbr-section-btn {
  text-align: center;
}
.cid-v0gi37KUtW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0gi37KUtW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0gi37KUtW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0gi37KUtW .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-v0gi37KUtW .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-v0gi37KUtW .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-v0gi37KUtW .panel-group .card {
    padding: 20px 0;
  }
}
.cid-v0gi37KUtW .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v0gi37KUtW .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v0gi37KUtW .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v0gi37KUtW .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-v0gi37KUtW .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v0gi37KUtW .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-v0gi37KUtW .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v0gi37KUtW .mbr-section-title {
  color: #19171c;
}
.cid-v0gi37KUtW .panel-title {
  color: #19171c;
}
.cid-v0gi37KUtW .panel-text {
  color: #000000;
}
.cid-v0gi37KUtW .mbr-section-title,
.cid-v0gi37KUtW .mbr-section-btn {
  color: #000000;
}
.cid-v0g9t3I0eE {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0g9t3I0eE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0g9t3I0eE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0g9t3I0eE .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v0g9t3I0eE .card-wrapper {
    padding: 20px;
  }
}
.cid-v0g9t3I0eE .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v0g9t3I0eE .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v0g9t3I0eE .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-v0g9t3I0eE .card-wrapper .google-map iframe {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-v0g9t3I0eE .card-wrapper .google-map iframe {
    height: 300px;
  }
}
.cid-v0g9t3I0eE .mbr-section-title,
.cid-v0g9t3I0eE .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-v0g9t4ALEZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a4902;
}
.cid-v0g9t4ALEZ .footer_col_logo {
  width: 40%;
}
.cid-v0g9t4ALEZ .footer_col {
  width: 20%;
}
.cid-v0g9t4ALEZ .list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-v0g9t4ALEZ .logo_wrap {
  max-width: 20%;
}
.cid-v0g9t4ALEZ .logo_wrap img {
  width: 100%;
  max-height: 150px;
}
.cid-v0g9t4ALEZ .brand_name {
  color: #ffffff;
}
.cid-v0g9t4ALEZ .contacts {
  margin-top: 46px;
}
.cid-v0g9t4ALEZ .contacts p {
  line-height: 33px;
  margin-bottom: 0;
}
.cid-v0g9t4ALEZ .contacts b {
  color: #ffffff;
}
.cid-v0g9t4ALEZ .mbr-section-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 43px;
  color: #ffffff;
}
.cid-v0g9t4ALEZ .item-wrap {
  line-height: 44px;
}
.cid-v0g9t4ALEZ .text-white {
  color: #a99fc5 !important;
}
.cid-v0g9t4ALEZ .text-white:hover {
  color: #ffffff !important;
}
.cid-v0g9t4ALEZ .item-wrap a,
.cid-v0g9t4ALEZ .contacts a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g9t4ALEZ .item-wrap a:before,
.cid-v0g9t4ALEZ .contacts a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-v0g9t4ALEZ .item-wrap a:hover::before,
.cid-v0g9t4ALEZ .contacts a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-v0g9t4ALEZ .image {
  margin-top: 30px;
  max-width: 200px;
}
.cid-v0g9t4ALEZ .image img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .cid-v0g9t4ALEZ .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-v0g9t4ALEZ .footer_col_logo {
    width: 100%;
  }
  .cid-v0g9t4ALEZ .footer_col {
    width: 33.3%;
  }
  .cid-v0g9t4ALEZ .image {
    margin-bottom: 40px;
  }
  .cid-v0g9t4ALEZ .contacts {
    margin-top: 30px;
    margin-bottom: 28px;
  }
  .cid-v0g9t4ALEZ .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-v0g9t4ALEZ .item-wrap {
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cid-v0g9t4ALEZ .row {
    justify-content: center;
    text-align: center;
  }
  .cid-v0g9t4ALEZ .mbr-section-btn {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .cid-v0g9t4ALEZ .footer_col {
    margin-top: 40px;
    width: 100%;
  }
  .cid-v0g9t4ALEZ .image {
    margin: auto;
    margin-top: 30px;
  }
}
.cid-v0g9t4ALEZ .contacts_mail {
  color: #ffffff;
}
.cid-v0g9t5F4Bv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0g9t5F4Bv .line {
  height: .8px;
  background: #000000;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-v0g9t5F4Bv .text-white {
  color: #a99fc5 !important;
}
.cid-v0g9t5F4Bv .text-white:hover {
  color: #ffffff !important;
}
.cid-v0g9t5F4Bv .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v0g9t5F4Bv .foot-menu li {
  padding: 10px;
}
.cid-v0g9t5F4Bv .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v0g9t5F4Bv .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-v0g9t5F4Bv .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-v0g9t5F4Bv .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-v0g9t5F4Bv .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-v0g9t5F4Bv .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-v0g9t5F4Bv .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-v0g9t5F4Bv .social-list a:hover {
  opacity: 1;
}
.cid-v0g9t5F4Bv .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #000000;
}
@media (max-width: 767px) {
  .cid-v0g9t5F4Bv .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-v0g9t5F4Bv .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
