body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.25rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.96875rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.975rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.9rem;
    font-size: calc( 1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #22a5e5 !important;
}
.bg-success {
  background-color: #f9f7f5 !important;
}
.bg-info {
  background-color: #9fdbf8 !important;
}
.bg-warning {
  background-color: #999999 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #096abc !important;
  border-color: #096abc !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #053b69 !important;
  border-color: #053b69 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #053b69 !important;
  border-color: #053b69 !important;
}
.btn-info,
.btn-info:active {
  background-color: #9fdbf8 !important;
  border-color: #9fdbf8 !important;
  color: #0a638e !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #4ebdf2 !important;
  border-color: #4ebdf2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #0a638e !important;
  background-color: #4ebdf2 !important;
  border-color: #4ebdf2 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
  color: #95785a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #5f4c39 !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #95785a !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #999999 !important;
  border-color: #999999 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #6e6e6e !important;
  border-color: #6e6e6e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #6e6e6e !important;
  border-color: #6e6e6e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
  color: #95785a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #5f4c39 !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #95785a !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #22a5e5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #13709e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #096abc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #053b69 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #096abc !important;
  border-color: #096abc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9fdbf8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #4ebdf2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #0a638e !important;
  background-color: #9fdbf8 !important;
  border-color: #9fdbf8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f9f7f5;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d8ccbf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #95785a !important;
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #999999;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #6e6e6e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #222222;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f9f7f5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d8ccbf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #95785a !important;
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
}
.text-primary {
  color: #22a5e5 !important;
}
.text-secondary {
  color: #096abc !important;
}
.text-success {
  color: #f9f7f5 !important;
}
.text-info {
  color: #9fdbf8 !important;
}
.text-warning {
  color: #999999 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #116690 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #04335b !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #d3c4b5 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #40b7f1 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #666666 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d3c4b5 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #22a5e5;
}
.nav-tabs .nav-link:not(.active) {
  color: #222222;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #9fdbf8;
}
.alert-warning {
  background-color: #999999;
}
.alert-danger {
  background-color: #000000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #22a5e5;
  border-color: #22a5e5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #22a5e5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d9d9d9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.71875rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #22a5e5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.71875rem;
}
blockquote {
  border-color: #22a5e5;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #22a5e5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #22a5e5;
}
.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: #22a5e5;
  border-bottom-color: #22a5e5;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #22a5e5 !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: #096abc !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='%2322a5e5' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.container {
  max-width: 1302px;
}
.btn {
  padding: 12px 24px;
  border-radius: 0;
  letter-spacing: 3px;
}
.btn-big {
  padding: 20px 40px !important;
}
.btn-scale {
  transition: 0.3s all;
}
.btn-scale:hover {
  transform: scale(0.9);
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sSNhnn9Qhy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSNhnn9Qhy nav.navbar {
  position: fixed;
}
.cid-sSNhnn9Qhy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNhnn9Qhy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSNhnn9Qhy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSNhnn9Qhy .dropdown-item:hover,
.cid-sSNhnn9Qhy .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sSNhnn9Qhy .dropdown-item:hover span {
  color: white;
}
.cid-sSNhnn9Qhy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSNhnn9Qhy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSNhnn9Qhy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSNhnn9Qhy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSNhnn9Qhy .nav-link {
  position: relative;
}
.cid-sSNhnn9Qhy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sSNhnn9Qhy .container {
    flex-wrap: nowrap;
  }
}
.cid-sSNhnn9Qhy .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSNhnn9Qhy .dropdown-menu,
.cid-sSNhnn9Qhy .navbar.opened {
  background: #ffffff !important;
}
.cid-sSNhnn9Qhy .nav-item:focus,
.cid-sSNhnn9Qhy .nav-link:focus {
  outline: none;
}
.cid-sSNhnn9Qhy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSNhnn9Qhy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSNhnn9Qhy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSNhnn9Qhy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNhnn9Qhy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSNhnn9Qhy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSNhnn9Qhy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sSNhnn9Qhy .navbar.opened {
  transition: all 0.3s;
}
.cid-sSNhnn9Qhy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSNhnn9Qhy .navbar .navbar-logo img {
  width: auto;
}
.cid-sSNhnn9Qhy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSNhnn9Qhy .navbar.collapsed {
  justify-content: center;
}
.cid-sSNhnn9Qhy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSNhnn9Qhy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSNhnn9Qhy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sSNhnn9Qhy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSNhnn9Qhy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSNhnn9Qhy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sSNhnn9Qhy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSNhnn9Qhy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSNhnn9Qhy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSNhnn9Qhy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSNhnn9Qhy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSNhnn9Qhy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSNhnn9Qhy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSNhnn9Qhy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sSNhnn9Qhy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSNhnn9Qhy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSNhnn9Qhy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSNhnn9Qhy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSNhnn9Qhy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSNhnn9Qhy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSNhnn9Qhy .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSNhnn9Qhy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSNhnn9Qhy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSNhnn9Qhy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sSNhnn9Qhy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSNhnn9Qhy .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sSNhnn9Qhy .navbar-brand {
    padding-right: 40px;
  }
}
.cid-sSNhnn9Qhy .dropdown-item.active,
.cid-sSNhnn9Qhy .dropdown-item:active {
  background-color: transparent;
}
.cid-sSNhnn9Qhy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSNhnn9Qhy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSNhnn9Qhy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSNhnn9Qhy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSNhnn9Qhy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSNhnn9Qhy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSNhnn9Qhy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSNhnn9Qhy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSNhnn9Qhy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSNhnn9Qhy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-sSNhnn9Qhy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSNhnn9Qhy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNhnn9Qhy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNhnn9Qhy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSNhnn9Qhy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNhnn9Qhy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSNhnn9Qhy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSNhnn9Qhy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNhnn9Qhy .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-sSNhnn9Qhy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sSNhnn9Qhy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSNhnn9Qhy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSNhnn9Qhy .navbar {
    height: 70px;
  }
  .cid-sSNhnn9Qhy .navbar.opened {
    height: auto;
  }
  .cid-sSNhnn9Qhy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSNhnn9Qhy .container,
.cid-sSNhnn9Qhy .container-fluid {
  flex-wrap: wrap;
}
.cid-sSNhnn9Qhy .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-sSNhnn9Qhy .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-sSNhnn9Qhy .contacts-menu .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSNhnn9Qhy .contacts-menu {
    display: none;
  }
}
.cid-sSNhnn9Qhy .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-sSNhnn9Qhy .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #22a5e5;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-sSNhnn9Qhy .icon-box:hover {
  transform: scale(1.1);
}
.cid-sSNhnn9Qhy .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-sSNhnn9Qhy .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-sSNhnn9Qhy .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-sSNhnn9Qhy .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-sSNhnn9Qhy .navbar-collapse .mbr-section-btn .btn-black {
  color: #22a5e5 !important;
}
@media (max-width: 577px) {
  .cid-sSNhnn9Qhy .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSNhnn9Qhy .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-sSNhnn9Qhy .navbar-collapse .nav-link:hover {
  color: #22a5e5 !important;
}
.cid-sSw4XnIb2u {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-sSw4XnIb2u .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sSw4XnIb2u .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-sSw4XnIb2u .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #22a5e5;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sSw4XnIb2u .label-text {
    text-align: center !important;
  }
}
.cid-sSw4XnIb2u .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSw4XnIb2u .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sSw4XnIb2u .mbr-section-title,
.cid-sSw4XnIb2u .mbr-section-btn {
  text-align: center;
}
.cid-sSw5pcr8WC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSw5pcr8WC .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sSw5pcr8WC .image-wrapper {
    padding-right: 3.55%;
  }
}
.cid-sSw5pcr8WC .image-wrapper .padding-container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .image-wrapper .padding-container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-sSw5pcr8WC .image-wrapper .padding-container {
    padding: 30px;
  }
}
.cid-sSw5pcr8WC .image-wrapper img {
  width: auto;
  max-width: 100%;
  align-self: flex-end;
  object-fit: cover;
}
.cid-sSw5pcr8WC .image-wrapper img:last-child {
  align-self: flex-start;
  margin-top: -25%;
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .image-wrapper img:last-child {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .image-wrapper img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-sSw5pcr8WC .col-text {
    padding: 0;
    padding-left: 3.55%;
  }
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .col-text {
    text-align: center;
  }
}
.cid-sSw5pcr8WC .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-sSw5pcr8WC .text-wrapper {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .text-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-sSw5pcr8WC .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #096abc;
}
@media (max-width: 767px) {
  .cid-sSw5pcr8WC .label-text {
    text-align: center !important;
  }
}
.cid-sSw5pcr8WC .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
}
.cid-sSw5pcr8WC .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-sSw5pcr8WC .lists-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-sSw5pcr8WC .lists-container {
    justify-content: center;
  }
}
.cid-sSw5pcr8WC .card {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSw5pcr8WC .card:first-child {
    margin-bottom: 14px;
  }
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .card {
    margin-top: 30px;
  }
}
.cid-sSw5pcr8WC .card-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .card-wrapper {
    flex-direction: column;
  }
}
.cid-sSw5pcr8WC .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .card-box {
    flex-direction: column;
  }
}
.cid-sSw5pcr8WC .card-content {
  flex-grow: 1;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .card-content {
    flex-grow: 0;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-sSw5pcr8WC .card-number {
    min-width: 95px;
    margin-right: 8px;
  }
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .card-number {
    width: 100%;
  }
}
.cid-sSw5pcr8WC .icon-box {
  padding: 17px;
  border-radius: 5px;
  background-color: #22a5e5;
  margin-right: 45px;
  transition: all .3s;
}
@media (max-width: 991px) {
  .cid-sSw5pcr8WC .icon-box {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sSw5pcr8WC .icon-box:hover {
    transform: scale(0.9);
  }
}
.cid-sSw5pcr8WC .icon-box span {
  color: #ffffff;
}
.cid-sSw5pcr8WC .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-sSw5pcr8WC .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSw5pcr8WC .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-vbsK0nMMiz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9f7f5;
}
.cid-vbsK0nMMiz .row {
  align-items: center;
  justify-content: center;
}
.cid-vbsK0nMMiz .col-text {
  text-align: center;
  padding: 0;
}
.cid-vbsK0nMMiz .lists-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vbsK0nMMiz .lists-container {
    flex-wrap: wrap;
  }
}
.cid-vbsK0nMMiz .card-wrapper {
  padding: 30px;
}
@media (max-width: 767px) {
  .cid-vbsK0nMMiz .card-wrapper {
    padding: 30px 12px;
  }
}
.cid-vbsK0nMMiz .card-box {
  display: flex;
  flex-direction: column;
}
.cid-vbsK0nMMiz .card-number {
  color: #096abc;
  width: 100%;
}
.cid-vbsK0nMMiz .card-title {
  color: #222222;
  width: 100%;
  margin-bottom: 1rem;
}
.cid-vbsK0nMMiz .card-text {
  color: #555555;
  width: 100%;
}
.cid-vbsK0nMMiz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbsK0nMMiz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbsOzXYGqb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbsOzXYGqb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbsOzXYGqb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbsOzXYGqb .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vbsOzXYGqb .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-vbsOzXYGqb .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vbsOzXYGqb .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vbsOzXYGqb .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vbsOzXYGqb .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-vbsOzXYGqb .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vbsOzXYGqb .item {
    margin-bottom: 28px;
  }
}
.cid-vbsOzXYGqb .item .item-wrapper {
  padding: 24px;
  height: 100%;
  border: 1px solid #096abc;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vbsOzXYGqb .item .item-wrapper {
    padding: 16px;
  }
}
.cid-vbsOzXYGqb .item .item-wrapper .item-content .icon-wrapper {
  height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vbsOzXYGqb .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-vbsOzXYGqb .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  display: inline-block;
  font-size: 70px;
  color: #096abc;
  background: linear-gradient(90deg, #096abc, #0b85ed 65%, #369ef5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-vbsOzXYGqb .item .item-wrapper .item-content .item-title {
  margin-bottom: 8px;
}
.cid-vbsOzXYGqb .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-vbsOzXYGqb .mbr-section-title {
  color: #096abc;
  text-align: center;
}
.cid-vbsOzXYGqb .mbr-text,
.cid-vbsOzXYGqb .text-wrapper {
  color: #222222;
  text-align: center;
}
.cid-vbsOzXYGqb .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbsOzXYGqb .item-text {
  color: #222222;
  text-align: left;
}
.cid-vbsOzXYGqb .item-title,
.cid-vbsOzXYGqb .icon-wrapper {
  color: #222222;
  text-align: justify;
}
.cid-vbsKyHUADs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbsKyHUADs .row {
  justify-content: center;
}
.cid-vbsKyHUADs .item-img {
  height: 480px;
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .cid-vbsKyHUADs .item-img {
    height: 286px;
  }
}
.cid-vbsKyHUADs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vbsKyHUADs .item:focus,
.cid-vbsKyHUADs span:focus {
  outline: none;
}
.cid-vbsKyHUADs .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-vbsKyHUADs .col-items {
    flex-wrap: wrap;
  }
}
.cid-vbsKyHUADs .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-vbsKyHUADs .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-vbsKyHUADs .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-vbsKyHUADs .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}
.cid-vbsKyHUADs .item-wrapper .btn {
  padding: 12px 24px;
  min-width: 62px;
}
.cid-vbsKyHUADs .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-vbsKyHUADs .item-wrapper .btn-primary:hover span {
  color: #22a5e5 !important;
}
.cid-vbsKyHUADs .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vbsKyHUADs .item-content {
    text-align: center;
  }
}
.cid-vbsKyHUADs .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-vbsKyHUADs .mbr-text {
  color: #555555;
  margin-top: 16px;
  margin-bottom: 16px;
}
.cid-vbsKyHUADs .item-title {
  color: #222222;
}
.cid-vbsKyHUADs .item-subtitle {
  color: #222222;
}
.cid-vbsKyHUADs .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-vbsKyHUADs .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cid-vbsKyHUADs .mbr-section-head {
    text-align: center !important;
  }
}
.cid-vbo1JJKAr4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #096abc;
}
.cid-vbo1JJKAr4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbo1JJKAr4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbo1JJKAr4 .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-vbo1JJKAr4 .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #f7f7f7;
}
.cid-vbo1JJKAr4 .content-wrap .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vbo1JJKAr4 .content-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vbo1JJKAr4 .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vbo1JJKAr4 .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vbo1JJKAr4 .content-wrap .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-vbo1JJKAr4 .content-wrap .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-vbo1JJKAr4 .mbr-label,
.cid-vbo1JJKAr4 .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vbo1JJKAr4 .mbr-section-title {
  color: #000000;
}
.cid-vbo1JJKAr4 .mbr-text,
.cid-vbo1JJKAr4 .text-wrapper {
  color: #4f4f4f;
  text-align: center;
}
.cid-vbo1JJKAr4 .mbr-section-title,
.cid-vbo1JJKAr4 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-vbnKoEXRE8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vbnKoEXRE8 .row {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-vbnKoEXRE8 .col-text {
    padding: 0 0 0 0;
  }
}
.cid-vbnKoEXRE8 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  height: 100%;
  background-color: #f9f7f5;
}
@media (max-width: 767px) {
  .cid-vbnKoEXRE8 .text-wrapper {
    text-align: center !important;
    padding-bottom: 54px;
  }
}
.cid-vbnKoEXRE8 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #096abc;
}
@media (max-width: 767px) {
  .cid-vbnKoEXRE8 .label-text {
    text-align: center !important;
  }
}
.cid-vbnKoEXRE8 .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-vbnKoEXRE8 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-vbnKoEXRE8 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-vbnKoEXRE8 .mbr-text {
    text-align: center !important;
  }
}
.cid-vbnKoEXRE8 .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-vbnKoEXRE8 .btn-container {
  width: 100%;
  margin-top: auto;
}
.cid-vbnKoEXRE8 .mbr-section-btn .btn {
  padding: 0;
}
.cid-vbnKoEXRE8 .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-vbnKoEXRE8 .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-vbnKoEXRE8 .col-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cid-vbnKoEXRE8 .col-cards {
    padding: 0;
    padding-left: 1.8%;
  }
}
@media (min-width: 992px) {
  .cid-vbnKoEXRE8 .col-cards {
    padding-left: 5%;
  }
}
.cid-vbnKoEXRE8 .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  width: 100%;
}
.cid-vbnKoEXRE8 .cards-wrap:hover {
  background-color: #f9f7f5;
}
.cid-vbnKoEXRE8 .card {
  padding: 30px;
  background-color: #ffffff;
  transition: 0.4s all;
  border-radius: 0;
}
.cid-vbnKoEXRE8 .card:hover {
  background-color: #f9f7f5;
}
@media (min-width: 768px) {
  .cid-vbnKoEXRE8 .card:hover {
    transform: translate(0px, -10px);
  }
}
.cid-vbnKoEXRE8 .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-vbnKoEXRE8 .img-container {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-vbnKoEXRE8 .img-container {
    display: flex;
    justify-content: center;
  }
}
.cid-vbnKoEXRE8 .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  position: relative;
}
.cid-vbnKoEXRE8 .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vbnKoEXRE8 .img-bg {
  background-color: #F0C48A;
  min-width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
}
.cid-vbnKoEXRE8 .card-title {
  color: #096abc;
  margin-bottom: 8px;
}
.cid-vbnKoEXRE8 .card-text {
  color: #222222;
  margin-bottom: 0;
}
.cid-sSw6MwiqN9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-sSw6MwiqN9 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sSw6MwiqN9 .col-text {
    min-height: 575px;
  }
}
@media (max-width: 991px) {
  .cid-sSw6MwiqN9 .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-sSw6MwiqN9 .col-form {
    padding: 30px;
  }
}
.cid-sSw6MwiqN9 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-sSw6MwiqN9 .text-wrapper {
    text-align: center !important;
  }
}
.cid-sSw6MwiqN9 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #222222;
}
@media (max-width: 767px) {
  .cid-sSw6MwiqN9 .label-text {
    text-align: center !important;
  }
}
.cid-sSw6MwiqN9 .mbr-section-title {
  color: #222222;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .cid-sSw6MwiqN9 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sSw6MwiqN9 .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-sSw6MwiqN9 .mbr-section-btn .btn {
  width: max-content;
}
.cid-sSw6MwiqN9 .mbr-section-btn .btn-black {
  color: #22a5e5 !important;
}
@media (max-width: 767px) {
  .cid-sSw6MwiqN9 .mbr-section-btn {
    text-align: center !important;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSw6MwiqN9 .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sSw6MwiqN9 .form-container {
    text-align: center !important;
  }
}
.cid-sSw6MwiqN9 .form-wrap {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sSw6MwiqN9 .form-wrap {
    flex-wrap: wrap;
  }
}
.cid-sSw6MwiqN9 .form-group {
  margin-bottom: 32px !important;
}
.cid-sSw6MwiqN9 .form-control {
  font-size: 1rem;
  border-radius: 0 !important;
}
.cid-sSw6MwiqN9 textarea {
  min-height: 114px;
}
.cid-sSw6XGqytG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSw6XGqytG .row {
  justify-content: center;
}
.cid-sSw6XGqytG img,
.cid-sSw6XGqytG .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sSw6XGqytG .item:focus,
.cid-sSw6XGqytG span:focus {
  outline: none;
}
.cid-sSw6XGqytG .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .col-items {
    flex-wrap: wrap;
  }
}
.cid-sSw6XGqytG .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-sSw6XGqytG .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-sSw6XGqytG .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  overflow: hidden;
  transition: 1s all;
  min-height: 463px;
}
.cid-sSw6XGqytG .item-wrapper .btn {
  padding: 10px 12px;
  min-width: 62px;
}
.cid-sSw6XGqytG .item-wrapper .btn span {
  color: #ffffff;
  margin-right: 8px;
}
.cid-sSw6XGqytG .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-sSw6XGqytG .item-wrapper .btn-primary:hover span {
  color: #22a5e5 !important;
}
.cid-sSw6XGqytG .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
@media (min-width: 768px) {
  .cid-sSw6XGqytG .item-wrapper:hover .item-content {
    bottom: 0;
  }
  .cid-sSw6XGqytG .item-wrapper:hover .item-img img {
    transform: scale(1.2) translateY(-8%);
  }
}
.cid-sSw6XGqytG .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-sSw6XGqytG .item-img img {
  width: 100%;
  transform-style: preserve-3d;
  transition: 1.5s;
}
@media (min-width: 768px) {
  .cid-sSw6XGqytG .item-img img {
    transform: scale(1.2) translateY(8%);
  }
}
.cid-sSw6XGqytG .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  pointer-events: none;
}
.cid-sSw6XGqytG .item-content {
  position: relative;
  bottom: -100%;
  z-index: 3;
  width: 100%;
  padding: 35px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .item-content {
    bottom: 0;
    text-align: center;
  }
}
.cid-sSw6XGqytG .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .label-text {
    text-align: center !important;
  }
}
.cid-sSw6XGqytG .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-sSw6XGqytG .mbr-text {
  color: #ffffff;
}
.cid-sSw6XGqytG .item-title {
  color: #ffffff;
}
.cid-sSw6XGqytG .item-subtitle {
  color: #ffffff;
}
.cid-sSw6XGqytG .icon-wrapper {
  margin-bottom: 1rem;
}
.cid-sSw6XGqytG .icon-wrapper .mbr-iconfont {
  font-size: 33px;
  color: #ffffff;
}
.cid-sSw6XGqytG .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-sSw6XGqytG .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .mbr-section-head {
    text-align: center !important;
  }
}
.cid-sSw6XGqytG .mbr-section-subtitle {
  text-align: center;
}
.cid-sSw7UUU4Da {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f7f5;
}
.cid-sSw7UUU4Da .image-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sSw7UUU4Da .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-sSw7UUU4Da .image-wrapper {
    padding: 30px;
    padding-left: 3rem;
  }
}
.cid-sSw7UUU4Da .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-sSw7UUU4Da .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-sSw7UUU4Da .image-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
  background-color: #f9f7f5;
}
.cid-sSw7UUU4Da .image-wrapper .img-caption .img-label-text {
  color: #096abc;
}
.cid-sSw7UUU4Da .image-wrapper .img-caption .img-text {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-sSw7UUU4Da .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-sSw7UUU4Da .col-text {
    padding: 30px;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sSw7UUU4Da .col-text {
    text-align: center;
  }
}
.cid-sSw7UUU4Da .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sSw7UUU4Da .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #096abc;
}
@media (max-width: 767px) {
  .cid-sSw7UUU4Da .label-text {
    text-align: center !important;
  }
}
.cid-sSw7UUU4Da .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
}
.cid-sSw7UUU4Da .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-sSw7UUU4Da .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-sSw7UUU4Da .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSw7UUU4Da .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sSw7UUU4Da .img-label-text {
  color: #096abc;
}
.cid-vbnHfMTTuj {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vbnHfMTTuj .item-img,
.cid-vbnHfMTTuj .img-wrap,
.cid-vbnHfMTTuj img {
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
}
.cid-vbnHfMTTuj img,
.cid-vbnHfMTTuj .item-img {
  width: 230px;
  overflow: hidden;
  transition: transform 3s;
  cursor: pointer;
  object-fit: cover;
  min-height: 230px;
  height: 230px;
}
@media (max-width: 1600px) {
  .cid-vbnHfMTTuj img,
  .cid-vbnHfMTTuj .item-img {
    width: 180px;
    min-height: 180px;
    height: 180px;
  }
}
.cid-vbnHfMTTuj .item-img {
  border: 1px solid transparent;
  transition: all 0.3s;
}
.cid-vbnHfMTTuj .item:focus,
.cid-vbnHfMTTuj span:focus {
  outline: none;
}
.cid-vbnHfMTTuj .img-wrap {
  transition: all 0.3s;
  overflow: hidden;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}
.cid-vbnHfMTTuj .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbnHfMTTuj .item {
    margin-bottom: 1rem;
  }
}
.cid-vbnHfMTTuj .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-vbnHfMTTuj .item {
  padding: 0;
  margin: 0;
}
.cid-vbnHfMTTuj h5 {
  margin: 0;
}
.cid-vbnHfMTTuj .item-content {
  margin-top: 1rem;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vbnHfMTTuj .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  transition: all 0.3s;
}
.cid-vbnHfMTTuj .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vbnHfMTTuj .item-wrapper:hover .item-img {
  border: 1px solid lightgray;
}
.cid-vbnHfMTTuj .item-wrapper:hover .img-wrap {
  margin: 10px;
}
@media (max-width: 992px) {
  .cid-vbnHfMTTuj .item-wrapper {
    height: auto;
  }
}
.cid-vbnHfMTTuj .mbr-section-title {
  color: #096abc;
  text-align: center;
}
.cid-vbnHfMTTuj .item-title {
  text-align: center;
}
.cid-vbnHfMTTuj .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-vbnHfMTTuj .mbr-text,
.cid-vbnHfMTTuj .item .mbr-section-btn {
  text-align: center;
}
.cid-vbnHfMTTuj .mbr-section-subtitle,
.cid-vbnHfMTTuj .mbr-section-head .mbr-section-btn {
  text-align: left;
}
.cid-vbt3hiczot {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #222222;
}
.cid-vbt3hiczot *:focus {
  outline: none;
  box-shadow: none;
}
.cid-vbt3hiczot .form-control {
  width: 100%;
  background: #efefef;
  border-radius: 0 !important;
  border: none !important;
  min-height: 47px;
}
.cid-vbt3hiczot .form-control::-webkit-input-placeholder {
  color: #000000;
}
.cid-vbt3hiczot .form-control::-moz-placeholder {
  color: #000000;
}
.cid-vbt3hiczot .form-control:-ms-input-placeholder {
  color: #000000;
}
.cid-vbt3hiczot .form-control:-moz-placeholder {
  color: #000000;
}
.cid-vbt3hiczot input.form-control {
  padding: 0.5rem;
}
.cid-vbt3hiczot .soc-item {
  display: inline-block;
  margin: 0 0.1rem 0.2rem 0.1rem;
  padding: 10px 11px 0 11px;
  border: 2px solid #69b9d0 !important;
  border-radius: 50% !important;
}
.cid-vbt3hiczot .soc-item:hover {
  opacity: 0.5;
}
.cid-vbt3hiczot .soc-item .socicon {
  font-size: 1.5rem;
  color: #69b9d0;
}
.cid-vbt3hiczot .days-column,
.cid-vbt3hiczot .hours-column {
  display: inline-block;
}
.cid-vbt3hiczot .days-column span,
.cid-vbt3hiczot .hours-column span {
  display: block;
}
.cid-vbt3hiczot .logo img {
  width: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-vbt3hiczot .days-column {
    padding-right: 0 !important;
  }
  .cid-vbt3hiczot .hours-column {
    max-width: 50% !important;
  }
  .cid-vbt3hiczot .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-vbt3hiczot .contacts-title,
.cid-vbt3hiczot .contacts-block {
  color: #ffffff;
}
.cid-vbt3hiczot .address-title,
.cid-vbt3hiczot .address-block {
  color: #ffffff;
}
.cid-vbt3hiczot .opening-hours-title,
.cid-vbt3hiczot .opening-hours {
  color: #ffffff;
}
.cid-vbt3hiczot .form-title,
.cid-vbt3hiczot .btn-row {
  color: #ffffff;
}
.cid-vbnY7Q3OoW {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #222222;
}
.cid-vbnY7Q3OoW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbnY7Q3OoW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbnY7Q3OoW .content-wrapper .social-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vbnY7Q3OoW .content-wrapper .social-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vbnY7Q3OoW .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vbnY7Q3OoW .content-wrapper .social-wrapper .social-wrap .soc-item {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  margin-right: 10px;
}
.cid-vbnY7Q3OoW .content-wrapper .social-wrapper .social-wrap .soc-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .5;
  transition: all 0.3s ease-in-out;
}
.cid-vbnY7Q3OoW .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .mbr-iconfont {
  margin-right: 0;
}
.cid-vbnY7Q3OoW .content-wrapper .social-wrapper .social-wrap .soc-item:hover:before,
.cid-vbnY7Q3OoW .content-wrapper .social-wrapper .social-wrap .soc-item:hover:before {
  opacity: 1;
}
.cid-vbnY7Q3OoW .content-wrapper .social-wrapper .social-wrap .soc-item a {
  position: relative;
  z-index: 1;
  display: block;
}
.cid-vbnY7Q3OoW .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.cid-vbnY7Q3OoW .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #22a5e5, #096abc 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vbnY7Q3OoW .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #22a5e5, #096abc 40%);
  }
}
.cid-vbnY7Q3OoW .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-vbnY7Q3OoW .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vbnY7Q3OoW .content-wrapper .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-vbnY7Q3OoW .content-wrapper .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vbnY7Q3OoW .content-wrapper .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.cid-vbnY7Q3OoW .content-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vbnY7Q3OoW .content-wrapper .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .cid-vbnY7Q3OoW .content-wrapper .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.cid-vbnY7Q3OoW .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-vbnY7Q3OoW .content-wrapper .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.cid-vbnY7Q3OoW .content-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-vbnY7Q3OoW .mbr-section-title {
  color: #000000;
}
.cid-vbnY7Q3OoW .mbr-text,
.cid-vbnY7Q3OoW .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vbnY7Q3OoW .list,
.cid-vbnY7Q3OoW .nav-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vbnY7Q3OoW .mbr-copy {
  color: #999999;
  text-align: center;
}
.cid-vbnY7Q3OoW .mbr-section-title,
.cid-vbnY7Q3OoW .title-wrapper,
.cid-vbnY7Q3OoW .mbr-section-btn,
.cid-vbnY7Q3OoW .social-wrapper {
  text-align: center;
  color: #096abc;
}
.cid-vbnY7Q3OoW .list,
.cid-vbnY7Q3OoW .item-wrap,
.cid-vbnY7Q3OoW .nav-wrapper {
  color: #ffffff;
}
.cid-vbo2lgD9IY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vbo2lgD9IY nav.navbar {
  position: fixed;
}
.cid-vbo2lgD9IY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbo2lgD9IY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vbo2lgD9IY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vbo2lgD9IY .dropdown-item:hover,
.cid-vbo2lgD9IY .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-vbo2lgD9IY .dropdown-item:hover span {
  color: white;
}
.cid-vbo2lgD9IY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vbo2lgD9IY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vbo2lgD9IY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vbo2lgD9IY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbo2lgD9IY .nav-link {
  position: relative;
}
.cid-vbo2lgD9IY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vbo2lgD9IY .container {
    flex-wrap: nowrap;
  }
}
.cid-vbo2lgD9IY .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbo2lgD9IY .dropdown-menu,
.cid-vbo2lgD9IY .navbar.opened {
  background: #ffffff !important;
}
.cid-vbo2lgD9IY .nav-item:focus,
.cid-vbo2lgD9IY .nav-link:focus {
  outline: none;
}
.cid-vbo2lgD9IY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vbo2lgD9IY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbo2lgD9IY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vbo2lgD9IY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbo2lgD9IY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbo2lgD9IY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbo2lgD9IY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vbo2lgD9IY .navbar.opened {
  transition: all 0.3s;
}
.cid-vbo2lgD9IY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbo2lgD9IY .navbar .navbar-logo img {
  width: auto;
}
.cid-vbo2lgD9IY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vbo2lgD9IY .navbar.collapsed {
  justify-content: center;
}
.cid-vbo2lgD9IY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbo2lgD9IY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbo2lgD9IY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vbo2lgD9IY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbo2lgD9IY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbo2lgD9IY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vbo2lgD9IY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbo2lgD9IY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbo2lgD9IY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbo2lgD9IY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbo2lgD9IY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbo2lgD9IY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbo2lgD9IY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbo2lgD9IY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vbo2lgD9IY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vbo2lgD9IY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbo2lgD9IY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbo2lgD9IY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbo2lgD9IY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vbo2lgD9IY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbo2lgD9IY .navbar.navbar-short {
  min-height: 60px;
}
.cid-vbo2lgD9IY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vbo2lgD9IY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vbo2lgD9IY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbo2lgD9IY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbo2lgD9IY .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-vbo2lgD9IY .navbar-brand {
    padding-right: 40px;
  }
}
.cid-vbo2lgD9IY .dropdown-item.active,
.cid-vbo2lgD9IY .dropdown-item:active {
  background-color: transparent;
}
.cid-vbo2lgD9IY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbo2lgD9IY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbo2lgD9IY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbo2lgD9IY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vbo2lgD9IY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbo2lgD9IY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbo2lgD9IY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vbo2lgD9IY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbo2lgD9IY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vbo2lgD9IY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-vbo2lgD9IY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbo2lgD9IY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbo2lgD9IY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbo2lgD9IY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbo2lgD9IY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbo2lgD9IY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbo2lgD9IY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbo2lgD9IY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbo2lgD9IY .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-vbo2lgD9IY .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-vbo2lgD9IY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbo2lgD9IY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbo2lgD9IY .navbar {
    height: 70px;
  }
  .cid-vbo2lgD9IY .navbar.opened {
    height: auto;
  }
  .cid-vbo2lgD9IY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbo2lgD9IY .container,
.cid-vbo2lgD9IY .container-fluid {
  flex-wrap: wrap;
}
.cid-vbo2lgD9IY .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-vbo2lgD9IY .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-vbo2lgD9IY .contacts-menu .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbo2lgD9IY .contacts-menu {
    display: none;
  }
}
.cid-vbo2lgD9IY .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-vbo2lgD9IY .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #22a5e5;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-vbo2lgD9IY .icon-box:hover {
  transform: scale(1.1);
}
.cid-vbo2lgD9IY .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-vbo2lgD9IY .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-vbo2lgD9IY .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-vbo2lgD9IY .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-vbo2lgD9IY .navbar-collapse .mbr-section-btn .btn-black {
  color: #22a5e5 !important;
}
@media (max-width: 577px) {
  .cid-vbo2lgD9IY .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-vbo2lgD9IY .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-vbo2lgD9IY .navbar-collapse .nav-link:hover {
  color: #22a5e5 !important;
}
.cid-vbo2lj9ZEs {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-vbo2lj9ZEs .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vbo2lj9ZEs .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-vbo2lj9ZEs .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #22a5e5;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-vbo2lj9ZEs .label-text {
    text-align: center !important;
  }
}
.cid-vbo2lj9ZEs .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vbo2lj9ZEs .mbr-section-title {
    text-align: center !important;
  }
}
.cid-vbo2lj9ZEs .mbr-section-title,
.cid-vbo2lj9ZEs .mbr-section-btn {
  text-align: center;
}
.cid-veU3AhZR17 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-veU3AhZR17 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veU3AhZR17 .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-veU3AhZR17 .container {
    padding: 0 16px;
  }
}
.cid-veU3AhZR17 .row {
  justify-content: center;
}
.cid-veU3AhZR17 .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-veU3AhZR17 .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-veU3AhZR17 .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #096abc !important;
  color: #9fdbf8 !important;
  border-color: #096abc !important;
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #22a5e5 !important;
  color: #9fdbf8 !important;
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #096abc !important;
  color: #9fdbf8 !important;
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f9f7f5 !important;
  color: #9fdbf8 !important;
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #9fdbf8 !important;
  color: #096abc !important;
  border-color: #9fdbf8 !important;
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #999999 !important;
  color: #9fdbf8 !important;
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #9fdbf8 !important;
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-veU3AhZR17 .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-veU3AhZR17 .mbr-desc {
  color: #706cff;
}
.cid-veU3AhZR17 .mbr-section-title {
  color: #000000;
}
.cid-veU3AhZR17 .mbr-text {
  color: #000000;
}
.cid-veU3AhZR17 .mbr-section-btn {
  text-align: center;
}
.cid-vbo2lrG4Dl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #222222;
}
.cid-vbo2lrG4Dl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbo2lrG4Dl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbo2lrG4Dl .content-wrapper .social-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vbo2lrG4Dl .content-wrapper .social-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vbo2lrG4Dl .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-vbo2lrG4Dl .content-wrapper .social-wrapper .social-wrap .soc-item {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  margin-right: 10px;
}
.cid-vbo2lrG4Dl .content-wrapper .social-wrapper .social-wrap .soc-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .5;
  transition: all 0.3s ease-in-out;
}
.cid-vbo2lrG4Dl .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .mbr-iconfont {
  margin-right: 0;
}
.cid-vbo2lrG4Dl .content-wrapper .social-wrapper .social-wrap .soc-item:hover:before,
.cid-vbo2lrG4Dl .content-wrapper .social-wrapper .social-wrap .soc-item:hover:before {
  opacity: 1;
}
.cid-vbo2lrG4Dl .content-wrapper .social-wrapper .social-wrap .soc-item a {
  position: relative;
  z-index: 1;
  display: block;
}
.cid-vbo2lrG4Dl .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.cid-vbo2lrG4Dl .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-165deg, #22a5e5, #096abc 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vbo2lrG4Dl .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    background-image: linear-gradient(-165deg, #22a5e5, #096abc 40%);
  }
}
.cid-vbo2lrG4Dl .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-vbo2lrG4Dl .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vbo2lrG4Dl .content-wrapper .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-vbo2lrG4Dl .content-wrapper .nav-wrapper {
  margin-top: 78px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vbo2lrG4Dl .content-wrapper .nav-wrapper {
    margin-top: 32px;
    margin-bottom: 24px;
  }
}
.cid-vbo2lrG4Dl .content-wrapper .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vbo2lrG4Dl .content-wrapper .nav-wrapper .list .item-wrap {
  padding: 10px 30px;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .cid-vbo2lrG4Dl .content-wrapper .nav-wrapper .list .item-wrap {
    padding: 5px 16px;
  }
}
.cid-vbo2lrG4Dl .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-vbo2lrG4Dl .content-wrapper .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: transparent;
}
.cid-vbo2lrG4Dl .content-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-vbo2lrG4Dl .mbr-section-title {
  color: #000000;
}
.cid-vbo2lrG4Dl .mbr-text,
.cid-vbo2lrG4Dl .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vbo2lrG4Dl .list,
.cid-vbo2lrG4Dl .nav-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vbo2lrG4Dl .mbr-copy {
  color: #999999;
  text-align: center;
}
.cid-vbo2lrG4Dl .mbr-section-title,
.cid-vbo2lrG4Dl .title-wrapper,
.cid-vbo2lrG4Dl .mbr-section-btn,
.cid-vbo2lrG4Dl .social-wrapper {
  text-align: center;
  color: #096abc;
}
.cid-vbo2lrG4Dl .list,
.cid-vbo2lrG4Dl .item-wrap,
.cid-vbo2lrG4Dl .nav-wrapper {
  color: #ffffff;
}
